database-safety
Installation
SKILL.md
Database Safety
CRITICAL: Database operations can be irreversible. This skill prevents data catastrophes.
Danger Levels
| Level | Operations | Requires |
|---|---|---|
| ⛔ CRITICAL | DROP DATABASE, DROP TABLE, TRUNCATE | Backup + explicit confirmation |
| 🔴 HIGH | DELETE without WHERE, UPDATE without WHERE | Explicit confirmation + scope verification |
| 🟠 MEDIUM | DELETE with WHERE, UPDATE with WHERE | Scope verification + preview |
| 🟢 LOW | SELECT, INSERT, CREATE | Standard execution |
Pre-Operation Protocol
Before ANY Data Modification
Step 1: Identify the scope
Related skills