What problem does it solve? Accidentally running destructive commands like rm -rf, DROP TABLE, or git push --force can cause irreversible data loss, especially in production or shared environments. This Skill adds a safety checkpoint that warns you before such commands execute. ## Core Features & Use Cases - Destructive Command Detection: Scans every bash command for dangerous patterns including rm -rf, DROP TABLE, TRUNCATE, git push --force, git reset --hard, kubectl delete, and docker system prune. - Confirmation Prompts: Returns an ask-permission decision with a warning message when a risky pattern is found, letting you proceed or cancel. - Safe Exceptions: Allows routine cleanup of node_modules, .next, dist, build, coverage, and similar build artifacts without warnings. - Use Case: While debugging a live production issue, activate careful mode so any accidental kubectl delete or force-push triggers a confirmation prompt instead of executing immediately. ## Quick Start Ask the assistant to enable careful mode so every destructive bash command requires your confirmation before running.