Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 17:54:59 +08:00
commit b67d305eb7
12 changed files with 959 additions and 0 deletions

39
hooks/hooks.json Normal file
View File

@@ -0,0 +1,39 @@
{
"hooks": {
"SessionStart": [
{
"description": "Check Nights Watch daemon status on session start",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/check-daemon-status.sh"
}
]
}
],
"SessionEnd": [
{
"description": "Optionally prompt to start daemon on session end",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/session-end-prompt.sh"
}
]
}
],
"PostToolUse": [
{
"matcher": "Write|Edit",
"description": "Log significant file modifications for task tracking",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/log-file-changes.sh"
}
]
}
]
}
}