Executes automated bash commands and file modifications before, during, and after Claude tool usage across seven key events.
npx claudepluginhub mnthe/hardworker-marketplaceDefined in hooks/hooks.json
{
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/stop-hook.js"
}
],
"matcher": "*"
}
],
"PreToolUse": [
{
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/agent-lifecycle-tracking.js"
}
],
"matcher": "*"
},
{
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/gate-enforcement.js"
}
],
"matcher": "Edit|Write|Bash"
}
],
"PostToolUse": [
{
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/post-tool-use-evidence.js"
}
],
"matcher": "*"
},
{
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/gate-status-notification.js"
}
],
"matcher": "Task"
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/session-start-hook.js"
}
],
"matcher": "*"
},
{
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/compact-recovery-hook.js"
}
],
"matcher": "compact"
}
],
"SubagentStop": [
{
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/subagent-stop-tracking.js"
}
],
"matcher": "*"
}
],
"SubagentStart": [
{
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/subagent-start-tracking.js"
}
],
"matcher": "ultrawork:.*"
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/keyword-detector.js"
},
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/src/hooks/session-context-hook.js"
}
],
"matcher": "*"
}
]
}{
"riskFlags": {
"touchesBash": true,
"matchAllTools": true,
"touchesFileWrites": true
},
"typeStats": {
"command": 11
},
"eventStats": {
"Stop": 1,
"PreToolUse": 2,
"PostToolUse": 2,
"SessionStart": 2,
"SubagentStop": 1,
"SubagentStart": 1,
"UserPromptSubmit": 2
},
"originCounts": {
"absolutePaths": 0,
"pluginScripts": 11,
"projectScripts": 0
},
"timeoutStats": {
"commandsWithoutTimeout": 11
}
}