From 5803103e71abe7d7ec3d7d66d4983e7e9026765c Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Wed, 24 Dec 2025 22:55:57 -0800 Subject: [PATCH] gt spawn: fix proto ID for mol-polecat-work (gt-lwuu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The proto ID is gt-lwuu, not mol-polecat-work. bd mol run looks up by ID, not title. Updated spawn to use correct proto ID. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- internal/cmd/spawn.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/cmd/spawn.go b/internal/cmd/spawn.go index d1a7309d..69a719fc 100644 --- a/internal/cmd/spawn.go +++ b/internal/cmd/spawn.go @@ -102,8 +102,9 @@ func runSpawn(cmd *cobra.Command, args []string) error { // Auto-use mol-polecat-work for issue-based spawns (Phase 3: Polecat Work Cycle) // This gives polecats a structured workflow with checkpoints for crash recovery. // Can be overridden with explicit --molecule flag. + // Note: gt-lwuu is the proto ID for mol-polecat-work if spawnIssue != "" && spawnMolecule == "" { - spawnMolecule = "mol-polecat-work" + spawnMolecule = "gt-lwuu" } // Find workspace first (needed for rig inference)