From f44223abc8eba4c9c3135053b3155bd367b8ae02 Mon Sep 17 00:00:00 2001 From: jinon86 Date: Tue, 7 Jul 2026 04:43:34 +0900 Subject: [PATCH] =?UTF-8?q?fix(setup):=20install=20distill/resume-write.sh?= =?UTF-8?q?=20=E2=80=94=20missing=20from=20hook=20copy=20list?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit distill.sh calls hooks/distill/resume-write.sh at every PreCompact/SessionEnd (resume continuity lane), but setup.sh never copied it into ~/.claude, so every node installed via setup.sh logged "resume-write non-zero" (No such file) and ~/.claude/state/resume.md was never written. Result: the SessionStart "직전 세션에서 이어서" injection block stayed empty fleet-wide (verified live on dungae and daegyo; both repaired manually pending this fix). Co-Authored-By: Claude Fable 5 --- setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.sh b/setup.sh index 067b1bc..3205919 100755 --- a/setup.sh +++ b/setup.sh @@ -162,6 +162,7 @@ run "cp '$SRC/claude/hooks/distill/honcho-push.sh' '$CLAUDE_DIR/hooks/distill/ho run "cp '$SRC/claude/hooks/distill/wiki-queue.sh' '$CLAUDE_DIR/hooks/distill/wiki-queue.sh'" run "cp '$SRC/claude/hooks/distill/queue-drain.sh' '$CLAUDE_DIR/hooks/distill/queue-drain.sh'" run "cp '$SRC/claude/hooks/distill/local-facts.sh' '$CLAUDE_DIR/hooks/distill/local-facts.sh'" +run "cp '$SRC/claude/hooks/distill/resume-write.sh' '$CLAUDE_DIR/hooks/distill/resume-write.sh'" # Skill Review — Hermes-style background skill draft staging (human-approved). run "cp '$SRC/claude/hooks/skill-review.sh' '$CLAUDE_DIR/hooks/skill-review.sh'" run "mkdir -p '$CLAUDE_DIR/hooks/skill-review'"