manage-skills

manage-skills is a skill for Claude Code, Codex from cfircoo/claude-code-toolkit. It costs 83 tokens per session (2,370 once invoked), scanned A, original, MIT.

A guide for creating, updating, auditing, and checking coding-agent skills. Skills are reusable instruction packages that teach an agent how to handle a particular kind of work.

In plain words
What is it for?
Use it to write or improve a SKILL.md file, organize a complex skill into supporting folders, or review whether a skill follows recommended practices.
Why use it?
It provides a consistent structure for instructions, reference material, templates, workflows, and scripts, making skills easier for an agent to find and follow.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/cfircoo/claude-code-toolkit/create-agent-skills
Any agent
npx skills add cfircoo/claude-code-toolkit --skill create-agent-skills
Clone the repo
git clone --depth 1 https://github.com/cfircoo/claude-code-toolkit

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for manage-skills

README.md
[![agentmods](https://agentmods.dev/badge/skills/cfircoo/claude-code-toolkit/create-agent-skills.svg)](https://agentmods.dev/skills/cfircoo/claude-code-toolkit/create-agent-skills)
Your own site
<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>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,370 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash b7df70b7b2c8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

skills/create-agent-skills/SKILL.md · 207 lines

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: true so only users trigger it. Task skills often use context: fork to 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 Restrictionallowed-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>

  1. Create new skill
  2. Audit/modify existing skill
  3. Add component (workflow/reference/template/script)
  4. Get guidance

Wait for response before proceeding.

Read the full file on GitHub · 207 lines

Changes

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.

  1. 5d ago First seen · 207 lines · 83 tokens per session scan A b7df70b7b2c8

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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.

obra/superpowers · 37 tokens

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.

microsoft/vscode · 62 tokens

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.

microsoft/vscode · 51 tokens

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.

microsoft/vscode · 53 tokens

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…

microsoft/vscode · 71 tokens