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/cfircoo/claude-code-toolkit/create-agent-skillsnpx skills add cfircoo/claude-code-toolkit --skill create-agent-skillsgit clone --depth 1 https://github.com/cfircoo/claude-code-toolkitWrote 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/cfircoo/claude-code-toolkit/create-agent-skills)<a href="https://agentmods.dev/skills/cfircoo/claude-code-toolkit/create-agent-skills"><img src="https://agentmods.dev/badge/skills/cfircoo/claude-code-toolkit/create-agent-skills.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.00083 | $0.02370 |
| Opus 5 | $0.00042 | $0.01185 |
| Sonnet 5 | $0.00017 | $0.00474 |
| Haiku 4.5 | $0.00008 | $0.00237 |
Grade A, and why
manage-skills 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 5d 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 — 207 lines — stays where its author put it; the contents beside it link to each section on GitHub.
<essential_principles>
Skills are modular, filesystem-based capabilities that provide domain expertise on demand. They follow the Agent Skills open standard. Custom slash commands (.claude/commands/) have been merged into skills — existing commands keep working, but skills add directory support, frontmatter options, and auto-discovery.
1. Skills Are Prompts — All prompting best practices apply. Be clear, be direct, use XML structure. Assume Claude is smart — only add context Claude doesn't have.
2. SKILL.md Is Always Loaded — When a skill is invoked, Claude reads SKILL.md. Use this guarantee:
- Essential principles go in SKILL.md (can't be skipped)
- Workflow-specific content goes in workflows/
- Reusable knowledge goes in references/
3. Router Pattern for Complex Skills:
skill-name/
├── SKILL.md # Router + principles
├── workflows/ # Step-by-step procedures (FOLLOW)
├── references/ # Domain knowledge (READ)
├── templates/ # Output structures (COPY + FILL)
└── scripts/ # Reusable code (EXECUTE)
SKILL.md asks "what do you want to do?" → routes to workflow → workflow specifies which references to read.
- workflows/ — Multi-step procedures Claude follows
- references/ — Domain knowledge Claude reads for context
- templates/ — Consistent output structures Claude copies and fills (plans, specs, configs)
- scripts/ — Executable code Claude runs as-is (deploy, setup, API calls, data processing)
4. Pure XML Structure — No markdown headings (#, ##, ###) in skill body. Use semantic XML tags (<objective>, <process>, <success_criteria>). Keep markdown formatting within content (bold, lists, code blocks).
5. Progressive Disclosure — SKILL.md under 500 lines. Split detailed content into reference files. Load only what's needed for the current workflow.
6. Two Types of Skill Content:
- Reference content — conventions, patterns, domain knowledge. Runs inline alongside conversation.
- Task content — step-by-step actions with side effects. Often set
disable-model-invocation: trueso only users trigger it. Task skills often usecontext: forkto run in a subagent.
7. Invocation Control — Three modes via frontmatter:
- Default — both user (
/skill-name) and Claude can invoke disable-model-invocation: true— user-only (for deploy, commit, destructive actions)user-invocable: false— Claude-only (for background knowledge skills)
8. Subagent Execution — Add context: fork to run a skill in an isolated subagent. The skill content becomes the subagent's prompt (no access to conversation history). CLAUDE.md is also loaded. The agent field selects the execution environment (Explore, Plan, general-purpose, or custom from .claude/agents/). Default: general-purpose. See references/advanced-patterns.md.
9. Tool Restriction — allowed-tools limits which tools Claude can use when a skill is active. Supports tool-specific patterns: Bash(gh *) allows only gh commands. Your permission settings still govern all other tools. You can also restrict Claude's skill access via permission rules: Skill(name) for exact match, Skill(name *) for prefix match.
10. Extended Thinking — Include the word "ultrathink" anywhere in skill content to enable extended thinking mode. </essential_principles>
- Create new skill
- Audit/modify existing skill
- Add component (workflow/reference/template/script)
- Get guidance
Wait for response before proceeding.
What ships with it
24 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/api-security.md 6.0 KB
- references/be-clear-and-direct.md 13 KB
- references/common-patterns.md 14 KB
- references/core-principles.md 12 KB
- references/executable-code.md 4.3 KB
- references/iteration-and-testing.md 13 KB
- references/recommended-structure.md 3.9 KB
- references/skill-structure.md 15 KB
- references/use-xml-tags.md 11 KB
- references/using-scripts.md 3.0 KB
- references/using-templates.md 2.9 KB
- references/workflows-and-validation.md 12 KB
- templates/router-skill.md 1.8 KB
- templates/simple-skill.md 1.2 KB
- workflows/add-reference.md 2.2 KB
- workflows/add-script.md 2.1 KB
- workflows/add-template.md 1.9 KB
- workflows/add-workflow.md 2.9 KB
- workflows/audit-skill.md 3.5 KB
- workflows/create-domain-expertise-skill.md 18 KB
- workflows/create-new-skill.md 7.5 KB
- workflows/get-guidance.md 3.0 KB
- workflows/upgrade-to-router.md 3.7 KB
- workflows/verify-skill.md 5.1 KB
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.
- 5d ago First seen · 207 lines · 83 tokens per session scan A b7df70b7b2c8
manage-skills is a skill published in the GitHub repository cfircoo/claude-code-toolkit (17 stars, last pushed 5mo ago), licensed MIT. It adds 83 tokens to every session and 2,370 once invoked, about $0.0004 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-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
auto-perf-optimize
Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.
chat-perf
Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…