From 5d774b7d144e80de73c697f9437e0cc2e53b9496 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Fri, 26 Dec 2025 23:51:30 -0800 Subject: [PATCH] fix: Update remaining bd wisp calls to bd mol wisp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Missed patrol_helpers.go and sling.go in initial refactor. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- internal/cmd/patrol_helpers.go | 2 +- internal/cmd/sling.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/cmd/patrol_helpers.go b/internal/cmd/patrol_helpers.go index bf8c5f8e..c74aa2ee 100644 --- a/internal/cmd/patrol_helpers.go +++ b/internal/cmd/patrol_helpers.go @@ -117,7 +117,7 @@ func autoSpawnPatrol(cfg PatrolConfig) (string, error) { } // Create the patrol wisp - cmdSpawn := exec.Command("bd", "--no-daemon", "wisp", "create", protoID, "--actor", cfg.RoleName) + cmdSpawn := exec.Command("bd", "--no-daemon", "mol", "wisp", "create", protoID, "--actor", cfg.RoleName) cmdSpawn.Dir = cfg.BeadsDir var stdoutSpawn, stderrSpawn bytes.Buffer cmdSpawn.Stdout = &stdoutSpawn diff --git a/internal/cmd/sling.go b/internal/cmd/sling.go index 6c66deef..e12c0aec 100644 --- a/internal/cmd/sling.go +++ b/internal/cmd/sling.go @@ -567,7 +567,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) }