npx claudepluginhub artmin96/forge-studio --plugin evaluatorDefined in hooks/hooks.json
{
"PreToolUse": [
{
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/pre-commit-reminder.sh",
"timeout": 5
}
],
"matcher": "Bash"
}
],
"PostToolUse": [
{
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/php-static-analysis.sh",
"timeout": 30
}
],
"matcher": "Write|Edit"
},
{
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/js-static-analysis.sh",
"timeout": 30
}
],
"matcher": "Write|Edit"
}
]
}"Runs guardrails.py before Bash tool use (PreToolUse matcher, can block unsafe commands). Runs agent-validator.py after Write/Edit (PostToolUse). Handles bash execution and file writes."