@cjzafir: In the last 17 days, I burned $6k worth of tokens on my Claude 20x and Codex 20x subs. But I got so much work done by j…
Summary
The author open-sources a 'lean-thinking' skill for AI coding agents that reduces token usage by up to 35% while maintaining quality, based on personal testing with Claude and Codex models.
View Cached Full Text
Cached at: 09/13/26, 01:03 AM
In the last 17 days, I burned $6k worth of tokens on my Claude 20x and Codex 20x subs.
But I got so much work done by just fixing ONE issue.
I use Fable 5.1 (Extra High) for planning and GPT 6 Astra (High) for execution.
Both models think a lot and burn so many tokens.
I fixed this with the lean-thinking skill.
I forced Fable and Astra to just do this:
- Understand the task first.
- Make a proper execution plan.
- Reuse what already works.
- Build only what is needed.
- Verify your work.
- Fix any problems.
- Stop when it is done.
- Explain what’s built.
It saved me hours and almost 35% of tokens, with no quality degradation (I tested the same 11 builds with and without the skill, and the results were actually better).
I uploaded the skill to GitHub and am now open-sourcing it. Enjoy.
Here: https://github.com/Cjbuilds/lean-thinking…
Cjbuilds/lean-thinking
Source: https://github.com/Cjbuilds/lean-thinking

lean-thinking
Lean Thinking helps AI coding agents stay focused and finish the job. It tells them to plan enough, build what is needed, check the result, and stop.
Use it when an agent spends too long planning, keeps adding extra work, or rebuilds things that already work. Simple tasks stay simple. Risky tasks still get the checks they need.
How it works
- Understand the task first.
- Make a simple plan.
- Reuse what already works.
- Build only what is needed.
- Check that it works.
- Fix any problems found in the task.
- Stop when it is done and checked.
- Explain what changed and any remaining limits.
It follows your requirements and asks for permission when needed. It does not skip necessary work just to make the answer shorter.
Install
Clone this repository, then copy the skill folder into your project:
git clone https://github.com/Cjbuilds/lean-thinking.git
Replace /path/to/lean-thinking below with the clone location. Review an existing installed copy before replacing it.
For Codex:
mkdir -p .agents/skills
cp -R /path/to/lean-thinking/skills/lean-thinking .agents/skills/
For Claude Code:
mkdir -p .claude/skills
cp -R /path/to/lean-thinking/skills/lean-thinking .claude/skills/
Use
Invoke it by name in a request:
Use $lean-thinking to add CSV export to this report page.
The agent reads the relevant code, makes a plan, does the work, and checks the result.
Check the package
The checker uses only the Python standard library:
python3 scripts/check.py
It validates the skill metadata and package structure, required installation instructions, and local README links.
Files
lean-thinking/
├── assets/
│ └── banner.png
├── eval/
│ └── RESULTS.md
├── scripts/
│ └── check.py
├── skills/
│ └── lean-thinking/
│ └── SKILL.md
├── LICENSE
└── README.md
Limits
This skill cannot recover missing evidence, grant permissions, or make risky changes safe. Its result still depends on the agent’s tools, available context, and judgment. It does not promise to control private reasoning or reduce token use.
License
MIT. Use it, adapt it, and share it.
Similar Articles
@DataChaz: STOP BURNING YOUR TOKENS! If you use Claude Code, you are probably wasting 80% of your context window. I found 10 ace t…
A tweet thread by @DataChaz lists 10 open-source tools to drastically reduce token usage in Claude Code and similar AI coding assistants, potentially cutting API bills by 75-98% through various optimizations.
Cut my Claude Code token burn by 30-40% — the stack that's actually real (2026)
Sharing a practical stack to reduce Claude Code token usage by 30-40%, focusing on real-world efficiency gains for AI coding.
@_avichawla: A smarter Claude model burns more tokens, not fewer! And it's not a minor 3-5% difference. But 54% higher token usage. …
The article analyzes why smarter AI agents like Claude consume more tokens when interacting with human-centric backends like Supabase due to inefficient context discovery. It introduces InsForge, an open-source backend tool designed for agents that provides structured context to significantly reduce token usage and manual interventions.
@sairahul1: How to use Claude Code all day without hitting limits. This setup saves at least 60% of your Claude token consumption —…
This guide provides a step-by-step method to use Claude Code with the OpenAI Codex plugin and a 3-model workflow involving GPT-5.6 variants to reduce token consumption by at least 60% and avoid usage limits.
@_avichawla: Claude Code used 3x fewer tokens with one change: - Before: 10.4M tokens · 10 errors · $9.21 - After: 3.7M tokens · 0 e…
By swapping to Insforge Skills + CLI as the backend context layer, a user cut Claude Code token usage by 64 %, eliminated all errors and reduced cost from $9.21 to $2.81.