From 0f7b42f993a4462297ba3be5d7b53853e75fb6b6 Mon Sep 17 00:00:00 2001 From: Anish C Date: Sat, 28 Mar 2026 16:21:44 +0100 Subject: [PATCH] fix: --local install creates missing gstack/ symlink so skill resolution works --- setup | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup b/setup index e624ecf82..5135aea12 100755 --- a/setup +++ b/setup @@ -87,6 +87,9 @@ if [ "$LOCAL_INSTALL" -eq 1 ]; then fi INSTALL_SKILLS_DIR="$(pwd)/.claude/skills" mkdir -p "$INSTALL_SKILLS_DIR" + # Per-skill symlinks point at gstack/, so create a gstack/ symlink + # back to the repo root so the chain resolves (e.g. qa -> gstack/qa -> repo/qa) + ln -snf "$SOURCE_GSTACK_DIR" "$INSTALL_SKILLS_DIR/gstack" HOST="claude" INSTALL_CODEX=0 fi