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/everyone-needs-a-copilot/claude-copilot/extensionsgit clone --depth 1 https://github.com/Everyone-Needs-A-Copilot/claude-copilotWrote 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/everyone-needs-a-copilot/claude-copilot/extensions)<a href="https://agentmods.dev/commands/everyone-needs-a-copilot/claude-copilot/extensions"><img src="https://agentmods.dev/badge/commands/everyone-needs-a-copilot/claude-copilot/extensions.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.1 | $0.00000 | $0.01177 |
| Opus 5 | $0.00000 | $0.00589 |
| Sonnet 5 | $0.00000 | $0.00235 |
| Haiku 4.5 | $0.00000 | $0.00118 |
Grade A, and why
extensions 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 today.
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 — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Extensions Status
Show the configured Knowledge ladder, reusable skills, and active agent extensions. Do not create or modify files.
1. Inspect the real Knowledge ladder
The only authoritative inputs are paths.knowledge_repo and the ordered CC_KNOWLEDGE_REPOS value from cc env (personal → department → organization → foundation). Do not inspect ~/.claude/knowledge/knowledge-manifest.json or ./knowledge-manifest.json unless that path is actually in the ladder.
eval "$(cc env)"
echo "${CC_KNOWLEDGE_REPOS:-}"
echo "${CC_KNOWLEDGE_REPOS:-}" | tr ',' '\n' | while IFS= read -r repo; do
[[ -z "$repo" ]] && continue
if [[ -f "$repo/knowledge-manifest.json" ]]; then
name="$(python3 -c "import json,sys; print(json.load(open(sys.argv[1])).get('name','?'))" "$repo/knowledge-manifest.json" 2>/dev/null)"
echo "FOUND: $repo (name: $name)"
else
echo "MISSING: $repo"
fi
done
Store each tier's position, path, manifest name, and found/missing state. The tr/while form is portable across bash and zsh.
2. Resolve skills and extensions
cc skill list
cc extensions resolve --all --json
Use the returned JSON as source truth. For every agent it supplies agent, action, matched, type, file, source_repo, description, requiredSkills, missingSkills, and warning. Resolution is nearest-first: the first tier declaring an agent wins; otherwise the base agent runs unchanged.
Interpret action without inventing state:
apply: the declared extension is usable; show its type and source tier.fallback_use_base: no usable extension was selected; the base agent runs.fallback_use_base_with_warning: the base agent runs, and the returned warning must be shown.fallback_fail: show the returned warning as a blocking configuration error. Do not claim the agent can run.no_extension: no tier declares that agent; this is a healthy base-agent state.
requiredSkills and missingSkills are evidence, not suggestions. When skills are missing, list their exact names beside the affected agent. Do not scan directories or recompute whether a requirement is satisfied; the resolver already applied the same contract used during agent invocation.
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.
- today First seen · 109 lines · 0 tokens per session scan A 376ded50f1c2
extensions is a command published in the GitHub repository Everyone-Needs-A-Copilot/claude-copilot (13 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,177 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-09-04.
Other commands, from other repositories
go
You are the Project Kickstart agent. Your job is simple: find PRDs, validate them, and execute the full implementation pipeline.
analytics
/analytics Show full analytics dashboard /analytics top Top 10 most-used agents /analytics failures Show agents with highest failure rates /analytics timeline Show invocation timeline (last 7 days) /analytics agent Show stats for a specific agent /analytics trends Show improving vs degrading agents over time…
explain
/explain Explain the last agent action (quick mode) /explain --verbose Full trace with file changes and decision rationale /explain --story STORY-XXX All actions for a story in chronological order /explain --agent Last action by a specific agent /explain --session All actions from a specific session /explain --diff…
feature
Role: Per-feature quality pipeline that takes a story or feature description from zero to a committed, documented, tested, and evaluated implementation. No stage is skipped. No commit happens without the evaluator's approval.
security-scanner
Security scanner specialized in detecting AI-generated code vulnerabilities using comprehensive anti-pattern databases. You are methodical, thorough, and uncompromising -- every vulnerability is documented, traced, and given a concrete fix.
swarm
You are the Swarm Coordination Manager: a disciplined parallel execution engine that decomposes work into independent units, dispatches them to isolated workers, monitors progress, detects conflicts, and aggregates results into a coherent whole. You turn serial bottlenecks into parallel throughput — safely.