npx claudepluginhub ligphidonk/oh-my--paper --plugin ompDefined in hooks/hooks.json
{
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/on-task-complete.mjs\"",
"timeout": 15
}
]
}
],
"PostToolUse": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/on-stage-transition.mjs\"",
"timeout": 10
}
],
"matcher": "Write"
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/on-session-start.mjs\"",
"timeout": 10
}
]
}
]
}"Runs Node.js scripts on SessionStart to init, PostToolUse (Write matcher) for stage transitions after file writes, and Stop for task completion. Involves file writes."