What problem does it solve? Agents that pause to ask "should I do X?" on every reversible decision stall the pipeline and make the human the bottleneck. This Skill establishes an operating principle: proceed on reversible work, present the result, and let the human course-correct asynchronously. ## Core Features & Use Cases - Proceed-Then-Present Pattern: Do the work first, show the result, and explain the reasoning instead of asking for permission upfront. - Clear Boundaries: Distinguishes reversible actions (write code, edit notes, split tasks) from irreversible ones (force-push, delete production data, send external messages) that still require confirmation. - Async Supervision Design: Frames human review as an after-the-fact activity over plans, diffs, and changes rather than a synchronous gate. - Use Case: An agent running parallel coding tasks in a multiplexer like Rove keeps executing task splits and code edits without waiting, while the human reviews diffs later on their own schedule. ## Quick Start Apply this principle by proceeding with the reversible task at hand and presenting the finished result for review instead of asking for confirmation first.