Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:25:17 +08:00
commit 79f1b94292
7 changed files with 369 additions and 0 deletions

16
hooks/hooks.json Normal file
View File

@@ -0,0 +1,16 @@
{
"description": "Automatic code review after Edit or Write operations",
"hooks": {
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/dist/review.js"
}
]
}
]
}
}