What problem does it solve? Coordinating multiple autonomous AI agents (coding CLIs, social connectors) requires knowing which agent handles which task; this Skill acts as a parent routing index that validates requests against an IO contract and delegates them to the correct sub-skill without duplicating execution logic. ## Core Features & Use Cases - Sub-skill routing index: Maintains a registry of six sub-skills (ai-outreach, claude-code, codex, hermes-agent, moltbook-connector, opencode) discoverable via the Hermes skill loading mechanism. - Contract-validated delegation: Checks input types, ranges, and formats against the IO contract before delegating, rejecting unknown sub-skills or empty requests with contextual recovery hints. - Golden test set: Ships executable routing test cases covering normal delegation and error paths (unknown sub-skill, contract violation). - Use Case: A user asks to fix a bug with Claude Code; the parent skill validates the request, routes to the claude-code sub-skill, and never executes coding logic itself. ## Quick Start Ask the agent to handle a coding or outreach task and it will validate the request and delegate it to the matching sub-skill such as codex, claude-code, or ai-outreach.