Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 09:06:07 +08:00
commit 2b8473662a
13 changed files with 1734 additions and 0 deletions

39
hooks/hooks.json Normal file
View File

@@ -0,0 +1,39 @@
{
"hooks": {
"SessionStart": [
{
"matcher": "startup",
"hooks": [
{
"type": "command",
"command": "uv run \"${CLAUDE_PLUGIN_ROOT}/scripts/setup_standards.py\""
}
]
}
],
"PostToolUse": [
{
"matcher": "Edit|Write|MultiEdit",
"hooks": [
{
"type": "command",
"command": "uv run \"${CLAUDE_PLUGIN_ROOT}/scripts/ruff_checker.py\"",
"timeout": 30
}
]
}
],
"UserPromptSubmit": [
{
"matcher": ".*",
"hooks": [
{
"type": "command",
"command": "uv run \"${CLAUDE_PLUGIN_ROOT}/scripts/init_project.py\"",
"timeout": 10
}
]
}
]
}
}