Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:40:38 +08:00
commit a117466db1
4 changed files with 86 additions and 0 deletions

27
hooks/hook.json Normal file
View File

@@ -0,0 +1,27 @@
{
"hooks": {
"SessionStart": [
{
"matcher": "startup|resume",
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/mgrep_watch.py",
"timeout": 10
}
]
}
],
"SessionEnd": [
{
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/mgrep_watch_kill.py",
"timeout": 10
}
]
}
]
}
}