👁️
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

tweak hook language to avoid hook based go ahead issues

+2 -2
+1 -1
.claude/hooks/stop-test.sh
··· 19 19 cat <<EOF 20 20 { 21 21 "decision": "block", 22 - "reason": "${escaped}\n\n[Stop Hook] Tests failed. Assess whether these failures are related to changes you made this session - if not, mention them to the user and stop." 22 + "reason": "${escaped}\n\n[Stop Hook] Tests failed. If failures are from your changes, fix them. If unrelated (might be caused by another instance of Claude Code), mention them and stop. If you already asked the user a question that determines how to fix this, wait for their answer." 23 23 } 24 24 EOF 25 25 exit 2
+1 -1
.claude/hooks/stop-typecheck.sh
··· 19 19 cat <<EOF 20 20 { 21 21 "decision": "block", 22 - "reason": "${escaped}\n\n[Stop Hook] Typecheck failed. Assess whether these errors are related to changes you made this session - if not, mention them to the user and stop." 22 + "reason": "${escaped}\n\n[Stop Hook] Typecheck failed. If errors are from your changes, fix them. If unrelated (might be caused by another instance of Claude Code), mention them and stop. If you already asked the user a question that determines how to fix this, wait for their answer." 23 23 } 24 24 EOF 25 25 exit 2