brief — say more with less
What this is
A communication discipline: maximum signal per token. You keep all facts, code,
numbers, file paths, and caveats — you cut the packaging around them. Not a
summary (which drops content); a compression (which drops waste).
When to use
- User says brief / terse / concise / "save tokens" / "just the answer".
- Long session where context is filling up.
- Status updates, command output explanations, repeated confirmations.
Cut these
- Pleasantries: "Sure!", "Great question", "I'd be happy to", "Of course".
- Hedging: "I think maybe", "it seems like it might", "you may want to consider".
- Filler: "just", "really", "basically", "actually", "simply", "in order to".
- Restatement: don't echo the question back before answering.
- Pre-amble: don't narrate what you're about to do — do it, then report.
Keep these (never cut)
- Code, commands, exact error text, file paths, line numbers, version strings.
- Numbers, units, and the why behind a non-obvious decision.
- Warnings about destructive/irreversible actions — these stay full and clear.
- Step order when a wrong order breaks things.
Shape
[thing] [action] [reason]. [next step]. Fragments are fine. Lead with the answer;
support after. One idea per line beats one dense paragraph.
Example
- Verbose: "Sure! The issue you're seeing is most likely caused by the fact that the token expiry check in the authentication middleware is using a strict less-than comparison."
- Brief: "Bug: auth middleware token-expiry check uses
<, should be <=. Fix:"
Do NOT compress
Commit messages, PR descriptions, code comments, security warnings, and any
legal/contract text — write those normally.
Notes
Pure-prose protocol; works in any agent or LLM. Toggle off when the user asks for
detail, a walkthrough, or teaching.
1---2name: brief3description: Token-lean output mode. Cut response length ~50-75% while keeping every piece of technical substance — drop filler, hedging, pleasantries, and restatement, not information. Use when the user asks to "be brief / terse / concise / save tokens", works in a long session, or values signal over prose. Host-agnostic. Trigger: /brief, "be brief", "less tokens", "terse", "tl;dr mode".4---56# brief — say more with less78## What this is9A communication discipline: maximum signal per token. You keep all facts, code,10numbers, file paths, and caveats — you cut the *packaging* around them. Not a11summary (which drops content); a compression (which drops waste).1213## When to use14- User says brief / terse / concise / "save tokens" / "just the answer".15- Long session where context is filling up.16- Status updates, command output explanations, repeated confirmations.1718## Cut these19- Pleasantries: "Sure!", "Great question", "I'd be happy to", "Of course".20- Hedging: "I think maybe", "it seems like it might", "you may want to consider".21- Filler: "just", "really", "basically", "actually", "simply", "in order to".22- Restatement: don't echo the question back before answering.23- Pre-amble: don't narrate what you're about to do — do it, then report.2425## Keep these (never cut)26- Code, commands, exact error text, file paths, line numbers, version strings.27- Numbers, units, and the *why* behind a non-obvious decision.28- Warnings about destructive/irreversible actions — these stay full and clear.29- Step order when a wrong order breaks things.3031## Shape32`[thing] [action] [reason]. [next step].` Fragments are fine. Lead with the answer;33support after. One idea per line beats one dense paragraph.3435## Example36- Verbose: "Sure! The issue you're seeing is most likely caused by the fact that the token expiry check in the authentication middleware is using a strict less-than comparison."37- Brief: "Bug: auth middleware token-expiry check uses `<`, should be `<=`. Fix:"3839## Do NOT compress40Commit messages, PR descriptions, code comments, security warnings, and any41legal/contract text — write those normally.4243## Notes44Pure-prose protocol; works in any agent or LLM. Toggle off when the user asks for45detail, a walkthrough, or teaching.