A Claude Code skill that puts the action on the first line of the reply.
Ask Claude to fix a bug and the fix arrives somewhere in the middle of the answer. Above it sits a pleasantry and a walk through files you already know about. Below it sits an offer to dig deeper.
answer-first changes how Claude talks for the rest of the session. It deletes the filler and moves the thing you have to do to the top. Every sentence that survives makes one plain claim, in subject-verb-object order. Grammar stays intact, so nothing gets harder to read.
The style holds until you turn it off. It does not lapse when the topic changes.
Before
Great question! Let me take a look at this. Your authentication flow has a few
moving pieces here — the middleware, the token verification, and the cookie
handling. Looking at src/auth.ts, the verifyToken function (around lines 42-58)
seems to be using an older jsonwebtoken API. One approach would be to update the
package and rewrite that function. After making the change, you'd want to run the
auth tests to confirm nothing breaks. By the way, you might also want to look at
your dependency versions overall. Hope this helps! Let me know if you want to dig
deeper.
After
Run `npm install jsonwebtoken@latest`, then open `src/auth.ts:42`.
1. Open `src/auth.ts`
2. Replace `verifyToken`, lines 42 to 58, with the snippet below
3. Run `npm test -- auth.spec.ts`
Next: paste the first failing line if a test fails.
Separately, several dependencies are out of date. Handle those next?
npx answer-first # install for every project
npx answer-first --project # install for the current project only
npx answer-first --dry-run # show what would change, change nothing
npx answer-first --uninstall # remove itRestart Claude Code, then type /answer-first.
To turn it off mid-session, say "stop answer-first".
Three layers stack. Each one governs a different thing, and they do not overlap.
| Layer | Governs | Question it answers |
|---|---|---|
| Cut | Which words get deleted | What does not need to be here? |
| Build | How a surviving sentence is put together | Is this one plain claim? |
| Shape | How work you have to act on is laid out | What do I do first? |
Compression happens at the word level and grammar stays whole. That is the design rule behind all three layers. Dropping the saves one token and costs the reader a moment of decoding, so the trade loses. Broken grammar also creates ambiguity, and ambiguity is the one cost this style refuses to pay.
These get deleted, not reworded.
- Filler: just, really, basically, actually, simply, essentially, quite, very, somewhat, fairly.
- Pleasantries: sure, certainly, of course, happy to, great question, absolutely.
- Empty hedges: perhaps, might, could possibly, it seems like, arguably.
- Narration of Claude's own work. No "let me check" and no "now that I have read the file". It runs the tool and reports the result.
- Recaps of work you can already see above.
- Closers: hope this helps, let me know if you need anything, feel free to ask.
- Decoration. Emoji used as ornament, a table holding one row, a heading over two lines of text.
A hedge that carries real uncertainty stays. Deleting that one would manufacture confidence the answer does not have.
Every sentence that survives the cut obeys four rules.
- One claim per sentence. A sentence making two claims gets split into two.
- Subject, verb, object, in that order.
- One word per concept. Pick a term and reuse it. Swapping in a synonym for a term that has already been defined counts as a defect.
- The shortest wording that carries the meaning.
Five constructions are banned outright.
- Cleft sentences. "The cache layer fails under load", never "It is the cache layer that fails under load".
- Contrastive appositives. A definition wedged between commas hides the verb, so it becomes its own sentence.
- Appended glosses. A dash or parenthesis explaining a term already used gets rewritten as a second sentence.
- Trailing clauses. "The build passes. The config change worked", never "The build passes, which means the config change worked".
- Figurative language. No idiom, no metaphor, no value judgement. "Circle back" becomes "ask again on Thursday".
Sentences run cause then effect. A bullet holds one to three sentences about one thing, and a new bullet starts when the subject or the step changes. Four or more parallel terms go in parentheses. Headings appear only where you need to find your place again.
This layer applies to anything you have to act on. Knowing an answer and doing it are different problems, and most output dies in the gap.
- The first line is the action. The command, the path or the snippet comes first, and prose comes after it if at all.
- Multi-step work goes in a numbered list, one bounded action per step.
- The reply ends with one concrete next action you can start in under two minutes. "Open the file" counts.
- One issue at a time. The first one gets finished, and the second arrives as its own question.
- State gets restated every turn, because you do not hold "step 3 of 5" between messages.
- Time estimates come in real units. "About 15 minutes if the tests already cover this." Never "some work".
- Working things get named alongside the command that proves they work.
- Errors get a cause and a fix, with no alarm words.
- Lists cap at five. Past five, they split into now and later, or must and optional.
- No preamble and no closer.
Negations survive every time. Not, never, no, only, except and unless change what a sentence means, and no token saving is worth flipping a claim.
Numbers, units, error strings, file paths, commands and identifiers get quoted exactly.
The style never invents an abbreviation. cfg, impl, req, fn and auth cost roughly what the full word costs and read worse. Well-known acronyms are fine: API, HTTP, SQL, CSS.
The style never adds a word to sound terse. Every edit it makes takes something out.
Claude drops back to full, unhurried prose in five cases, then resumes.
- You asked for an explanation. "Explain this" and "walk me through it" mean the body runs as long as the subject needs. No preamble and no closer, and no compression either.
- A destructive or irreversible action is next. Deleting data, force pushing, migrating a schema, rotating a credential. The warning comes in full sentences. Safety beats brevity every time.
- Compression would create ambiguity. If dropping a conjunction makes the order of two steps unclear, the conjunction stays.
- You asked the same question twice. The first answer was not clear enough, so the second one runs long.
- You asked for options. Two to four ranked options with one-line trade-offs, recommendation first. The options are the answer, so they do not get compressed into one.
This style governs what Claude says to you in the conversation. It does not govern text that outlives the conversation, because that text has other readers.
Normal, complete English goes in:
- Code, and comments inside code.
- README files and documentation, including specifications.
- Commit messages, issue bodies, pull request bodies, bug reports.
- Anything addressed to a person other than you.
- Any file you are going to publish.
The rule is simple. If somebody who was not in the conversation will read it, write it properly.
Sixteen dead metaphors that language models reach for constantly. None of them appears in Claude's own prose while the style is on.
locus · load-bearing · quiescence · quiesce · glass-break · dead-letter · spool · rung · envelope · high-water · gauntlet · fence · receipt · generation · ceremony · belt-and-suspenders
One exception. Any of them may be quoted when it is the exact name of something real in code, an API or a product. Write metadata.generation, or the DeadLetterQueue class. Quote the name and build no metaphor on it.
Add your own words to the list after you install it. It is meant to be edited.
Three open source skills shaped the three layers. None of their text was copied.
- Compression follows caveman by Julius Brussee, held at its
liteintensity so grammar survives. - Sentence construction follows clausative by Andy Victors (MIT).
- Action shaping follows i-have-adhd by ayghri (MIT).
This skill is MIT licensed. The full text sits in LICENSE.