I created a token-diet skill that cuts the usage by ~31% on average (54% best case)
I tried caveman skill the other day and I didn't see promised 65% reduction. Turns out the number was purely on the output tokens in chat. On average (of my sessions) it saved 7-8% in total. Since limits have recently become a big problem for most of us, I've decided to create a skill that cuts the tokens not just in chat, but all the unnecessary crap. Here is what it does:
- Docs / memory / hand-offs / plans / comments - all with minimum words that still say everything
- Grep before you read, read only the lines you need, never whole files, batch reads, fewer turns, never re-read a just-edited file
- Batch independent tool calls and stop the moment you have enough to act
- Less tests. Only key + critical/edge paths. ≤10 per session, never skip money/auth/data-loss
- Extremely concise replies
- Build only what's asked (YAGNI). Concise but idiomatic
Repo: https://github.com/Kulaxyz/token-diet
Results:
| Session type | Output Tokens | Bill |
|---|---|---|
| Output-heavy (advice, planning, explanation) | −81% | −54% |
Code change + tests (nestjs/nest, 1673 files) |
−49% | −22% |
| Read-heavy comprehension | −30% | −17% |
| Average | −53% | −31% |