development #345

Merged
lmiranda merged 2 commits from development into main 2026-01-31 19:28:42 +00:00
3 changed files with 21 additions and 26 deletions

View File

@@ -2,12 +2,8 @@
"hooks": { "hooks": {
"SessionStart": [ "SessionStart": [
{ {
"hooks": [ "type": "command",
{ "command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh"
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh"
}
]
} }
], ],
"PreToolUse": [ "PreToolUse": [

View File

@@ -1,16 +1,19 @@
{ {
"hooks": [ "hooks": {
{ "PreToolUse": [
"event": "PreToolUse", {
"matcher": "Bash", "matcher": "Bash",
"type": "command", "hooks": [
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/branch-check.sh" {
}, "type": "command",
{ "command": "${CLAUDE_PLUGIN_ROOT}/hooks/branch-check.sh"
"event": "PreToolUse", },
"matcher": "Bash", {
"type": "command", "type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/commit-msg-check.sh" "command": "${CLAUDE_PLUGIN_ROOT}/hooks/commit-msg-check.sh"
} }
] ]
}
]
}
} }

View File

@@ -2,12 +2,8 @@
"hooks": { "hooks": {
"SessionStart": [ "SessionStart": [
{ {
"hooks": [ "type": "command",
{ "command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh"
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh"
}
]
} }
] ]
} }