Infrastructure Router
Routes infrastructure, MCP development, and tooling tasks.
Subcategories
MCP Development
triggers: [mcp, model-context-protocol, server, tool-registration]
skills:
- mcp-builder: MCP server development guide
- component: Claude Code components
Tooling / CLI
triggers: [cli, tool, script, automation, batch]
skills:
- terminal: Terminal UI design
- ccs: Claude Code Spawner delegation
- ccs-delegation: Auto-delegation patterns
Hooks / Configuration
triggers: [hook, config, setup, settings, plugin]
skills:
- hookify: Hook creation from behaviors
- component: Component generation
Orchestration
triggers: [orchestrate, pipeline, workflow, multi-agent, coordinate]
skills:
- agent: Agentic reasoning framework
- mcp-skillset-workflows: Multi-skill orchestration
Routing Decision Tree
infrastructure request
│
├── MCP development?
│ ├── Server creation? → mcp-builder
│ └── Component? → component
│
├── CLI/Tooling?
│ ├── Terminal UI? → terminal
│ └── Delegation? → ccs
│
├── Hooks/Config?
│ ├── Hook creation? → hookify
│ └── Settings? → component
│
└── Orchestration?
├── Multi-agent? → agent
└── Workflows → mcp-skillset-workflows
Managed Skills
| Skill |
Purpose |
Trigger |
| mcp-builder |
MCP server guide |
"MCP", "server" |
| component |
CC components |
"command", "agent" |
| terminal |
TUI design |
"terminal", "CLI" |
| ccs |
Claude spawner |
"delegate", "spawn" |
| hookify |
Hook creation |
"hook", "prevent" |
| agent |
Agentic framework |
"orchestrate", "agent" |
1---2name: infrastructure-router3description: Routes infrastructure, MCP, and tooling tasks. Triggers on mcp, server, deploy, orchestrate, pipeline, tools, docker, ci/cd, hook, config, setup.4---56# Infrastructure Router78Routes infrastructure, MCP development, and tooling tasks.910## Subcategories1112### MCP Development13```yaml14triggers: [mcp, model-context-protocol, server, tool-registration]15skills:16 - mcp-builder: MCP server development guide17 - component: Claude Code components18```1920### Tooling / CLI21```yaml22triggers: [cli, tool, script, automation, batch]23skills:24 - terminal: Terminal UI design25 - ccs: Claude Code Spawner delegation26 - ccs-delegation: Auto-delegation patterns27```2829### Hooks / Configuration30```yaml31triggers: [hook, config, setup, settings, plugin]32skills:33 - hookify: Hook creation from behaviors34 - component: Component generation35```3637### Orchestration38```yaml39triggers: [orchestrate, pipeline, workflow, multi-agent, coordinate]40skills:41 - agent: Agentic reasoning framework42 - mcp-skillset-workflows: Multi-skill orchestration43```4445## Routing Decision Tree4647```48infrastructure request49 │50 ├── MCP development?51 │ ├── Server creation? → mcp-builder52 │ └── Component? → component53 │54 ├── CLI/Tooling?55 │ ├── Terminal UI? → terminal56 │ └── Delegation? → ccs57 │58 ├── Hooks/Config?59 │ ├── Hook creation? → hookify60 │ └── Settings? → component61 │62 └── Orchestration?63 ├── Multi-agent? → agent64 └── Workflows → mcp-skillset-workflows65```6667## Managed Skills6869| Skill | Purpose | Trigger |70|-------|---------|---------|71| mcp-builder | MCP server guide | "MCP", "server" |72| component | CC components | "command", "agent" |73| terminal | TUI design | "terminal", "CLI" |74| ccs | Claude spawner | "delegate", "spawn" |75| hookify | Hook creation | "hook", "prevent" |76| agent | Agentic framework | "orchestrate", "agent" |