Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:40:52 +08:00
commit fedac466b2
14 changed files with 1133 additions and 0 deletions

33
commands/unprotect.md Normal file
View File

@@ -0,0 +1,33 @@
---
description: Remove files or patterns from the protection blacklist
---
# unprotect
Remove protection from files, allowing them to be edited.
## Usage
```bash
/unprotect <pattern>
/unprotect list
```
## Examples
```bash
# Unprotect a file
/unprotect .env.example
# Unprotect directory
/unprotect build/
# Show all protections
/unprotect list
```
## Implementation
```bash
${CLAUDE_PLUGIN_ROOT}/scripts/manage_blacklist.py remove {{pattern}}
```