What problem does it solve? AI agents and developers can accidentally run destructive commands like rm -rf, DROP TABLE, or git push --force, causing irreversible data loss or production outages. This Skill adds a safety checkpoint that warns before such commands execute. ## Core Features & Use Cases - Destructive Command Detection: A PreToolUse hook scans every Bash command for dangerous patterns including recursive deletes, SQL DROP/TRUNCATE, git force-push, git reset --hard, kubectl delete, and docker prune. - Safe Exceptions: Routine cleanup of build artifacts like node_modules, dist, .next, and pycache passes through without warnings. - User Override: Each warning returns an "ask" permission decision, so you can review the risk and choose to proceed or cancel. - Use Case: While debugging a live production issue, activate safety mode so any kubectl delete or force-push suggested by the agent triggers a confirmation prompt instead of executing immediately. ## Quick Start Ask the agent to enable careful mode with a phrase like "be careful" or "safety mode" before running commands in a production environment.