What problem does it solve? When working with a large skill ecosystem, it is hard to know which skill applies to a given request, and agents often skip quality gates by writing code directly. This Skill acts as an always-loaded router that inspects each user message and dispatches it to the correct Zuvo skill, enforcing pipeline order and quality gates. ## Core Features & Use Cases - Intent-based routing table: Maps user intents across five priority levels (Pipeline, Task, Audit, Utility, Release) to one of 58 skills such as zuvo:build, zuvo:debug, or zuvo:security-audit. - Pipeline enforcement: Ensures substantial production changes (3+ files or 150+ lines) flow through zuvo:brainstorm → zuvo:plan → zuvo:execute instead of ad-hoc edits. - Quality gates: Applies mandatory rules like tests for new code, CQ1-CQ40 self-evaluation, and review-before-push on all coding work. - Use Case: A user says "fix this login bug" — the router matches the intent to zuvo:debug and invokes it, rather than letting the agent patch the code without tests or review. ## Quick Start Ask the assistant to build a feature or fix a bug and let the router automatically invoke the matching Zuvo skill for the task.