From 19db9d685de460e478087e4ec9adf973f812b742 Mon Sep 17 00:00:00 2001 From: beads/polecats/jade Date: Tue, 30 Dec 2025 22:06:11 -0800 Subject: [PATCH] fix: gt sling uses bd mol wisp instead of bd wisp (bd-hp8g) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The runSlingFormula function was calling bd wisp which does not exist. The correct command is bd mol wisp for creating ephemeral molecules. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- internal/cmd/sling.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/sling.go b/internal/cmd/sling.go index c40a0d4f..718720b1 100644 --- a/internal/cmd/sling.go +++ b/internal/cmd/sling.go @@ -713,7 +713,7 @@ func runSlingFormula(args []string) error { // Step 2: Create wisp instance (ephemeral) fmt.Printf(" Creating wisp...\n") - wispArgs := []string{"wisp", formulaName} + wispArgs := []string{"mol", "wisp", formulaName} for _, v := range slingVars { wispArgs = append(wispArgs, "--var", v) }