Every time I hand work to an AI agent — a coding agent, a chat window, whatever — the output quality tracks one thing almost perfectly: how much context I bothered to write down before I started typing the actual request.
So I stopped improvising. Now there are four lines at the top of whatever file or thread I'm working in, and I write them before the first prompt:
WHO: who this is for, and what they already know
DONE: what "finished" looks like, in one sentence
NEVER: the two or three things that must not happen
NEXT: the single next action after this task ships
That's it. Four lines, maybe thirty seconds.
WHO kills the biggest failure mode — the agent writing for a generic reader instead of the specific one. "Senior backend dev, knows our auth stack, has never seen this service" produces different code and different comments than nothing at all.
DONE is the one people skip, and it's the one that saves the most time. If I can't write the finish line in a sentence, the task is actually two tasks and the agent is about to guess which one I meant.
NEVER is where the scar tissue goes. Mine usually reads something like "don't touch the migration files, don't add a dependency, don't refactor anything I didn't ask about." Every line in there exists because it happened once.
NEXT is not for the agent at all. It's for me, forty minutes later, when I come back with the context evaporated. Writing the next action down while I still have the whole problem loaded is the cheapest thing I do all day.
The interesting part is what happened to the prompts themselves. They got shorter. Once the constraints live above the task, the request is just the request — no more paragraph of throat-clearing about what I really meant. And when the output is wrong, the diff between what I got and what those four lines say is usually the whole diagnosis.
I don't think the specific four are magic. WHO/DONE/NEVER/NEXT is just what survived a few months of trimming. The general shape — a tiny fixed header you write before delegating, in the same place every time — seems to be the thing that matters.
Which is why I'm curious about yours.
- Do you write anything down before you delegate to an agent, or do you go straight into the prompt?
- If you have a header like this, what's in it that isn't in mine?
- And for the people who tried structured prompting and dropped it — what made it not worth the thirty seconds?
Genuinely asking. I've got a sample size of one here.
Top comments (0)