What problem does it solve? Developers juggling many small tooling tasks—scaffolding CLIs, running evals, parsing content, automating browsers—need a single entry point that routes each request to the right specialized workflow instead of hunting through scattered scripts. ## Core Features & Use Cases - Workflow Routing: A pattern-matching table directs requests to 13 sub-skills including CreateCLI, CreateSkill, Delegation, AuroraUpgrade, Evals, Documents, Parser, AudioEditor, Fabric, Cloudflare, Browser, Prompting, and Aphorisms. - CLI Generation: Generate TypeScript CLIs using a three-tier template system (manual argv parsing, Commander.js, oclif reference) with type safety and documentation. - Agent Evaluation: Run capability and regression evals with code-based, model-based, and human graders, pass@k/pass^k metrics, and suite management. - Use Case: Ask to "create a CLI for the GitHub API" and the router sends you to CreateCLI; ask to "run evals on this agent" and it routes to the Evals framework with its CLI and web UI. ## Quick Start Describe the utility task you need, such as asking to create a new CLI, run an eval suite, or parse a URL, and the router will invoke the matching sub-skill workflow.