From 7814d8981dfcce470db84ddc355b6b2fc320ff3c Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Thu, 25 Dec 2025 21:35:50 -0800 Subject: [PATCH] Update Deacon patrol formula to use bd wisp gc command (gt-psj76.2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The session-gc step was referencing non-existent `gt gc --wisps` command. Updated to use the correct `bd --no-daemon wisp gc` command with examples. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .beads/formulas/mol-deacon-patrol.formula.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.beads/formulas/mol-deacon-patrol.formula.json b/.beads/formulas/mol-deacon-patrol.formula.json index 047fa13e..849a3a14 100644 --- a/.beads/formulas/mol-deacon-patrol.formula.json +++ b/.beads/formulas/mol-deacon-patrol.formula.json @@ -36,7 +36,7 @@ "id": "session-gc", "title": "Clean dead sessions", "needs": ["orphan-check"], - "description": "Clean dead sessions.\n\nGarbage collect terminated sessions:\n- Remove stale polecat directories\n- Clean up wisp session artifacts\n- Prune old logs and temp files\n- Archive completed molecule state\n\n```bash\ngt gc --sessions\ngt gc --wisps --age=1h\n```\n\nPreserve audit trail. Only clean sessions confirmed dead." + "description": "Clean dead sessions.\n\nGarbage collect terminated sessions:\n- Remove stale polecat directories\n- Clean up orphaned wisps\n- Prune old logs and temp files\n- Archive completed molecule state\n\n```bash\n# Clean wisps older than 1 hour (default threshold)\nbd --no-daemon wisp gc\n\n# Or with custom age threshold\nbd --no-daemon wisp gc --age 2h\n\n# Preview what would be cleaned\nbd --no-daemon wisp gc --dry-run\n```\n\nThe `--no-daemon` flag is required when the bd daemon is running, since wisp gc needs direct database access.\n\nPreserve audit trail. Only clean sessions confirmed dead." }, { "id": "context-check",