fix: invoke .sh hooks via bash prefix (fixes #993)
@@ -1,5 +1,6 @@
{
"name": "explanatory-output-style",
+ "version": "1.0.0",
"description": "Adds educational insights about implementation choices and codebase patterns (mimics the deprecated Explanatory output style)",
"author": {
"name": "Anthropic",
@@ -6,7 +6,7 @@
"hooks": [
"type": "command",
- "command": "${CLAUDE_PLUGIN_ROOT}/hooks-handlers/session-start.sh"
+ "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks-handlers/session-start.sh\""
}
]
"name": "learning-output-style",
"description": "Interactive learning mode that requests meaningful code contributions at decision points (mimics the unshipped Learning output style)",
"name": "ralph-loop",
"description": "Continuous self-referential AI loops for interactive iterative development, implementing the Ralph Wiggum technique. Run Claude in a while-true loop with the same prompt until task completion.",
- "command": "${CLAUDE_PLUGIN_ROOT}/hooks/stop-hook.sh"
+ "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/stop-hook.sh\""