Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 17:57:48 +08:00
commit 70dd319c2b
8 changed files with 1638 additions and 0 deletions

21
hooks/hooks.json Normal file
View File

@@ -0,0 +1,21 @@
{
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit|MultiEdit",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/typescript-validator.py",
"description": "Validate TypeScript code"
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/import-organizer.py",
"description": "Organize imports automatically"
}
]
}
]
}
}