ワンクリックで
supervisor-delegation
Supervisor delegation pattern: One supervisor LLM routes tasks to specialized sub-agents.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Supervisor delegation pattern: One supervisor LLM routes tasks to specialized sub-agents.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
arXiv paper discovery — select top 3 significant papers, research via subagents, ingest to wiki, deliver report.
Daily raw file ingestion pipeline — process files from raw/ into structured wiki knowledge, verify frontmatter and links, archive to Clippings/. Schedule: 06:30 AM.
Daily Zettelkasten insight generation — run CLI insight engine, create wiki pages for confidence>=0.7 insights, integrate to wiki. Schedule: 06:00 AM.
Daily global news curator — RSS discovery, significance filtering, clippings archive + synthesis wiki delivery, deliver headlines report. Schedule: 07:30 AM.
Wiki synthesis agent operational sheet — cross-domain bridges, concept advancement, evidence evaluation
Daily wiki quality audit anchored in wiki-indexing-theory.md — HITS authority scoring, GAAC cluster validation, tag taxonomy compliance, reciprocal link enforcement. Schedule: 08:50 AM.
| name | supervisor-delegation |
| description | Supervisor delegation pattern: One supervisor LLM routes tasks to specialized sub-agents. |
[!IMPORTANT] When to use: When one supervisor LLM routes to multiple specialized LLMs. Best for tasks with distinct capability requirements.
Does the task require multiple specialized capabilities?
├── YES
│ └── Do you need a supervisor to route and coordinate sub-agents?
│ ├── YES → Supervisor Delegation (you're here)
│ └── NO, sub-agents need more autonomy?
│ └── YES → supervisor-orchestrator
└── NO → single-agent
| ✅ Use Supervisor Delegation When | ❌ Avoid When |
|---|---|
| Task has distinct phases needing different expertise | Sub-agents need to collaborate on shared context |
| You want centralized control/logic in supervisor | Task decomposition is complex/unpredictable |
| Sub-agents are largely independent workers | You need multi-level handoffs |
┌─────────────┐
│ Supervisor │ ← Routes based on task type
│ LLM │
└──────┬──────┘
│
┌──────────┼──────────┐
▼ ▼ ▼
┌────────┐ ┌────────┐ ┌────────┐
│ Code │ │ Legal │ │Research│
│ Expert │ │ Expert │ │ Expert │
└────────┘ └────────┘ └────────┘
│ │ │
└──────────┼──────────┘
▼
Synthesize
You are a supervisor router. Given a user task:
1. Identify the required capabilities
2. Route to the appropriate specialist agent
3. Synthesize results if multiple agents respond
Agents available:
- code_expert: Python, JavaScript, debugging
- legal_expert: contracts, compliance, privacy
- research_expert: web search, citations, analysis
Respond with your routing decision and reasoning.
| Aspect | Recommendation |
|---|---|
| Scope | Narrow, well-defined capabilities |
| Interface | Consistent input/output format |
| Fallback | Default response if task doesn't fit specialty |
| Independence | Each specialist should be independently usable |
| Mistake | Why It's Bad |
|---|---|
| Vague specialist definitions | Supervisor can't route reliably |
| Overloading supervisor | Supervisor becomes a bottleneck |
| No synthesis layer | User gets fragmented outputs |
| Sub-agents that need shared context | Creates coordination nightmares |
Need multiple levels of supervision?
├── YES → hierarchical-supervisor
│ (Supervisor → Supervisor → Workers)
└── NO, but agents need to collaborate?
└── YES → supervisor-orchestrator
Is the task actually simpler than expected?
├── YES, just parallel independent tasks?
│ └── YES → parallel-execution
└── YES, one LLM can handle it?
└── YES → single-agent
| Factor | Supervisor Delegation |
|---|---|
| Latency | Medium (routing + sub-agent) |
| Cost | Medium (supervisor + specialists) |
| Complexity | Moderate |
| Reliability | Sub-agents isolated, supervisor is single point |
| Best for | Multi-capability routing with central control |
Pattern ID: supervisor-delegation | AGEM-compatible