npx claudepluginhub b-open-io/claude-plugins --plugin bopen-toolsDefined in hooks/hooks.json
{
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/hammertime.py",
"timeout": 15
}
],
"matcher": "*"
}
],
"PreToolUse": [
{
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/bouncer.sh",
"timeout": 5
},
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/damage-control.sh",
"timeout": 5
},
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/publish-gate.sh",
"timeout": 10
}
],
"matcher": "Bash"
},
{
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/damage-control.sh",
"timeout": 5
}
],
"matcher": "Write|Edit|MultiEdit|Read"
},
{
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/agent-browser-solo.sh",
"timeout": 30
}
],
"matcher": "WebSearch|WebFetch"
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/session-context.sh",
"timeout": 5
}
]
}
]
}"Enforces Docker-first workflow via PreToolUse guards on Bash (docker-first-guard, pre-push-test) and Edit/Write (docker-first-edit-guard) tools, plus SessionStart init and Stop tests using bash scripts. Touches files."