Every media library full of blank alt text was filled one hurried upload at a time. Nobody sets out to skip it. The field is just one step away from the thing you actually came to do, so it waits, and then there are four hundred of them and it becomes a project.
The upload ability takes the alt text with the file, in the same call. That turns the description from a follow-up task into part of the upload, which is the only version of this that survives contact with a busy week.
Upload [the image I just gave you] to the media library and set its alt textin the same call. The upload takes the file as base64 and it accepts an altparameter, so please do not upload it bare and describe it afterwards.
The image shows [what it shows]. Draft short, descriptive alt text from that.Before you upload, show me the filename, the format, and the alt text you planto store, and wait for my go-ahead. It has to be a jpg, png, gif, or webp.
Once it is in, [set it as the featured image on post ID 142], then read theattachment back so I can confirm the alt text saved.Why this is safe to run
Most of the safety here sits in the format rule. The upload takes base64 data rather than a link, and the plugin decides what the file is by reading its bytes, not by trusting the filename or the type the caller claims. Only jpg, png, gif, and webp get through, so an SVG or anything else stops at the door with nothing written. The name you pass is reduced to a sanitized basename and given the extension that matches what the bytes actually are.
Everything else is deliberately small. The upload adds one new image and changes nothing already in your library. Setting the featured image points one post at that attachment and leaves the body and the publish status alone. Both writes stay off until you enable them, both are checked against the capability of the user you bound the agent to, and both land in the Activity Log. The read at the end costs nothing and closes the loop, since it shows you the alt text as stored rather than as the agent remembers writing it.
Already connected? Skip the paste. Ask your agent to upload the image with its alt text set in the same call, and it runs the same describe, approve, upload flow on your own site.