What problem does it solve? Autonomous agents tend to run away: they judge their own progress, retry forever, and ship unverified work. This Skill turns an outcome into a bounded, evidence-driven loop where every done signal is an executed check and every one-way door requires human approval. ## Core Features & Use Cases - Goal Contract First: Separates the real outcome from requested tactics, constraints, and non-goals, then gets one approval before any code is written. - Bounded Loop Enforcement: The loop_state.py script enforces caps in code (max slice attempts, total iterations, stuck detection) and issues CONTINUE or STOP directives the agent must obey. - Grounded Verification Only: Slices are marked done only by executed checks (real test runs, validators, audits), with evidence receipts required before the goal can be achieved. - Use Case: A user says "add a CSV export button and take it to done." The Skill frames the contract, decomposes it into slices, builds and verifies each against real tests, runs an independent final review, and proposes shipping only after explicit approval. ## Quick Start Ask the agent to run /goal followed by the outcome you want reached end to end, such as driving a feature from request to verified completion.