skills/subagent-creator/SKILL.md
Create, evaluate, or improve Claude Code subagent files (.claude/agents/*.md) — the frontmatter + system prompt defining a delegatable specialist. Don't use for skills (skill-creator), CLAUDE.md/AGENTS.md (agent-config), or running an agent.
npx skillsauth add luongnv89/skills subagent-creatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create, evaluate, and improve Claude Code subagents — the .md files (in .claude/agents/ for a project or ~/.claude/agents/ for personal use) whose YAML frontmatter plus system prompt define a specialist the main agent can delegate to with an isolated context window and restricted tools.
This is not about skills (skill-creator owns those) or CLAUDE.md/AGENTS.md (agent-config owns those). A subagent is one file: frontmatter (name, description, tools, model, …) + a system-prompt body.
Use when the user asks to create, review, or fix a Claude Code subagent definition file (.claude/agents/*.md or personal ~/.claude/agents/*.md). Do not use for skills or for editing CLAUDE.md/AGENTS.md.
Three branches. Identify which one the user is on before doing anything else — they don't share a starting step.
| Branch | Trigger | Go to |
|--------|---------|-------|
| Create | "make a subagent that…", "I need an agent for X", no file exists yet | Creating a subagent |
| Evaluate | "review this agent", "is this subagent any good", "audit .claude/agents/foo.md" | Evaluating a subagent |
| Improve | "fix this agent", "this subagent isn't triggering / over-reaches", points at an existing file | Improving a subagent |
If the request is ambiguous ("look at my agent"), assume Evaluate and confirm before editing anything.
These apply on every write, regardless of branch.
A subagent written to .claude/agents/ lives in a version-controlled repo. Before creating or editing a file there, sync to avoid clobbering remote work:
branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin
git pull --rebase origin "$branch"
If the working tree is dirty: stash → sync → pop. If origin is missing or a conflict occurs: stop and ask the user. Skip this section only when the target is ~/.claude/agents/ (personal, not a repo) — confirm the scope with the user before assuming.
name must be lowercase letters/digits/hyphens, no consecutive hyphens. Identity comes from name, not the filename — they need not match, but keeping name == filename stem (code-reviewer → code-reviewer.md) is a recommended convention.: # - < > | , & ? ! [ ] { } * to keep YAML valid. description almost always needs quotes.metadata.version on every edit.Confirm where the file goes — .claude/agents/<name>.md (project, team-shared, version-controlled) or ~/.claude/agents/<name>.md (personal, cross-project). This decides Repo Sync above and nothing else. The source guideline encodes the rest of the intent, so don't over-interview.
Goal: one well-formed <name>.md file that triggers reliably, stays in its lane, and holds only the tools it needs.
A good subagent has a single responsibility. Force the purpose into one sentence: "A read-only security auditor that flags auth and data-exposure bugs in changed files." If you need "and" to join two unrelated jobs, that's two subagents. Read references/system-prompt-guide.md → Single responsibility if the scope feels fuzzy.
Start from the minimal set and add only what the job demands. Read references/frontmatter-schema.md for every field, which are safe-and-common vs. advanced-and-rot-prone, and the tool-restriction syntax.
Minimal viable frontmatter:
---
name: <kebab-name>
description: "<when to invoke + what it does. Add 'Use PROACTIVELY' to encourage auto-delegation.>"
tools: Read, Grep, Bash # omit entirely to inherit ALL tools
model: inherit # inherit | sonnet | opus | haiku
---
Decisions, in order:
description — the primary trigger. Say when to invoke and what it does. Add Use PROACTIVELY (or MUST BE USED) when the agent should auto-delegate. This is the single highest-leverage field; see the description guidance in references/system-prompt-guide.md.tools — least privilege. Prefer read-only (Read, Grep, Glob) for analysis/review agents; add Edit/Write only for agents that change code; scope Bash to patterns (Bash(npm:*), Bash(git:*)) when you can. Omitting tools inherits everything — only do that for general-purpose agents.model — inherit is the safe default. Use haiku for fast/cheap search agents, opus for hard reasoning.maxTurns, isolation, memory, context, hooks, …) → consult references/frontmatter-schema.md first; most subagents need none of them.The body is the agent's system prompt. Use the proven structure — role → when invoked → process → output format → checklist. Read references/system-prompt-guide.md for the full template, the "be example-rich" guidance, and an annotated example. Start from a template in assets/templates/ (reviewer-agent.md for read-only analysis agents, worker-agent.md for agents that edit code) rather than a blank file.
Write to the path confirmed in the scope check. Then verify it parses and follows the design rules — run the evaluation rubric against your own draft (it's the same checklist; see Evaluating). At minimum confirm: frontmatter parses, name matches filename, tools is least-privilege, description has both a when and a what.
Emit a Step Completion Report:
◆ Create subagent (step 4 of 4 — <name>.md)
··································································
Frontmatter parses: √ pass
name == filename: √ pass
Single responsibility: √ pass
Tools least-privilege: √ pass (read-only: Read, Grep)
Description: when+what: √ pass
____________________________
Result: PASS
Goal: a verdict on an existing subagent file against design best practices — a checklist audit, not an eval harness. No test runs, no benchmarks; the source guideline defines quality by design principles, so grade against those.
references/evaluation-rubric.md — frontmatter validity, single responsibility, least-privilege tools, description quality (trigger clarity + proactive hint), system-prompt structure, and the anti-patterns list.√ pass / × fail / ~ partial with a one-line reason.Emit a Step Completion Report with one check per rubric category and an overall PASS | FAIL | PARTIAL.
Goal: apply concrete fixes to an existing file and leave it measurably better.
Run the Evaluate branch first (above) to get the findings list. Don't skip — fixing without auditing misses the systemic issues.
Apply Repo Sync Before Edits if the file is in a project repo.
Apply fixes, ordered by impact:
description: sharpen when, add/adjust Use PROACTIVELY, name what it's not for. Highest leverage.See references/system-prompt-guide.md for the patterns behind each fix.
Re-run the rubric to confirm the findings are resolved and nothing regressed.
Emit a Step Completion Report showing each prior × fail now √ pass.
A successful run produces:
name (kebab), description containing when+what + negative-trigger, and least-privilege tools..claude/agents/ or ~/.claude/agents/).For a Create on "a read-only PR diff reviewer":
◆ Create subagent (step 4 of 4 — pr-diff-reviewer.md)
Frontmatter parses: √ pass
name == filename: √ pass
Single responsibility: √ pass
Tools least-privilege: √ pass (read-only: Read, Grep, Glob)
Description: when+what: √ pass
____________________________
Result: PASS
The file is written and ready for use.
references/frontmatter-schema.md — every frontmatter field: required vs. optional, safe-and-common vs. advanced, tool-restriction syntax, file-location precedence. Read before choosing frontmatter.references/system-prompt-guide.md — how to write the system-prompt body: single-responsibility test, the role→when→process→output→checklist template, description-writing, an annotated example, design Do/Don't.references/evaluation-rubric.md — the pass/fail checklist for Evaluate and the self-check in Create. The anti-pattern list lives here.assets/templates/reviewer-agent.md — read-only analysis/review agent (Read, Grep, Glob; no edits).assets/templates/worker-agent.md — agent that edits code (Read, Edit, Bash, …).development
Scan a live site with isitagentready.com, then approve each step: triage the 0-5 agent-readiness score, write agent-ready-plan.md, file issues via /plan-to-issues. Don't use for applying llms.txt/SEO fixes (seo-ai-optimizer) or app-store ASO.
development
Review a product codebase and landing page against 32 viral principles and produce a Virality Score plus ranked fixes. Use to audit virality or prioritize growth. Don't use for SEO, ASO, copywriting, or code review.
development
Generate a Technical Architecture Document (TAD) from a PRD. Use when asked to design system architecture or define how a product is built. Updates tad.md and reports GitHub links. Don't use for PRD authoring, sprint tasks, or code implementation.
development
Check product and brand names for conflicts across trademarks, domains, social handles, and package registries. Returns a risk level and Proceed/Modify/Abandon recommendation. Skip for name brainstorming, logo design, or trademark filings.