From a2306fc928721197b36fd4b9a3d34d5b4cd92cba Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Sat, 27 Dec 2025 00:31:47 -0800 Subject: [PATCH] revert: Keep bd wisp/pour until v0.38.0 - API not released yet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 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 +- internal/doctor/wisp_check.go | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/internal/cmd/patrol_helpers.go b/internal/cmd/patrol_helpers.go index c74aa2ee..bf8c5f8e 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", "mol", "wisp", "create", protoID, "--actor", cfg.RoleName) + cmdSpawn := exec.Command("bd", "--no-daemon", "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 e12c0aec..6c66deef 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{"mol", "wisp", formulaName} + wispArgs := []string{"wisp", formulaName} for _, v := range slingVars { wispArgs = append(wispArgs, "--var", v) } diff --git a/internal/doctor/wisp_check.go b/internal/doctor/wisp_check.go index b96445e7..95e7d750 100644 --- a/internal/doctor/wisp_check.go +++ b/internal/doctor/wisp_check.go @@ -124,15 +124,15 @@ func (c *WispGCCheck) countAbandonedWisps(rigPath string) int { return count } -// Fix runs bd mol wisp gc in each rig with abandoned wisps. +// Fix runs bd wisp gc in each rig with abandoned wisps. func (c *WispGCCheck) Fix(ctx *CheckContext) error { var lastErr error for rigName := range c.abandonedRigs { rigPath := filepath.Join(ctx.TownRoot, rigName) - // Run bd --no-daemon mol wisp gc - cmd := exec.Command("bd", "--no-daemon", "mol", "wisp", "gc") + // Run bd --no-daemon wisp gc + cmd := exec.Command("bd", "--no-daemon", "wisp", "gc") cmd.Dir = rigPath if output, err := cmd.CombinedOutput(); err != nil { lastErr = fmt.Errorf("%s: %v (%s)", rigName, err, string(output))