con un clic
hierarchical-supervisor
Hierarchical supervisor pattern: Multi-level supervisor chains.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Hierarchical supervisor pattern: Multi-level supervisor chains.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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 | hierarchical-supervisor |
| description | Hierarchical supervisor pattern: Multi-level supervisor chains. |
[!IMPORTANT] When to use: When you need multiple levels of supervisory control — a supervisor delegates to supervisors who manage worker agents.
Does the task require multiple specialized capabilities?
├── YES
│ └── Do you need multiple levels of supervisory control?
│ ├── YES → Hierarchical Supervisor (you're here)
│ └── NO, single level of control?
│ ├── YES, centralized routing?
│ │ └── YES → supervisor-delegation
│ └── YES, orchestrator control?
│ └── YES → supervisor-orchestrator
└── NO → single-agent
| ✅ Use Hierarchical When | ❌ Avoid When |
|---|---|
| Large organization-scale tasks | Simple routing with fixed paths |
| Clear domain/team boundaries needing management | Shallow task decomposition |
| Middle managers needed for domain expertise | Single supervisor suffices |
| Coordination at multiple abstraction levels | Overhead exceeds benefit |
┌─────────────────────────────────────────────────────────┐
│ Executive Supervisor │
│ (High-level task understanding) │
└─────────────────────────────┬───────────────────────────┘
│
┌───────────────────┼───────────────────┐
▼ ▼ ▼
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ Domain Lead A │ │ Domain Lead B │ │ Domain Lead C │
│ (Technical Mgmt)│ │ (Creative Mgmt) │ │ (Legal Mgmt) │
└────────┬────────┘ └────────┬────────┘ └────────┬────────┘
│ │ │
┌────┴────┐ ┌────┴────┐ ┌────┴────┐
▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼
┌──── ┌──── ┌──── ┌──── ┌──── ┌──── ┌──── ┌──── ┌────
│Wrkr │Wrkr │Wrkr │Wrkr │Wrkr │Wrkr │Wrkr │Wrkr │Wrkr
└──── └──── └──── └──── └──── └──── └──── └──── └────
| Level | Role | Responsibility |
|---|---|---|
| Executive | Task interpretation | Convert user request to domain tasks |
| Domain Lead | Domain coordination | Manage specialists within domain |
| Specialist | Execution | Perform actual work |
| Principle | Why It Matters |
|---|---|
| 3 levels max | More adds latency, loses context |
| Semantic handoffs | Each level adds its own interpretation |
| Clear domain boundaries | Reduces cross-level confusion |
| Aggregated feedback | Lower levels report up; upper levels synthesize |
| Mistake | Why It's Bad |
|---|---|
| Too many levels | Context collapse, latency explosion |
| Unclear level responsibilities | Work falls through cracks |
| Top does work | Middle management is overhead |
| Bottom reports directly to top | Bypasses domain expertise |
Is hierarchy actually simpler than expected?
├── NO, just single level routing?
│ └── YES → supervisor-delegation
├── NO, just orchestration control?
│ └── YES → supervisor-orchestrator
└── Task is embarrassingly parallel?
└── YES → parallel-execution
| Factor | Hierarchical Supervisor |
|---|---|
| Latency | Highest (multiple levels) |
| Cost | Highest (multiple supervisors) |
| Complexity | Very High |
| Reliability | Distributed; domain leads isolate failures |
| Best for | Large-scale multi-domain tasks |
Pattern ID: hierarchical-supervisor | AGEM-compatible