npx claudepluginhub masseater/claude-code-plugin --plugin sddDefined in hooks/hooks.json
{
"PreToolUse": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/entry/block-archived-edit.ts"
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/entry/require-phase-status.ts"
}
],
"matcher": "Write|Edit"
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "cd ${CLAUDE_PLUGIN_ROOT} && bun install --production 2>/dev/null || true"
}
]
}
]
}"Intercepts PreToolUse on Edit tools with message to use edit_file or edit_symbol instead, avoiding prior file reads. Runs Node.js script on SessionStart for startup/clear/compact. Involves file writes."