agent-creator
Installation
SKILL.md
Contains Hooks
This skill uses Claude hooks which can execute code automatically in response to events. Review carefully before installing.
Agent Creator
Subagents are specialized AI assistants defined as Markdown files with YAML frontmatter. Each runs in its own context window with a custom system prompt, specific tool access, and independent permissions. Claude auto-delegates tasks based on each agent's description.
Agents vs Skills/Commands:
- Use agents for isolated, self-contained tasks — no conversation history, own context window, optional persistent memory
- Use skills/commands for inline workflows that need conversation context and run in the main session
File placement
| Scope | Path | Priority |
|---|---|---|
| Project | .claude/agents/<name>.md |
2 (high) |
| Personal | ~/.claude/agents/<name>.md |
3 |
| Plugin | <plugin>/agents/<name>.md |
4 (low) |
| CLI flag | --agents JSON |
1 (highest, session-only) |
When multiple agents share a name, higher-priority location wins. Project agents should be committed to version control.