From d28ba6e2c68ad792029271c0d3ec2d42ff9f9aa1 Mon Sep 17 00:00:00 2001 From: gastown/polecats/slit Date: Tue, 30 Dec 2025 22:45:52 -0800 Subject: [PATCH] mol-sync-workspace: Add gt/bd prime to assess-state step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds explicit priming commands at the start of workspace assessment: - gt prime: Load gt/mol context - bd prime: Load beads context Critical for fresh sessions, post-compaction, or context clear scenarios. Also updates exit criteria to reflect priming requirement. (gt-0xhuz) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .beads/formulas/mol-sync-workspace.formula.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.beads/formulas/mol-sync-workspace.formula.toml b/.beads/formulas/mol-sync-workspace.formula.toml index 8a691c95..b63027b9 100644 --- a/.beads/formulas/mol-sync-workspace.formula.toml +++ b/.beads/formulas/mol-sync-workspace.formula.toml @@ -52,6 +52,14 @@ title = "Assess current workspace state" description = """ Capture current state before any changes. +**0. Prime context (critical for fresh sessions):** +```bash +gt prime # Load gt/mol context +bd prime # Load beads context +``` +These ensure the agent has full system context, especially after session +start, compaction, or context clear. + **1. Check git status:** ```bash git status --porcelain @@ -73,7 +81,7 @@ bd sync --status This information guides decisions in subsequent steps. -**Exit criteria:** Starting state documented.""" +**Exit criteria:** Context primed, starting state documented.""" [[steps]] id = "handle-dirty-state"