Usage Limit Reducer
Description
A Claude Code skill that stops you from burning through your usage limit.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
usage-limit-reducer
A Claude Code skill that stops you from burning through your usage limit.
Claude re-reads the entire conversation on every turn. One developer measured it: **98.5% of his tokens went to re-reading history, only 1.5% to generating responses.** This skill diagnoses where your tokens are actually going and applies Dubi's 11 rules for cutting usage — using real data from the JSONL logs Claude Code already writes to your disk.
What it does
When you trigger the skill, it:
- Measures — runs
scripts/usage-report.pyagainst~/.claude/projects/*/*.jsonland shows token/cost breakdowns by model, project, and day (with cache-hit % and heuristic callouts). - Diagnoses the current session — conversation length,
CLAUDE.mdpresence, model in use. - Applies the 2–4 rules most relevant to what it finds. No dumping all 11 on you.
- Suggests concrete next actions (
/compact,/clear,/model claude-haiku-4-5, create CLAUDE.md, etc.) and acts only on confirmation.
Install
git clone ~/.claude/skills/usage-limit-reducer
Or, if you already cloned it elsewhere:
cp -r . ~/.claude/skills/usage-limit-reducer/
Restart Claude Code. It will show up in the skills list and auto-trigger on phrases like:
- "hit my limit" / "usage limit" / "running out of tokens"
- "save tokens" / "reduce usage" / "am I wasting tokens"
- "this chat is getting long"
- "which model should I use"
You can also invoke it directly: `/usage-limit-reducer`.
Standalone: the token report
The script is useful on its own, outside the skill:
python3 ~/.claude/skills/usage-limit-reducer/scripts/usage-report.py --days 7
python3 ~/.claude/skills/usage-limit-reducer/scripts/usage-report.py --days 30 --project myrepo
python3 ~/.claude/skills/usage-limit-reducer/scripts/usage-report.py --json # machine-readable
Example output:
Claude Code usage — last 7 day(s)
------------------------------------------------
Related Skills
Awesome Go
A curated list of awesome Go frameworks, libraries and software
Development next.js
| The React Framework | 138360 | 1503 | 1 |
Development sharing-skills
skill for guidance.
Development root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development Template Skill
Minimal skeleton for a new skill project structure.
Development Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THI
Development