What problem does it solve? Agents working in the Bubbles framework often do not know which governance policy module applies to their current task, leading to eager-loading of 14k+ lines of shared policy or missed enforcement rules. This Skill routes any situation to the right policy skill on demand. ## Core Features & Use Cases - Situation-to-Skill Mapping: A lookup table maps common agent actions (marking DoD items, citing paths, transitioning status, writing tests) to the correct Bubbles skill such as bubbles-anti-fabrication or bubbles-claim-grounding. - Lazy Policy Loading: Replaces bulk-loading of agents/bubbles_shared/*.md with on-demand skill loading driven by what the agent is about to do. - Governance Routing: Points agents to the authoritative modules, enforcement scripts, and workflow configuration where the actual enforceable rules live. - Use Case: An agent about to mark a Definition-of-Done item complete consults this Skill, is routed to bubbles-anti-fabrication and bubbles-evidence-capture, and loads only those policies instead of the entire shared module set. ## Quick Start Ask which Bubbles policy skill applies before starting your current task, then load the mapped skill it returns.