npx claudepluginhub arthtech-ai/arthai-marketplace --plugin forgeDefined in hooks/hooks.json
{
"PostToolUse": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/post-test-summary.sh",
"timeout": 5
}
],
"matcher": "Bash"
},
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/escalation-guard.sh",
"timeout": 5
}
],
"matcher": "Bash"
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/project-setup.sh",
"timeout": 10
}
],
"matcher": ""
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/project-setup.sh",
"timeout": 5
}
],
"matcher": ""
},
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/triage-router.sh",
"timeout": 5
}
],
"matcher": ""
}
]
}"Runs bash project-setup.sh on SessionStart and UserPromptSubmit. On PostToolUse for Bash tools, executes post-test-summary.sh and post-diff-test-compare.sh. Bash execution, no file writes."