careful

Monitor and restrict destructive shell commands with bash and grep.

Updated Jun 8, 2026
One-click install
npx skills add https://github.com/reomgit/appstore-ss-downloader --skill careful-reomgit
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: careful
Source: https://github.com/reomgit/appstore-ss-downloader/tree/main/.claude/skills/gstack/careful
Command: npx skills add https://github.com/reomgit/appstore-ss-downloader --skill careful-reomgit

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires bash, grep, and includes scripts (resource) components.

What problem does it solve?

This Skill acts as a safety net for destructive commands, preventing accidental damage to files, databases, and systems.

Core Features & Use Cases

  • Prevent Destructive Commands: Blocks commands like rm -rf, DROP TABLE, git reset --hard, and kubectl delete unless confirmed.
  • Safety Mode: Activates a safety check for all commands, warning before potentially destructive actions.
  • Customizable Exceptions: Allows safe deletion of build artifacts without warnings.

Quick Start

Set up the careful skill and use it to safely delete a directory without risk of accidental deletion of important files.

Frequently Asked Questions about careful

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I prevent accidental deletion when running destructive shell commands like rm -rf?

To prevent accidental deletion from destructive shell commands, you can use a command safety skill that monitors and restricts execution of patterns like rm -rf, requiring confirmation before proceeding.

Can I block destructive git and kubectl operations such as git reset --hard and kubectl delete?

Yes, you can block destructive git and kubectl operations by filtering commands through a bash and grep pattern matching system that intercepts git reset --hard and kubectl delete for confirmation.

How do I set up a safety check for shell commands without blocking build artifact cleanup?

Set up a shell command safety check that supports customizable exceptions, allowing you to safely delete build artifacts without triggering warnings while still restricting other destructive commands.

Do I need bash and grep installed to monitor and restrict destructive command execution?

Yes, you need bash and grep installed to monitor and restrict destructive command execution, as the safety filtering mechanism relies on these dependencies for pattern matching and command interception.

What destructive commands should I guard against in a shell environment?

You should guard against destructive commands in a shell environment including rm -rf, DROP TABLE, git reset --hard, and kubectl delete, all of which can cause irreversible damage to files and databases.