agentsclimarketplace

Claude

Skill TheModdersDen/mss-usage-limit-reducer/.agents/claude

Use when the user is hitting Claude usage limits, burning through tokens fast, running a long conversation, or asks how to use Claude Code more efficiently. Triggers on phrases like "hit my limit", "running out of tokens", "usage limit", "save tokens", "reduce usage", "am I wasting tokens", "this chat is getting long", "which model should I use". Diagnoses the current session, runs a real token-usage report from local JSONL logs, and applies Dubi's 11 rules for reducing Claude usage.From its SKILL.md

Install
npx -y skills add TheModdersDen/mss-usage-limit-reducer --skill claude

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

5.1 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it

Usage Limit Reducer

Apply Dubi's 11 rules for cutting Claude token usage. Claude re-reads the entire conversation every turn, so 98.5% of tokens often go to re-reading history instead of generating responses. This skill diagnoses where the user's tokens are going and applies the rules that actually move the needle.

How to run this skill

Do the steps in order. Skip any step that clearly doesn't apply, but don't skip all of them — the value is in matching rules to what the user is actually doing.

Step 1 — Run the real token-usage report

Rule #4: "you can't fix what you can't measure." Claude Code already writes every token, model, and timestamp to ~/.claude/projects/<project>/<session>.jsonl. Run the bundled script to show the breakdown (use the absolute path to scripts/usage-report.py inside this skill's directory):

python3 <SKILL_DIR>/scripts/usage-report.py --days 7

Flags: --days N (default 7), --project <substring> to scope by cwd, --json for machine-readable output. Share the headline numbers with the user — cache-hit % and model mix are the two that matter most. A low cache-hit % (under ~60%) means too many fresh chats or cache-busting edits; high Opus share for routine work means Rule #8 applies.

Step 2 — Diagnose the current session

Before advising, check three things:

  1. Conversation length. If this session already has many turns, rule #2 applies directly. Suggest /compact (summarize in place) or /clear then paste a one-paragraph summary as the first message of the new chat.
  2. CLAUDE.md presence. Check the project root for CLAUDE.md and ~/.claude/CLAUDE.md. If missing, rule #6 applies — offer to create one with the user's role, style, and project conventions so every new session doesn't burn 3–5 messages on setup.
  3. Model in use. If the user is on Opus for trivial tasks (grammar, formatting, short answers, quick renames), rule #8 applies — recommend /model claude-haiku-4-5 for those and keep Opus for deep work.

Step 3 — Apply the rules that match

Pick the 2–4 rules most relevant to what the user is doing right now. Don't dump all 11 on them. For each rule you pick, say (a) what to do, (b) why it works, (c) the concrete next action.

#RuleClaude Code action
1Don't follow up to correct — restart with a fixed promptWhen Claude misunderstands, /clear and re-prompt instead of piling on corrections
2Fresh chat every 15–20 turns/compact to summarize in place, or /clear + paste summary
3Batch questions into one messageCombine related asks into one prompt; Claude often answers better with full picture
4Track actual token usageRun the script in Step 1
5Reuse recurring contextPut it in CLAUDE.md, a skill, or .context/ — not re-pasted each session
6Set up memory / user preferencesCreate or update CLAUDE.md; use the memory system under ~/.claude/projects/*/memory/
7Turn off features you don't useAudit ~/.claude/settings.json for unused MCP servers, hooks, permissions
8Use Haiku for simple tasks/model claude-haiku-4-5 for grammar, drafts, formatting, quick lookups
9Spread work across the day5-hour rolling window — split into 2–3 sessions instead of one marathon
10Work off-peakPeak is 5–11am PT / 8am–2pm ET weekdays; evenings and weekends stretch your plan
11Enable Overage as a safety netSettings → Usage on Pro/Max plans — pay-as-you-go kicks in at the limit

Step 4 — Offer concrete next actions

End with a short, ordered list of what to do now, based on the diagnosis. Examples:

  • "Run /compact — this conversation is 40+ turns."
  • "I can create a CLAUDE.md with your preferences — want me to?"
  • "Switch to Haiku for this rename: /model claude-haiku-4-5."

Don't recite every rule. Don't lecture. Match the advice to what the session actually shows.

Rules not implementable in Claude Code

  • Rule #1 ("Edit your prompt") is a claude.ai web UI feature — in Claude Code the equivalent is /clear + restart.
  • Rule #5 ("Upload to Projects") is also web-only — use CLAUDE.md, skills, and .context/ instead.
  • Rule #11 (Overage) is plan-level — mention it, don't implement it.

What this skill does NOT do

  • It does not silently change the user's model or settings. Recommend, then act only on confirmation.
  • It does not summarize-and-clear without asking — the user may have unsaved context in the conversation.
  • It does not send data anywhere. The usage report is strictly local.

What ships with it: 1 file

9.2 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 326,401. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.