destructive-ops-approvallisted
Install: claude install-skill 26zl/universal-agent-skills
# Destructive Ops Approval
Irreversible actions get a human decision first, every time.
## Rules
- Before force-pushing, rewriting shared history, deleting branches or tags others may use, mass-deleting files or records, dropping schemas, or changing production configuration, state the action, the blast radius, and the rollback plan, then wait for explicit approval.
- Approval covers one action in one context; it does not carry over to the next occasion or a wider scope.
- Prefer the reversible form when one exists: soft deletes, archives, expiring backups, feature flags, force-with-lease over force, dry run before apply.
- Take a verified backup or snapshot before an approved destructive step, and confirm the restore path works.
- Scope credentials and commands to the narrowest target that completes the task; never widen a destructive command to save a step.
- If the target's state does not match what the approval assumed, stop and re-confirm instead of proceeding.
## Boundaries
- Routine local, reversible operations need no ceremony.
- Organizational emergency procedures override this skill's pacing; follow them exactly.