mol-sync-workspace: Add gt/bd prime to assess-state step

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 <noreply@anthropic.com>
This commit is contained in:
gastown/polecats/slit
2025-12-30 22:45:52 -08:00
committed by Steve Yegge
parent 5378e566a3
commit d28ba6e2c6

View File

@@ -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"