What problem does it solve? High-stakes operations like production database migrations, destructive git commands, or edits to frozen-zone files carry irreversible risk when executed at normal speed. This Skill adds a slow-down mode that forces explicit confirmation, stated rollback paths, and audit logging before every mutation. ## Core Features & Use Cases - Per-Mutation Confirmation: Every Edit and state-changing Bash command is shown in full and requires operator approval before execution, while read-only commands run freely. - Rollback Planning: Before any mutation, the exact undo command is stated (e.g., git checkout HEAD -- <file>, migration down), so recovery is never improvised. - Audit Logging: Each confirmed mutation is logged to .claude/runtime/audit/careful-mode.jsonl via a unified audit writer, creating a traceable record. - Use Case: Before merging a billing refactor to main with a production deploy following, run /li:careful --for /li:ship so every step of the ship workflow requires confirmation and logs a rollback path. ## Quick Start Ask the agent to enable careful mode with a stated reason before running a production database migration, so each mutation requires confirmation and a named rollback command.