Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:00:29 +08:00
commit 22f0b630e6
8 changed files with 143 additions and 0 deletions

25
hooks/hooks.json.example Normal file
View File

@@ -0,0 +1,25 @@
{
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "echo 'Plugin PLUGIN_NAME loaded'"
}
]
}
],
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/example-hook.sh"
}
]
}
]
}
}