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: 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: Allows routine cleanup of build artifacts like node_modules, dist, .next, pycache, and coverage without triggering warnings. - User Override: Returns an "ask" permission decision so you can review the warning and choose to proceed or cancel. - Use Case: While debugging a live production system, you ask the agent to clean up old files. When it attempts rm -rf /var/data, the hook intercepts the command and warns you before anything is deleted. ## Quick Start Ask the agent to enable careful mode before running shell commands against a production environment.