Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:44:32 +08:00
commit ac3be16d17
6 changed files with 95 additions and 0 deletions

14
hooks/hooks.json Normal file
View File

@@ -0,0 +1,14 @@
{
"hooks": [
{
"event": "PreToolUse",
"command": "echo 'About to use tool: ${TOOL_NAME}'",
"description": "Log before tool execution"
},
{
"event": "PostToolUse",
"command": "echo 'Finished using tool: ${TOOL_NAME}'",
"description": "Log after tool execution"
}
]
}