Design and scaffold new skills, subagents, and MCP surfaces. Use when choosing which primitive to create. NOT for invoking existing agents, generic coding help, or deployment work.
Resources
4Install
npx skillscat add curiositech/port-daddy/agent-creator Install via the SkillsCat registry.
SKILL.md
Agent Creator
Meta-skill for choosing the right extension primitive and then authoring it cleanly.
When to Use
- Creating a new skill, agent, or MCP-backed capability from a concrete product need.
- Deciding whether an existing capability should be repaired, wrapped, or replaced.
- Translating a domain brief into boundaries, examples, references, and validation steps.
- Scaffolding a first version that other skills can then critique or improve.
NOT for Boundaries
- Simply using an existing skill or subagent; invoke it directly instead.
- Generic application coding with no agent, skill, or MCP design decision involved.
- Infra or deployment setup for servers or apps.
- Treating "make a new agent" as the default when an existing skill already covers the need.
Decision Points
flowchart TD
A[Capability request] --> B{What is missing?}
B -->|Reusable judgment with existing tools| C[Create or repair a skill]
B -->|Isolated execution or delegated context| D[Create a subagent]
B -->|New external tools, API surface, or durable state| E[Design an MCP server]
C --> F[Write boundaries, examples, and validation first]
D --> F
E --> G[Define the MCP boundary, then hand implementation to mcp-creator]
F --> H{Need more structure?}
H -->|Yes| I[Add references, scripts, or templates only if they improve reuse]
H -->|No| J[Keep the bundle lean]
I --> K[Validate before handoff]
J --> KSee diagrams/01_flowchart_decision-points.md for the companion routing diagram.
- First decide whether the missing capability is a skill, a subagent, or an MCP server.
- If the capability is mostly judgment and reusable prompting, start with a skill.
- If it needs isolated execution, independent context, or delegated specialization, consider a subagent.
- If it needs new external tools or stateful APIs, it is probably an MCP problem.
- If multiple designs are plausible, use a forked planning pass before committing files.
Primitive Selection
Choose a skill when
- The capability is mostly encoded judgment, routing, or structured guidance.
- The runtime can rely on existing tools.
- Progressive disclosure and references matter more than standalone execution.
Choose a subagent when
- The work benefits from isolated context or delegated reasoning.
- You want a specialist to execute independently and hand back a result.
Choose MCP when
- The capability requires new external tools, durable state, or a transport surface beyond prompt design.
Workflow
- Capture the trigger set and negative triggers.
- Define the smallest primitive that solves the problem.
- Write the boundaries and output contract before drafting the body.
- Add
references/,examples/, orscripts/only when they improve determinism or reuse. - Use
Glob,Grep, andReadto inspect adjacent patterns before inventing new structure. - Use
WriteandEditfor the actual bundle changes. - Use scoped Bash only when a real local scaffolder or validator exists in the active repo or installed skill library.
- Use
WebSearchandWebFetchonly when the user explicitly needs current external docs or package guidance.
Failure Modes and Common Anti-Patterns
- Creating a new primitive before checking whether an existing one already fits.
- Writing a generic persona with no boundary or distinctive operating model.
- Shipping a knowledge dump instead of a reusable runtime surface.
- Adding scripts, tools, or references that the body never uses.
- Treating MCP as a formatting choice instead of an external-capability decision.
Worked Examples
Example 1: Database optimization helper
- Capability is mostly judgment plus codebase inspection.
- Start with a skill or subagent, not MCP.
- Add references for indexing and query analysis only if the core body would become bloated.
Example 2: Ticketing-system integration
- The requirement includes authenticated API access and live ticket actions.
- That is MCP-backed capability, not just a skill rewrite.
- Use this skill to define the boundary, then hand implementation to
mcp-creator.
Quality Gates
- The chosen primitive matches the capability, not the author's habit.
- The description states what it does, when to use it, and when not to use it.
- The bundle has concrete examples or references where ambiguity would otherwise remain.
- The skill or agent body names the tools it actually expects to use.
- Validation happens before handoff, not after the next person trips over the gap.
References
- See
references/INDEX.mdfor targeted loads. - See
references/agent-templates.mdfor starter shapes. - See
references/creation-process.mdfor the broader authoring sequence. - See
references/mcp-integration.mdwhen the design boundary points toward MCP.