From 7eb3892b9abb043779d04920f0ddb31359f02d8a Mon Sep 17 00:00:00 2001 From: Jialin Liu Date: Sat, 30 May 2026 16:41:09 -0400 Subject: [PATCH] fix: restore executable bit on suggest.sh Stop hook suggest.sh shipped with mode 100644 (no execute bit) in 53bf15a. Claude Code invokes Stop hooks as direct commands, so the missing +x makes the hook fail with "permission denied" (exit 126) and surfaces a "Stop hook error occurred" banner after every turn. Restore mode 100755 to match the other hook scripts (react.sh, buddy-comment.sh, name-react.sh, etc.). --- hooks/suggest.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 hooks/suggest.sh diff --git a/hooks/suggest.sh b/hooks/suggest.sh old mode 100644 new mode 100755