Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 17:56:06 +08:00
commit 364da90114
5 changed files with 360 additions and 0 deletions

16
hooks/hooks.json Normal file
View File

@@ -0,0 +1,16 @@
{
"description": "Security reminder hook that warns about potential security issues when editing files",
"hooks": {
"PreToolUse": [
{
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/security_reminder_hook.py"
}
],
"matcher": "Edit|Write|MultiEdit"
}
]
}
}