From 0b68c0a798082132875848ddee7549f76288860d Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Wed, 11 Mar 2026 15:56:03 -0700 Subject: [PATCH] fix: remove Conductor dependency from SKILL.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use plain text ask + wait instead of mcp__conductor__AskUserQuestion. Makes the skill portable — works with any Claude Code setup, no MCP needed. Co-Authored-By: Claude Opus 4.6 --- SKILL.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SKILL.md b/SKILL.md index 3d0b50d3..f685b607 100644 --- a/SKILL.md +++ b/SKILL.md @@ -10,7 +10,7 @@ description: | allowed-tools: - Bash - Read - - mcp__conductor__AskUserQuestion + --- # Browse v2: Persistent Browser for Claude Code @@ -27,8 +27,8 @@ test -x ~/.claude/skills/gstack-browse/dist/browse && echo "READY" || echo "NEED ``` If `NEEDS_SETUP`: -1. Use `mcp__conductor__AskUserQuestion` to ask: "gstack-browse needs a one-time setup (bun install + compile CLI). This takes ~10 seconds. OK to proceed?" -2. If approved, run: +1. Tell the user: "gstack-browse needs a one-time setup (bun install + compile CLI binary). This takes ~10 seconds. OK to proceed?" Then STOP and wait for their response. +2. If they approve, run: ```bash cd ~/.claude/skills/gstack-browse && bun install && bun run build ```