An advanced master orchestrator for routing, delegating, and verifying tasks across organizational domains. Started as a keyword-matching router (V2.2) and evolved toward LLM-based intent classification (V2.5). Uses Hermes Agent’s delegate_task API under the hood for subagent execution.

Architecture

┌──────────────────────────────────────────────┐
│           OrganizationalOrchestrator          │
│  Intent Classification → Routing → Delegation │
├──────────────────────────────────────────────┤
│  Specialists (19 domains):                    │
│  Strategy | Finance | HR | Legal | Data      │
│  IT/Security | Procurement | Citizen Svcs    │
│  Auditor | Emergency | Urban Planner | Health│
│  Education | Social Services | Comms | Ops   │
│  Facilities | Research | Innovation           │
└──────────────────────────────────────────────┘

Each specialist has:

The Evolution

VersionApproachWhat Changed
V1Fixed routing tableEvery intent hard-coded to one agent
V2.2Keyword + priority matching19 specialists with aliases, keyword maps, fallback chain
V2.5LLM intent classificationReplace keyword matching with model-based routing

The farm scenario that broke V2.2 keyword matching: “I need to deploy a new water sensor array on the north field” — this could route to IT (deploy), Facilities (sensors), or Urban Planning (land use). Keyword matching couldn’t disambiguate. V2.5’s LLM classification solved it.

Key Files

What Was Learned

Status → ✅ Shipped (V2.2) / 🟡 Evolving (V2.5)

V2.2 is operational. V2.5 intent classification is in development.