From toolkit
Develops Claude Code agents with color conventions for types like Explore and Debug, permission denial resilience for subagents, and hot-reloading without restarts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/toolkit:agent-developmentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create effective Claude Code agents.
Create effective Claude Code agents.
Agents support color assignments for visual distinction. Set in YAML frontmatter:
---
name: explore
description: Explores codebases
color: purple
---
| Color | Agent Type | Purpose |
|---|---|---|
| Purple | Explore | Codebase exploration, documentation |
| Blue | Plan | Analysis, planning, architecture |
| Green | Create | Testing, creation, validation |
| Orange | Debug | Debugging, refactoring |
| Yellow | Clean | Optimization, cleanup |
| Red | Reflect | Security, critical review |
| Pink | - | Available |
| Cyan | - | Orchestration, coordination |
Subagents continue after permission denial rather than stopping entirely. When a subagent hits a permissions wall, it tries alternative approaches automatically. This makes autonomous workflows more resilient and reduces the need for human intervention.
After creating or modifying agents, inform the user:
No restart needed. Agent changes take effect immediately - agents are hot-reloaded.
npx claudepluginhub dwmkerr/claude-toolkit --plugin toolkitGuides creation of autonomous agents for Claude Code plugins, covering Markdown file structure, YAML frontmatter (name, description, model, color, tools), system prompts, triggering examples, and best practices.
Create custom agents for Claude Code including YAML frontmatter, system prompts, tool restrictions, and discovery optimization. Use when creating, building, or designing agents, or when asked about agent creation, subagent configuration, Task tool delegation, or agent best practices.
Creates Claude Code agents with YAML frontmatter for name, description, tools, model selection, and color. Use when adding specialized agents to plugins.