← ClaudeAtlas

skill-orchestrationlisted

Skill router — activates at the start of any non-trivial task to match the task to the right domain skills and MCP tools before acting. Trigger proactively on every task, or when unsure which skills apply. Provides a decision matrix mapping task signals to skills and MCP routes. Reduces missed skill activations and ensures MCP tools are used where they add value.
rcdelfin/agentkit · ★ 1 · AI & Automation · score 74
Install: claude install-skill rcdelfin/agentkit
# Skill Orchestration Match the task to the right skills and MCP tools **before** acting. Do not start implementation until you have identified and loaded the relevant skills. ## Procedure 1. **Ground in global principles.** Apply SYSTEM.md and AGENTS.md first — think before acting, trace state/feedback/blast-radius, plan, minimal changes. These are always-on and never overridden by skills. 2. **Classify** the task using the matrix below (one or more domains may apply). 3. **Load** every matching skill's `SKILL.md` via the `read` tool. 4. **Route** to MCP tools where the matrix indicates — especially `search-docs` before writing framework code. 5. **Act** following global principles + the loaded skill's domain-specific instructions. 6. **Verify** per SYSTEM.md / AGENTS.md — tests, type-check, lint, build. ## Decision Matrix ### Backend — Laravel / PHP | Task Signal | Skills to Load | MCP Route | |-------------|---------------|-----------| | Controller, model, migration, form request, policy, job, service class | `laravel-best-practices`, `laravel-conventions` | `search-docs` (Laravel version-specific syntax) | | Eloquent query, N+1, slow query, eager loading | `database-optimization`, `eloquent-best-practices` | `database-query` (read-only verification), `database-schema` (before migrations) | | Filament resource, page, widget, relation manager | `cms-development` | `search-docs` (Filament), `list-artisan-commands` | | Writing or fixing Pest/PHPUnit tests | `pest-testin