Our review
Deletes a registered runbook from the .claude/runbooks.json file after user confirmation.
Strengths
- Prevents accidental deletion by requiring explicit confirmation.
- Displays runbook details before deletion for verification.
- Handles missing runbooks by listing available ones.
- Maintains valid JSON structure even after deleting the last runbook.
Limitations
- Only works with runbooks already registered in the file, cannot remove unregistered ones.
- No batch deletion or pattern-based removal support.
When you need to clean up your runbook collection by removing an outdated or unused runbook.
If you only want to temporarily disable a runbook, use a disable command instead.
Security analysis
SafeThe skill only reads and writes a local configuration file (.claude/runbooks.json) to remove a runbook entry. It does not execute any shell commands, network operations, or handle sensitive data. No risk of destruction, exfiltration, or obfuscation is present.
No concerns found
Examples
/runbook-delete auto-commit/runbook-deletename: runbook-delete description: Delete a registered runbook by name from .claude/runbooks.json
Delete Runbook
You are removing a registered runbook from .claude/runbooks.json.
Instructions
-
Parse arguments:
/runbook-delete <runbook-name>- If no name provided, read
.claude/runbooks.jsonand ask which runbook to delete
- If no name provided, read
-
Read
.claude/runbooks.jsonand find the named runbook- If not found, list available runbooks
-
Confirm with the user before deleting:
Delete runbook "auto-commit"? Trigger: task_complete Mode: auto Actions: 1. git add -A 2. git commit -m "{{task_description}}" 3. git push -
Remove the runbook from the JSON object
-
Write the updated file back to
.claude/runbooks.json -
Confirm deletion:
Runbook "auto-commit" deleted.
Notes
- Always confirm before deleting — this cannot be undone
- If deleting the last runbook, keep the file with
{ "runbooks": {} }rather than removing it
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.