Install
1
Install the plugin$
npx claudepluginhub troykelly/claude-skills --plugin issue-driven-developmentWant just this hook?
Then install: npx claudepluginhub u/[userId]/[slug]
Risk Indicators
Executes bash commandsModifies files
Source
Defined in hooks/hooks.json
Configuration
{
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/plan-limit-account-switch.sh",
"timeout": 15
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/check-ci-before-stop.sh",
"timeout": 30
},
{
"type": "prompt",
"prompt": "Stop checklist: CI complete for session PRs, review artifact posted, no unaddressed findings."
}
]
}
],
"PreToolUse": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/validate-pr-creation.sh",
"timeout": 30
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/validate-local-testing.sh",
"timeout": 30
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/validate-pr-merge.sh",
"timeout": 30
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/validate-tests-pass.sh",
"timeout": 10
}
],
"matcher": "Bash"
},
{
"hooks": [
{
"type": "prompt",
"prompt": "PR checklist: tests pass locally, review completed, docs updated if needed."
}
],
"matcher": "mcp__github__create_pull_request"
},
{
"hooks": [
{
"type": "prompt",
"prompt": "Merge checklist: CI green (`gh pr checks`), approved/reviewed, no blocking comments."
}
],
"matcher": "mcp__github__merge_pull_request"
}
],
"PostToolUse": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/security-scan.sh",
"timeout": 10
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/validate-generated-artifacts.sh",
"timeout": 15
}
],
"matcher": "Edit|Write"
},
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/track-test-results.sh",
"timeout": 5
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/post-pr-creation.sh",
"timeout": 10
}
],
"matcher": "Bash"
},
{
"hooks": [
{
"type": "prompt",
"prompt": "PR created. Next: `gh pr checks [PR] --watch` → fix or merge → next issue. Do not stop."
}
],
"matcher": "mcp__github__create_pull_request"
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/session-start.sh",
"timeout": 60
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/check-orchestration-sleep.sh",
"timeout": 30
}
],
"matcher": "*"
}
]
}Summary
{
"riskFlags": {
"touchesBash": true,
"matchAllTools": false,
"touchesFileWrites": true
},
"typeStats": {
"prompt": 4,
"command": 12
},
"eventStats": {
"Stop": 3,
"PreToolUse": 6,
"PostToolUse": 5,
"SessionStart": 2
},
"originCounts": {
"absolutePaths": 0,
"pluginScripts": 12,
"projectScripts": 0
},
"timeoutStats": {
"commandsWithoutTimeout": 0
}
}Stats
Stars3
Forks0
Last CommitJan 12, 2026