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 skills/kevinzai/commander/ccc-cheatsheetnpx skills add KevinZai/commander --skill ccc-cheatsheetgit clone --depth 1 https://github.com/KevinZai/commanderWrote 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/skills/kevinzai/commander/ccc-cheatsheet)<a href="https://agentmods.dev/skills/kevinzai/commander/ccc-cheatsheet"><img src="https://agentmods.dev/badge/skills/kevinzai/commander/ccc-cheatsheet.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.00038 | $0.02103 |
| Opus 5 | $0.00019 | $0.01052 |
| Sonnet 5 | $0.00008 | $0.00421 |
| Haiku 4.5 | $0.00004 | $0.00210 |
Grade A, and why
ccc-cheatsheet 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 4d 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 — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.
$ccc-cheatsheet — Interactive Discovery Tool
Live, always-in-sync visual reference for the entire CC Commander plugin surface. Reads the plugin directly — no hardcoded skill list, no stale counts. Renders a Mermaid flow diagram (which Claude Desktop natively renders inline) + an AskUserQuestion navigator to drill into any workflow.
This is the single-source-of-truth discovery primitive. Every time the plugin adds or removes a skill, this cheatsheet updates automatically — no doc maintenance needed.
Response shape
Four sections in order:
1. Brand header
**CC Commander** · v{VERSION} · Interactive Cheatsheet · [docs/plugin.md](../../docs/plugin.md)
Read VERSION from ${CLAUDE_PLUGIN_ROOT}/.codex-plugin/plugin.json.
2. Live stats line
Compute by scanning plugin directories:
- Skills:
ls ${CLAUDE_PLUGIN_ROOT}/skills | wc -ltotal;ls -d ${CLAUDE_PLUGIN_ROOT}/skills/ccc-* | wc -lspecialist workflows - Agents:
ls ${CLAUDE_PLUGIN_ROOT}/agents/*.md | wc -l - Hooks: count events in
${CLAUDE_PLUGIN_ROOT}/hooks/hooks.json→.hooksobject - MCPs: count keys in
${CLAUDE_PLUGIN_ROOT}/.mcp.json→.mcpServersif present, else count entries in${CLAUDE_PLUGIN_ROOT}/MCP.mdheadings - Menu trees:
ls ${CLAUDE_PLUGIN_ROOT}/menus/*.json | wc -l
Render:
🧰 {N} skills ({M}
$ccc-*workflows) · {agents} agents · {hooks} lifecycle hooks · {mcps} MCP servers · {menus} menu trees
3. The Mermaid flow diagram
Claude Desktop renders inline ```mermaid code blocks as SVG diagrams. This is the interactive visual primitive.
Output this exact structure, with real names discovered from the plugin:
```mermaid
graph TD
START([/ccc]) --> INTENT{Pick an intent}
INTENT -->|🔨| BUILD[/ccc-build]
INTENT -->|🔍| REVIEW[/ccc-review]
INTENT -->|🚀| SHIP[/ccc-ship]
INTENT -->|🎨| DESIGN[/ccc-design]
INTENT -->|📚| LEARN[/ccc-learn]
INTENT -->|⋯| MORE[/ccc-more]
BUILD --> B1[web-app]
BUILD --> B2[api]
BUILD --> B3[cli]
BUILD --> B4[mobile]
BUILD --> B5[from spec → $ccc-plan]
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.
- 4d ago First seen · 175 lines · 38 tokens per session scan A de816e4faeb3
ccc-cheatsheet is a skill published in the GitHub repository KevinZai/commander (6 stars, last pushed yesterday), licensed MIT. It adds 38 tokens to every session and 2,103 once invoked, about $0.0002 per session on Opus 5. 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-31.
Other skills, from other repositories
interview-me
Conduct an adaptive interactive interview on any topic and produce a structured markdown report, summary, or implementation plan. Use when the user says "interview me", "interview me about", "run an interview on", "help me think through", or wants guided discovery on any subject. Also triggers on "talk me through"…
data-structures
Reference for advanced data structure patterns used in competitive programming and technical interviews. Covers heaps, monotonic stacks, tries, segment trees, Fenwick trees, stack-based parsing, and ordered sets with Python templates, recognition signals, and edge case guidance.
dp-patterns
Reference for dynamic programming patterns — recognition signals, constraint mapping, Python templates, edge cases, and common mistakes for 8 core DP techniques.
math-and-combinatorics
Reference patterns for mathematical and combinatorial problem-solving. Covers modular arithmetic, prime sieves, GCD/LCM, binomial coefficients, fast exponentiation, counting techniques, inclusion-exclusion, and game theory. Load this skill when a problem involves number theory, combinatorics, modular operations, or…
search-and-optimization
Reference patterns for search, optimization, and greedy algorithms. Covers binary search (classic and on-answer), two pointers, sliding window, greedy strategies, prefix sums, merge intervals, and monotonic stack. Use when solving problems that involve searching sorted data, optimizing over constraints, processing…
string-algorithms
Reference for string algorithm patterns — KMP, Z-function, Rabin-Karp, Manacher's, string hashing, suffix arrays, and Aho-Corasick. Covers recognition signals, core ideas, Python templates, edge cases, and common mistakes for each technique.