Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:26:35 +08:00
commit 54e348f7a1
14 changed files with 907 additions and 0 deletions

20
hooks/hooks.json Normal file
View File

@@ -0,0 +1,20 @@
{
"description": "Git workflow confirmation hooks for GitHub operations",
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/git_commit_confirm.py"
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/gh_pr_create_confirm.py"
}
]
}
]
}
}