Recommends which framework agent (or multi-agent workflow) should handle a task; use when the user asks which agent to use, how to delegate a piece of work, or how to sequence agents for a multi-domain task.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-framework:agent-routing-advisorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze a task and recommend the right agent(s) from this framework's roster, plus a delegation prompt and workflow sequence. Recommendations must reflect the registry (claude.json), never memory or legacy docs.
Analyze a task and recommend the right agent(s) from this framework's roster, plus a delegation prompt and workflow sequence. Recommendations must reflect the registry (claude.json), never memory or legacy docs.
.sub_agents; each agent's definition is agents/<name>.md; canonical categories are in .agent_categories.| Category | Agents | Route here when |
|---|---|---|
| language_experts | rust-expert, csharp-expert, go-expert, java-expert, python-expert, typescript-expert, mql-trading-dev | Implementation in a specific language/stack, including backend/API work |
| automation_experts | bash-expert, powershell-expert | Executing any shell command (blanket policy), shell scripting, OS automation |
| domain_specialists | database-specialist, frontend-specialist, security-specialist, uiux-specialist | Schema/query work, UI components, security audits, UX/accessibility |
| infrastructure_operations | devops-orchestrator | CI/CD, containers, IaC, deployment |
| architecture_planning | system-architect, product-owner | System design, technical decisions; requirements, user stories |
| quality_analysis | comprehensive-analyst, code-review-gatekeeper, peer-review-critic | Investigation/profiling; code review; final diff-scoped peer review |
| documentation | technical-docs-writer | Guides, API docs, developer documentation |
Match dominant signals in the task description:
Decision order: (0) the task is purely running/summarizing commands → bash-expert or powershell-expert; (1) single language implementation → that language expert; (2) clearly one specialized domain → that specialist; (3) spans domains → multi-agent workflow; (4) ambiguous or investigative → comprehensive-analyst first.
Every workflow that produces or changes code ends with, in this order:
Never place peer-review-critic mid-workflow, and never end a coding workflow without it.
Feature development product-owner (stories, acceptance criteria) → system-architect (design) → [language expert] (implementation + tests) → technical-docs-writer (docs) → code-review-gatekeeper → peer-review-critic
Security-critical feature security-specialist (requirements, threat model) → [language expert] (secure implementation) → security-specialist (audit) → code-review-gatekeeper → peer-review-critic
Full-stack feature system-architect (design) → database-specialist (schema, migrations) → [language expert] (API/backend) → frontend-specialist (UI) → uiux-specialist (UX/accessibility validation) → code-review-gatekeeper → peer-review-critic
Performance optimization comprehensive-analyst (profile, identify bottlenecks) → [language expert] (optimizations) → comprehensive-analyst (verify improvement) → code-review-gatekeeper → peer-review-critic
Skip phases that don't apply (e.g., no database-specialist if no schema change), but never skip the two closing review gates when code changed.
If the task is underspecified (e.g., "optimize performance", "improve the app"):
When handing the recommendation to /agentic-framework:delegate or a Task invocation, structure the prompt as:
Present each recommendation as:
Do not include invented time estimates, pass rates, or cost figures — only what can be derived from the task and the registry.
npx claudepluginhub tomas-rampas/claude-agentic-frameworkCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.