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.
npx agentmods add commands/random6913/claude-code-superkit/superkit-evolvegit clone --depth 1 https://github.com/RaNDoM6913/claude-code-superkitWrote 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/random6913/claude-code-superkit/superkit-evolve)<a href="https://agentmods.dev/commands/random6913/claude-code-superkit/superkit-evolve"><img src="https://agentmods.dev/badge/commands/random6913/claude-code-superkit/superkit-evolve.svg" alt="Measured on agentmods" 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 | $0.00015 | $0.02791 |
| Opus 5 | $0.00008 | $0.01396 |
| Sonnet 5 | $0.00003 | $0.00558 |
| Haiku 4.5 | $0.00002 | $0.00279 |
Grade B, and why
superkit-evolve scanned grade B with 1 finding 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 yesterday.
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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
grep -o '`[^`]*`' .claude/rules/documentation.md 2>/dev/null | tr -d '`' | while read -r pattern; do How it starts
The opening of the file, as written. The whole thing — 232 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Superkit Evolve — Incremental Documentation Update
Detect what is outdated or missing in the documentation of a project already using superkit, then fix it. Six drift checks → report → confirmed fixes → verified commit.
Mode
$ARGUMENTS
| Arguments | Mode | Behavior |
|---|---|---|
| (empty) | interactive | Report issues in Step 7, ask before fixing |
--fix-all |
automatic | Print the Step 7 scan block, skip the prompt, fix everything except [UNKNOWN] |
Hard Rules
- Run ALL six checks (Steps 1–6) before reporting. A check whose command fails or whose value cannot be parsed records an [UNKNOWN] issue with the reason — never guess a value, never claim drift from an unparsed value.
- Interactive mode: fix NOTHING until the user confirms in Step 7.
- Touch only documentation and config:
docs/,CLAUDE.md,.claude/rules/,.claude/scripts/hooks/. Never edit application source code. - Canonical architecture doc names are the shipped template names (Step 2 table):
api-reference.md,frontend-state.md, etc. Do not check for or generate other spellings. - A fix counts as FIXED only after re-running the check that produced the issue and seeing it pass.
- Use the portable commands below as written — they run on both macOS and Linux. Do not substitute
grep -Porstat -fvariants. - Zero issues is a valid result — emit the final report saying so; do not manufacture drift.
Step 1 — Migration Counter Drift
# Count actual migrations
ACTUAL=$(find . -path "*/migrations/*" -name "*.up.sql" -not -path "*/node_modules/*" 2>/dev/null | wc -l | tr -d ' ')
# Extract claimed upper counter from CLAUDE.md: last NNN..NNN range on the first matching line, zero-padding stripped
CLAIMED=$(grep -E '[0-9]{3,}\.\.[0-9]{3,}' CLAUDE.md 2>/dev/null | head -1 | sed -n 's/.*\.\.0*\([1-9][0-9]*\).*/\1/p')
Branches (exactly one applies):
ACTUALis 0 but amigrations/directory exists → recount with-name "*.sql"(project without.up/.downsplit), then continue below.- No migrations in the project at all → no issue, done.
CLAIMEDempty whileACTUAL > 0→ issue[UNKNOWN] Migration counter not parseable from CLAUDE.md (actual: $ACTUAL).CLAIMED != ACTUAL→ issue[DRIFT] Migration counter (CLAUDE.md: $CLAIMED, actual: $ACTUAL).CLAIMED == ACTUAL→ no issue.
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.
- yesterday First seen · 232 lines · 15 tokens per session scan B 021bdda27838
superkit-evolve is a command published in the GitHub repository RaNDoM6913/claude-code-superkit (2 stars, last pushed 1mo ago), licensed MIT. It adds 15 tokens to every session and 2,791 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other commands, from other repositories
om-slack-scan
Deep scan Slack channels and DMs for evidence involving a specific person or project. Extracts every touchpoint with timestamps for review evidence or project documentation.
session-list
List recent sessions from the project ledger and offer to view one.
triage-issue
Apply labels + milestone + priority to a new issue using the llmwiki triage rules.
plan
Hierarchical planning entry point — all 11 plan verbs in one command. v3.7.2 consolidates /aura-frog:plan- (10 commands) into a single dispatcher that routes via the plan-orchestrator skill. The legacy plan- aliases still work as thin stubs.
plan-freeze
Manually freeze a plan node, cascading to descendants. Alias for /aura-frog:plan freeze (v3.7.2+).
talent-psych-safety
Measure psychological safety on a team using Edmondson's 7-question scale (anonymous, longitudinal, team-by-team) plus interpretation rubric and intervention design. Cites Project Aristotle. Refuses "psychological safety training" as primary intervention without leader behavior change. Refuses single-snapshot scoring.…