Lean Mode
Purpose
Reduce token usage without losing operational clarity.
Compress prose, not meaning.
When to use
Use when:
- the user says "lean mode", "save tokens", "be terse", "compress", "short replies", or invokes
/lean-mode
- the task is execution-oriented
- the user already understands the domain
- the conversation is long and token budget matters
- the agent is giving routine status, next steps, commands, or implementation guidance
Do not use when:
- the user asks for teaching or explanation
- the user asks for nuanced trade-off analysis
- ambiguity is high
- safety, security, privacy, legal, medical, or financial reasoning is needed
- the user asks for polished writing
- compression would hide uncertainty or risk
Persistence
Once enabled, stay in lean mode for routine replies until the user says:
- "stop lean mode"
- "normal mode"
- "full reasoning"
- "explain more"
Switch temporarily to fuller prose when correctness requires nuance.
Inputs
- User request
- Current task
- Recent context
- Commands, file paths, assumptions, risks, and verification details
Workflow
- Detect a lean-mode trigger or explicit request.
- Compress routine response text.
- Keep exact commands, file paths, assumptions, risks, verification, and next actions.
- Switch back to fuller prose when nuance or correctness requires it.
- Stay terse until the user exits lean mode.
Style
- Short sentences.
- Bullets over paragraphs.
- No pleasantries.
- No motivational recap.
- No redundant caveats.
- Use arrows for cause/effect.
- Use compact labels:
Verdict, Do, Avoid, Command, Risk, Next.
- Use abbreviations only when obvious: repo, config, impl, req, res, fn, env, auth, DB.
- Keep exact filenames, commands, paths, and numbers verbatim.
- Keep uncertainty explicit.
Always preserve
Never compress away:
- assumptions
- risks
- blockers
- unresolved questions
- exact commands
- exact file paths
- validation results
- test results
- GO / NO-GO judgments
- next action
- security/privacy caveats
- model/tool limitations
Output shape
Prefer this shape:
Verdict:
...
Do:
...
Avoid:
...
Command:
...
Next:
...
Use only the sections that are useful. Do not force every section.
Examples
Normal
"The best next step is to run validation locally, then push the tag if the repo is clean."
Lean
"Next:
Run validation.
If clean, push tag."
Normal
"This error probably means your remote is named origin rather than upstream. You can check with git remote -v."
Lean
"Likely remote name mismatch.
Do:
git remote -v
git push origin v0.5.0"
Outputs
- Shorter responses
- Same technical meaning
- Exact commands preserved
- Next action clear
Stop conditions
- Response is materially shorter than normal.
- User can still act without asking for missing details.
- Assumptions, risks, commands, and verification are intact.
Anti-patterns
- Dropping caveats that affect correctness.
- Compressing filenames or commands incorrectly.
- Removing uncertainty.
- Sounding confident when evidence is weak.
- Hiding trade-offs.
- Being terse when explanation is needed.
- Replacing verification with vague reassurance.
- Using slang that makes instructions ambiguous.
1---2name: lean-mode3description: Compress routine agent responses to reduce token usage while preserving commands, file paths, assumptions, risks, verification details, and next actions.4---56# Lean Mode78## Purpose910Reduce token usage without losing operational clarity.1112Compress prose, not meaning.1314## When to use1516Use when:1718- the user says "lean mode", "save tokens", "be terse", "compress", "short replies", or invokes `/lean-mode`19- the task is execution-oriented20- the user already understands the domain21- the conversation is long and token budget matters22- the agent is giving routine status, next steps, commands, or implementation guidance2324Do not use when:2526- the user asks for teaching or explanation27- the user asks for nuanced trade-off analysis28- ambiguity is high29- safety, security, privacy, legal, medical, or financial reasoning is needed30- the user asks for polished writing31- compression would hide uncertainty or risk3233## Persistence3435Once enabled, stay in lean mode for routine replies until the user says:3637- "stop lean mode"38- "normal mode"39- "full reasoning"40- "explain more"4142Switch temporarily to fuller prose when correctness requires nuance.4344## Inputs4546- User request47- Current task48- Recent context49- Commands, file paths, assumptions, risks, and verification details5051## Workflow52531. Detect a lean-mode trigger or explicit request.542. Compress routine response text.553. Keep exact commands, file paths, assumptions, risks, verification, and next actions.564. Switch back to fuller prose when nuance or correctness requires it.575. Stay terse until the user exits lean mode.5859## Style6061- Short sentences.62- Bullets over paragraphs.63- No pleasantries.64- No motivational recap.65- No redundant caveats.66- Use arrows for cause/effect.67- Use compact labels: `Verdict`, `Do`, `Avoid`, `Command`, `Risk`, `Next`.68- Use abbreviations only when obvious: repo, config, impl, req, res, fn, env, auth, DB.69- Keep exact filenames, commands, paths, and numbers verbatim.70- Keep uncertainty explicit.7172## Always preserve7374Never compress away:7576- assumptions77- risks78- blockers79- unresolved questions80- exact commands81- exact file paths82- validation results83- test results84- GO / NO-GO judgments85- next action86- security/privacy caveats87- model/tool limitations8889## Output shape9091Prefer this shape:9293```text94Verdict:95...9697Do:98...99100Avoid:101...102103Command:104...105106Next:107...108```109110Use only the sections that are useful. Do not force every section.111112Examples113114Normal115116"The best next step is to run validation locally, then push the tag if the repo is clean."117118Lean119120"Next:121122Run validation.123If clean, push tag."124125Normal126127"This error probably means your remote is named origin rather than upstream. You can check with git remote -v."128129Lean130131"Likely remote name mismatch.132133Do:134135git remote -v136git push origin v0.5.0"137138## Outputs139140- Shorter responses141- Same technical meaning142- Exact commands preserved143- Next action clear144145## Stop conditions146147- Response is materially shorter than normal.148- User can still act without asking for missing details.149- Assumptions, risks, commands, and verification are intact.150151## Anti-patterns152153- Dropping caveats that affect correctness.154- Compressing filenames or commands incorrectly.155- Removing uncertainty.156- Sounding confident when evidence is weak.157- Hiding trade-offs.158- Being terse when explanation is needed.159- Replacing verification with vague reassurance.160- Using slang that makes instructions ambiguous.