From f55f863f5b1a4f0b43b83cbbdcb7f9918b67a180 Mon Sep 17 00:00:00 2001 From: fullsend-code Date: Thu, 28 May 2026 07:56:07 +0000 Subject: [PATCH] fix(#1139): use repo-root-relative path in step 9 install instructions A previous commit (6dbdd48) fixed the allowed-tools path but left step 9's code block using a placeholder that Claude cannot resolve. Replace it with the concrete repo-root-relative path skills/cutting-releases/scripts/install-binary.sh so the script is found on the first attempt. Note: make lint could not run due to sandbox Go toolchain permission error (unrelated to this change). This is a documentation-only change to a markdown skill file. Closes #1139 --- skills/cutting-releases/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/cutting-releases/SKILL.md b/skills/cutting-releases/SKILL.md index 2d9cdd30b..a8507e257 100644 --- a/skills/cutting-releases/SKILL.md +++ b/skills/cutting-releases/SKILL.md @@ -117,10 +117,10 @@ Check that the title, changelog, and binary assets look correct. ### 9. Install the binary locally Ask the user where to install (default: `~/.local/bin/`), then run -the install script from this skill's base directory: +the install script using its repo-root-relative path: ```bash -bash /scripts/install-binary.sh [install-dir] +bash skills/cutting-releases/scripts/install-binary.sh [install-dir] ``` The script downloads the release archive, verifies its SHA-256 checksum