Help us improve
Share bugs, ideas, or general feedback.
From fuse-ai-pilot
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
npx claudepluginhub fusengine/agents --plugin fuse-ai-pilotHow this skill is triggered — by the user, by Claude, or both
Slash command
/fuse-ai-pilot:agent-creatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Before ANY agent creation, use `TeamCreate` to spawn 3 agents:
Interactive six-phase questionnaire that designs focused sub-agent definitions — specialist, role, or team-lead — with proper frontmatter, tool permissions, and system prompts.
Generates markdown agent files with YAML frontmatter for Claude Code, configuring system prompts, tools, and isolation for autonomous task delegation in plugins.
Creates and validates production-grade agent .md files for Anthropic 2026 16-field spec. Use for custom subagents, agent quality review, or orchestrator architectures. Triggers: /agent-creator, 'create an agent'.
Share bugs, ideas, or general feedback.
Before ANY agent creation, use TeamCreate to spawn 3 agents:
After creation, run fuse-ai-pilot:sniper for validation.
| Action | When to Use |
|---|---|
| New Agent | New domain/framework expert needed |
| Adapt | Copy from similar agent (Next.js → React) |
| Update | Add skills, modify hooks |
chmod +xplugins/<plugin-name>/
├── agents/
│ └── <agent-name>.md # Agent definition
├── skills/
│ ├── skill-a/
│ └── solid-[stack]/
├── scripts/
│ └── validate-*.sh # Hook scripts
└── .claude-plugin/
└── plugin.json
→ See architecture.md for details
| Topic | Reference | When to Consult |
|---|---|---|
| Architecture | architecture.md | Understanding agent structure |
| Frontmatter | frontmatter.md | YAML configuration |
| Required Sections | required-sections.md | Mandatory content |
| Hooks | hooks.md | Pre/Post tool validation |
| Registration | registration.md | marketplace.json |
| Template | When to Use |
|---|---|
| agent-template.md | Creating new agent |
| hook-scripts.md | Validation scripts |
# 1. Research existing agents
→ explore-codebase + research-expert
# 2. Create files
touch plugins/<plugin>/agents/<agent-name>.md
touch plugins/<plugin>/scripts/validate-<stack>-solid.sh
chmod +x plugins/<plugin>/scripts/*.sh
# 3. Register in marketplace.json
# 4. Validate
→ sniper
# 1. Copy similar agent
cp plugins/nextjs-expert/agents/nextjs-expert.md plugins/new-plugin/agents/new-expert.md
# 2. Adapt with sed
sed -i '' "s/nextjs/newstack/g; s/Next\.js/NewStack/g" agents/new-expert.md
# 3. Update skills, tools, register
When creating an agent, you often need to create skills too.
Use /fuse-ai-pilot:skill-creator to create skills for the agent:
| Scenario | Action |
|---|---|
| New agent needs skills | Create skills with skill-creator first |
| Agent references skills | Ensure skills exist in skills/ |
| Adapting agent | Adapt related skills too |
$CLAUDE_PLUGIN_ROOT)