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-adoptnpx skills add KevinZai/commander --skill ccc-adoptgit 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-adopt)<a href="https://agentmods.dev/skills/kevinzai/commander/ccc-adopt"><img src="https://agentmods.dev/badge/skills/kevinzai/commander/ccc-adopt.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.00049 | $0.03285 |
| Opus 5 | $0.00024 | $0.01643 |
| Sonnet 5 | $0.00010 | $0.00657 |
| Haiku 4.5 | $0.00005 | $0.00329 |
Grade A, and why
ccc-adopt 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 — 236 lines — stays where its author put it; the contents beside it link to each section on GitHub.
$ccc-adopt — Bring CCC Doctrine Into an Existing Project
CC Commander · $ccc-adopt · Adopt Orchestrator/Executor in your own repo
Not to be confused with
$ccc-onboard— onboards a new contributor INTO the cc-commander repo itself (this repo).$ccc-tuneup— tunes up the user's local~/.claudeCC Commander install (plugin freshness, junk, settings).$ccc-adopt(this skill) — runs INSIDE ANY OTHER PROJECT (yours, not cc-commander) and adds CCC's Orchestrator/Executor doctrine plus a tailored skill/agent pointer list to that project's ownCLAUDE.md.
If the current working directory's git root is cc-commander itself, stop and point the user at $ccc-onboard or $ccc-tuneup instead — this skill is for adopting CCC doctrine into a different codebase.
Safety rules (NON-NEGOTIABLE)
- ❌ NEVER
rmortrashanything. - ✅ Before ANY write to
CLAUDE.md:cp CLAUDE.md CLAUDE.md.backup-$(date +%Y%m%d-%H%M%S). - ❌ NEVER overwrite an existing
CLAUDE.mdwholesale — only append/replace the clearly delimited CCC block. - ❌ NEVER run outside a confirmed git repo without asking first (
git rev-parse --show-toplevelmust succeed, or the user must explicitly confirm working in a non-git directory). - ✅ Always show a diff preview via
AskUserQuestionbefore writing anything. - ❌ NEVER silently create a
CLAUDE.mdthat doesn't exist — offer viaAskUserQuestionfirst. - ✅ Re-run safe: detect an existing
<!-- CCC:orchestrator-executor:start -->marker and replace in place — never duplicate the block.
Arguments
--check— read-only: detect stack + existing CLAUDE.md + marker state, print the plan, do NOT write anything.- bare
$ccc-adopt— detect, preview the diff via chips, write on confirm.
Step 1 — Detect
IS_GIT=$(git rev-parse --show-toplevel 2>/dev/null || echo "")
echo "GIT_ROOT=${IS_GIT:-n/a}"
HAS_CLAUDE_MD=$([ -f "CLAUDE.md" ] && echo yes || echo no)
HAS_MARKER=$(grep -l "CCC:orchestrator-executor:start" CLAUDE.md 2>/dev/null && echo yes || echo no)
echo "HAS_CLAUDE_MD=$HAS_CLAUDE_MD"
echo "HAS_MARKER=$HAS_MARKER"
# Stack detection — same style as ccc-onboard's clone-time validator
test -f package.json && echo "STACK=node" && grep -o '"\(react\|next\|vue\|nuxt\|express\|fastify\|hono\)"' package.json 2>/dev/null
test -f pyproject.toml -o -f requirements.txt && echo "STACK=python"
test -f Cargo.toml && echo "STACK=rust"
test -f go.mod && echo "STACK=go"
test -f Gemfile && echo "STACK=ruby"
test -f composer.json && echo "STACK=php"
test -f pom.xml -o -f build.gradle && echo "STACK=jvm"
# Package manager clues (mirrors ccc-onboard)
test -f bun.lockb -o -f bun.lock && echo "PM=bun"
test -f pnpm-lock.yaml && echo "PM=pnpm"
test -f yarn.lock && echo "PM=yarn"
test -f package-lock.json && echo "PM=npm"
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 · 236 lines · 49 tokens per session scan A 48b8ee2e557f
ccc-adopt is a skill published in the GitHub repository KevinZai/commander (6 stars, last pushed today), licensed MIT. It adds 49 tokens to every session and 3,285 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
claude-code-session-broker
Use when running Arcgentic V2 in Claude Code and fixed Planner, Developer, and Auditor role sessions must be coordinated through a broker.
verify-gates
Runs the mechanical quality gates that the arcgentic state machine requires for state transitions. Invoked indirectly by transition.sh OR directly by orchestrator agent before declaring a state transition. Use when about to call transition.sh OR when manually verifying that a round artifact meets the gate criteria.…
agency-roster
Use when a round references agency-agents catalogs, role-family routing, multi-agent identity prompts, or English/Chinese specialist role catalogs.
cross-session-handoff
Read, write, snapshot, and lock .arcgentic/state.yaml across planner, dev, audit, and optional test sessions.
hook-template
Generate hook script from template. Use when adding a new hook, wiring a PreToolUse/PostToolUse/Stop/Notification hook, or scaffolding hook config for settings.json.
check-environment
Verify Claude, Codex, and Grok availability plus Director guidance, relay, agents, and skills. Audit optional hooks only when selected. Use after installation or when a native surface misbehaves.