What problem does it solve? When a captain opens a session with a vague prompt like "let's work on the auth refresh", it is unclear which lifecycle skill should handle the request. This Skill acts as a top-level intent router that classifies the prompt, loads project context when needed, and chains to the correct lifecycle skill without guessing on ambiguous input. ## Core Features & Use Cases - Intent Classification: Maps prompt signals to one of six intents (resume, ad-hoc-code, research, plan, execute, archive) using an exhaustive routing table and disambiguation precedence rules. - Project Context Loading: Invokes /launch-project before project-bound skills like /create-spike, /create-plan, /execute-plan, and /archive-project, with bounded retry on refusal. - Ambiguity Handling: Refuses to auto-route unclear prompts and instead asks the captain a structured clarification listing candidate intents. - Use Case: A captain types "spec the channel registry" — the router classifies this as a plan intent, ensures /launch-project has loaded the project context, then invokes /create-plan with the original prompt verbatim. ## Quick Start Say "let's work on the auth refresh" or any topic-level request without a slash command, and the router will classify your intent and chain to the right lifecycle skill.