askill
safe-file-deletion

safe-file-deletionSafety 95Repository

Enforces explicit user permission before any file deletion. Activates when you're about to use rm, unlink, fs.rm, or any operation that removes files from disk. MUST be followed for all delete operations.

2 stars
1.2k downloads
Updated 2/3/2026

Package Files

Loading files...
SKILL.md

Safe File Deletion

Rule

Before deleting ANY file, you MUST:

  1. Call request_file_permission with operation: "delete"
  2. For multiple files, use filePaths array (not multiple calls)
  3. Wait for response
  4. Only proceed if "allowed"
  5. If "denied", acknowledge and do NOT delete

Applies To

  • rm commands (single or multiple files)
  • rm -rf (directories)
  • unlink, fs.rm, fs.rmdir
  • Any script or tool that deletes files

Examples

Single file:

{
  "operation": "delete",
  "filePath": "/path/to/file.txt"
}

Multiple files (batched into one prompt):

{
  "operation": "delete",
  "filePaths": ["/path/to/file1.txt", "/path/to/file2.txt"]
}

No Workarounds

Never bypass deletion warnings by:

  • Emptying files instead of deleting
  • Moving to hidden/temp locations
  • Using obscure commands

The user will see a prominent warning. Wait for explicit approval.

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

82/100Analyzed 2/22/2026

Well-structured safety skill with clear steps, examples, and explicit rules. High actionability and clarity. Tightly coupled to noworries_app's specific permission API, reducing general reusability. Located in dedicated skills folder which is good structure. The skill effectively prevents accidental file deletion but would need adaptation for other contexts.

95
90
55
70
90

Metadata

Licenseunknown
Version-
Updated2/3/2026
Publisherhlbbbbbbb

Tags

prompting