What problem does it solve? DevOps requests span cron job maintenance, kanban task orchestration, and worker execution, and routing each request to the wrong handler causes failed or duplicated work. This Skill acts as a parent router that dispatches each operations request to the correct sub-skill without executing the work itself. ## Core Features & Use Cases - Request Routing: Directs cron management requests to cron-system-maintenance, task decomposition to kanban-orchestrator, and single-task execution to kanban-worker via the Hermes skill loading mechanism. - Structured Error Handling: Returns structured errors with context and recovery guidance when a request targets an unknown sub-skill, instead of silently failing. - Golden Test Set: Ships executable routing test cases (normal routing and unknown sub-skill paths) with weighted pass criteria as the single source of truth for verification. - Use Case: A user asks to check cron job health and next trigger times; the router forwards the request to cron-system-maintenance and returns its structured result without the parent performing any operation itself. ## Quick Start Ask the agent to check the health of your cron tasks or decompose a project into kanban tasks, and the request will be routed to the appropriate sub-skill automatically.