Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/smrafiz/claude-superchargerWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/smrafiz/claude-supercharger/status)<a href="https://agentmods.dev/commands/smrafiz/claude-supercharger/status"><img src="https://agentmods.dev/badge/commands/smrafiz/claude-supercharger/status/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/smrafiz/claude-supercharger/status"><img src="https://agentmods.dev/badge/commands/smrafiz/claude-supercharger/status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01884 |
| Opus 5 | $0.00000 | $0.00942 |
| Sonnet 5 | $0.00000 | $0.00377 |
| Haiku 4.5 | $0.00000 | $0.00188 |
Grade A, and why
status scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Render the current Claude Supercharger session state. Arguments: $ARGUMENTS
Read these files (silently — do not show their raw content) and produce a dashboard:
STEP 0 — determine the CURRENT session id (do this first; everything per-session depends on it). Do NOT guess by "newest file" — under concurrent sessions that grabs another project's session (the exact bug this step fixes). Derive it from the current working directory's own transcript directory:
ENC="-$(pwd | sed 's|/|-|g; s|^-||')" # cwd → CC's project-dir encoding
SID=$(ls -t "$HOME/.claude/projects/$ENC"/*.jsonl 2>/dev/null | head -1 | xargs -r basename | sed 's/\.jsonl$//')
$SID is THIS session. Use it for every per-session read below (.main-tokens-$SID, .tool-history-$SID, .memory-restored-$SID, .repetition-flag-$SID). If $SID is empty (no transcript yet), fall back to the globally-newest .main-tokens-* and note it.
Session cost — compute from the TRANSCRIPT, do NOT trust .main-tokens-$SID.cost_usd. That accumulator only counts from when v2.7.63 deployed, so a session spanning the upgrade is badly under-reported (observed: $22.83 vs a real $2343.54). A one-shot command can afford to re-sum the transcript for ground truth:
python3 - "$HOME/.claude/projects/$ENC/$SID.jsonl" <<'PY'
import json,sys
P={'opus':(5.0,6.25,0.5,25.0),'sonnet':(3.0,3.75,0.3,15.0),'haiku':(0.8,1.0,0.08,4.0),'fable':(10.0,12.5,1.0,50.0)}
t=0.0
try:
for ln in open(sys.argv[1]):
try: d=json.loads(ln)
except: continue
if d.get('type')!='assistant': continue
u=(d.get('message') or {}).get('usage') or {}
if not u: continue
m=((d.get('message') or {}).get('model') or '').lower()
k='opus' if 'opus' in m else 'fable' if ('fable' in m or 'mythos' in m) else 'haiku' if 'haiku' in m else 'sonnet'
ip,cw,cr,op=P[k]
t+=(u.get('input_tokens',0)*ip+u.get('cache_creation_input_tokens',0)*cw+u.get('cache_read_input_tokens',0)*cr+u.get('output_tokens',0)*op)/1e6
except Exception: pass
print(f'{t:.2f}')
PY
Use that value for Cost (session). (The budget cap still uses the accumulator, which is accurate for sessions that start after v2.7.63.)
Files to read (skip any that don't exist):
${CLAUDE_PLUGIN_DATA}/scope/.economy-tier(Tier: minimal|lean|standard; absent → standard)${CLAUDE_PLUGIN_DATA}/scope/.mcp-profile(MCP profile: light|dev|research|full; absent → "—")${CLAUDE_PLUGIN_DATA}/scope/.profile(Hook profile: standard|fast|minimal; absent → standard)${CLAUDE_PLUGIN_DATA}/scope/.disabled-hooks${CLAUDE_PLUGIN_DATA}/scope/.tool-history-$SID(last 10 entries)${CLAUDE_PLUGIN_DATA}/scope/.repetition-flag-$SID${CLAUDE_PLUGIN_DATA}/scope/.memory-restored-$SID(per-session; mtime → "compaction X min ago"). The bare.memory-restored(no suffix) is a DEPRECATED global flag not written since v2.7.47 — do NOT use it; if.memory-restored-$SIDis absent, this session hasn't compacted → "this session"..claude/supercharger/lessons.jsonl(count + 3 most recentlessonfields)- Claude file-memory dir
~/.claude/projects/$ENC/memory/(reuse$ENCfrom STEP 0): count the entry files (*.mdexcludingMEMORY.md— MEMORY.md is the index, not an entry) and take the NEWEST mtime across the dir as "last updated". This is the curated, recalled memory the user maintains — NOT the git-gated.claude/supercharger-memory.mdsession file (which is stale-by-design and no longer surfaced here as of v2.7.75). If the dir is absent, render—. .supercharger.json(role, economy, profile, budget, hints)${CLAUDE_PLUGIN_DATA}/audit/$(date -u +%Y-%m-%d).jsonl(count of today's events)${CLAUDE_PLUGIN_DATA}/scope/.subagent-costs-*.jsonl(per-subagent cost rollup — aggregate byagent_name, show top 3 bycost_usd)${CLAUDE_PLUGIN_DATA}/scope/.blocked-commands(the block log; last 3 lines for "Recent blocks" — format:[ts] category — reason — command)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 91 lines · 0 tokens per session scan A 8e3fba6111e6
status is a command published in the GitHub repository smrafiz/claude-supercharger (11 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,884 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.