What problem does it solve? Autonomous agents and production work carry the risk of destructive operations like rm -rf, force pushes, or dropped tables. This Skill intercepts dangerous commands before execution and confines file edits to approved directories. ## Core Features & Use Cases - Careful Mode: Detects destructive patterns (rm -rf, git push --force, DROP TABLE, kubectl delete, chmod 777) and asks for confirmation with safer alternatives. - Freeze Mode: Locks Write/Edit operations to a specific directory tree so agents cannot touch unrelated code. - Guard Mode: Combines both protections for maximum safety during full-auto agent runs, with all blocked actions logged to ~/.claude/safety-guard.log. - Use Case: Before letting an agent run autonomously on a production repository, activate Guard Mode scoped to src/api/ so the agent can read everything but only write to that directory while destructive commands are blocked everywhere. ## Quick Start Enable safety guard in guard mode restricted to the src/api directory before running this agent autonomously.