Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:25:43 +08:00
commit 1111c916df
9 changed files with 974 additions and 0 deletions

17
hooks/hooks.json Normal file
View File

@@ -0,0 +1,17 @@
{
"description": "Changelog validation before commits",
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/check-changelog-before-commit.py",
"timeout": 5
}
]
}
]
}
}