being-careful

Installation
SKILL.md
Contains Hooks

This skill uses Claude hooks which can execute code automatically in response to events. Review carefully before installing.

Being Careful

Activates session-scoped safety hooks that block dangerous shell commands. Use this when working near production systems, sensitive data, or doing anything where a misfire could cause real damage.

What Gets Blocked

Pattern Why Safe Alternative
rm -rf, rm -f, rm --force Irreversible file deletion trash, targeted rm on specific files
DROP TABLE, TRUNCATE, bulk DELETE FROM Destructive SQL Review and run manually
git push --force, git push -f Overwrites remote history git push --force-with-lease
git reset --hard Discards uncommitted work git stash then reset
git clean -f Deletes untracked files git stash -u
git checkout -- . Discards all working changes Stash or commit first
git branch -D Force-deletes branch git branch -d (safe delete)
kubectl delete, kubectl --force Destroys cluster resources Review and run manually
docker system/volume/container prune Removes all stopped containers/volumes Run manually with filters
Related skills

More from riccardogrin/skills

Installs
3
GitHub Stars
4
First Seen
Apr 4, 2026