Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/CleanExpo/NodeJS-Starter-V1 --skill delegation-plannerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
Route complex requests to the right specialist agent or chain of agents. This skill acts as the central brain of an agent swarm — it analyses what the user needs, determines which specialist domain(s) are required, and coordinates parallel or sequential agent execution. Use this skill when a request spans multiple domains (e.g., "research competitors and create a pitch deck"), when you need to decide which specialist should handle an ambiguous request, or when a task requires a multi-step pipeline across different skills. Triggers on: multi-step requests, cross-domain tasks, "coordinate", "plan this out", "I need help with multiple things", or any complex request that touches more than one specialist area. Also triggers when the user seems unsure which tool or approach to use.
>-
Hybrid DAG execution primitive combining deterministic and agentic nodes with hard iteration caps
SKILL.md を表示中
| id | delegation-planner |
| name | delegation-planner |
| type | Capability Uplift |
| version | 1.0.0 |
| created | 20/03/2026 |
| modified | 20/03/2026 |
| status | active |
| triggers | ["who should do this","which agent handles","delegate this","plan delegation","assign tasks","who handles","which specialist","route this task","assign work"] |
| description | > |
| context | fork |
Purpose: Route every task to the correct agent layer before execution begins. Wrong routing wastes context budget and produces inferior output.
Use this skill when:
Route here when:
Do NOT route here:
Route here when:
Do NOT route here:
Route to Senior Engineering Agent when:
Route to Senior UI/UX Agent when:
Route to Senior QA / Production Agent when:
Route to Senior LMS Content Agent when:
Route to Senior Growth / Marketing Agent when:
Route here when:
Do NOT route here:
Ask: What kind of work is this?
If the task touches multiple domains (e.g., "add a feature with API + UI + tests"):
Produce the delegation plan table.
DELEGATION PLAN
═══════════════════════════════════════════════════
Task: [original task description]
Decomposed: [yes / no]
ROUTING
─────────────────
| # | Sub-task | Agent | Layer | Evidence Required | Gate |
|---|---------|-------|-------|------------------|------|
| 1 | [task] | [agent] | [1-4] | [what to return] | [gate condition] |
| 2 | [task] | [agent] | [1-4] | [what to return] | [gate condition — depends on #1] |
...
DEPENDENCY ORDER
─────────────────
[If tasks have dependencies: show order and gate conditions]
Step 1: Task #[N] must complete before Task #[N+1] begins
Gate: [exact condition that unlocks next step]
CONTEXT BUDGET
─────────────────
Orchestrator: [estimated tokens for coordination]
Each specialist: [estimated tokens per agent]
Total estimate: [rough total]
═══════════════════════════════════════════════════
Before finalising delegation plan:
| Failure | Recovery |
|---|---|
| Task is too vague to route | Ask: "What does success look like?" — activate outcome-translator |
| Task spans all 4 layers | Decompose into phases, route each phase separately |
| Wrong agent assigned (discovered mid-task) | Re-route immediately, don't continue in wrong layer |
| Sub-agent scope creeps to architectural decision | Pause sub-agent, escalate to orchestrator |
Task: "Add a protected dashboard page with user stats"
Delegation Plan:
| # | Sub-task | Agent | Layer | Evidence Required |
|---|---|---|---|---|
| 1 | API endpoint: GET /api/user/stats | Senior Engineering | 3A | curl output + type-check |
| 2 | Dashboard page component | Senior UI/UX | 3B | Screenshot + 0 TS errors |
| 3 | Auth middleware check | Senior Engineering | 3A | curl 401 without JWT |
| 4 | E2E test for dashboard | Senior QA | 3C | Playwright test output |
Dependency order: 1 → 3 → 2 → 4
Task: "Add dashboard" Response: "Sure, I'll add the dashboard." — No routing, no decomposition, no evidence plan.