Update all prompts to use gt hook instead of gt mol status
- Role templates (crew, polecat, mayor, deacon, witness, refinery) - prime.go startup protocol messages - Documentation (propulsion, reference, molecules, wisp architecture) - Session hints and sling prompts - Formula template instructions - CLAUDE.md The hook is the user-facing concept, molecules are implementation details. Agents should use `gt hook` to check what work is assigned to them. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
committed by
Steve Yegge
parent
23ee6efd41
commit
b4a7b930e5
@@ -117,7 +117,7 @@ bd mol current # Where am I in the current molecule?
|
||||
|
||||
```bash
|
||||
# Hook management
|
||||
gt mol status # What's on MY hook
|
||||
gt hook # What's on MY hook
|
||||
gt mol current # What should I work on next
|
||||
gt mol progress <id> # Execution progress of molecule
|
||||
gt mol attach <bead> <mol> # Pin molecule to bead
|
||||
|
||||
@@ -23,7 +23,7 @@ Patrol agents (Witness, Refinery, Deacon) use **wisps** to prevent accumulation.
|
||||
|
||||
```bash
|
||||
# 1. Check current status
|
||||
gt mol status
|
||||
gt hook
|
||||
|
||||
# 2. Find next step
|
||||
bd ready --parent=gt-abc
|
||||
@@ -122,7 +122,7 @@ bd mol burn gt-abc
|
||||
### Checking Your Hook
|
||||
|
||||
```bash
|
||||
gt mol status
|
||||
gt hook
|
||||
```
|
||||
|
||||
Shows what molecule is pinned to your current agent and the associated bead.
|
||||
@@ -150,7 +150,7 @@ gt done
|
||||
|
||||
```
|
||||
1. Spawn with work on hook
|
||||
2. gt mol status # What's hooked?
|
||||
2. gt hook # What's hooked?
|
||||
3. bd mol current # Where am I?
|
||||
4. Execute current step
|
||||
5. bd close <step> --continue
|
||||
|
||||
@@ -17,7 +17,7 @@ depends on one thing: when an agent finds work on their hook, they EXECUTE.
|
||||
When you were spawned, work was hooked for you. The system trusts that:
|
||||
|
||||
1. You will find it on your hook
|
||||
2. You will understand what it is (`bd show` / `gt mol status`)
|
||||
2. You will understand what it is (`bd show` / `gt hook`)
|
||||
3. You will BEGIN IMMEDIATELY
|
||||
|
||||
This isn't about being a good worker. This is physics. Steam engines don't
|
||||
@@ -31,7 +31,7 @@ memorize steps or wait for instructions - discover them:
|
||||
### Orientation Commands
|
||||
|
||||
```bash
|
||||
gt mol status # What's on my hook?
|
||||
gt hook # What's on my hook?
|
||||
bd mol current # Where am I in the molecule?
|
||||
bd ready # What step is next?
|
||||
bd show <step-id> # What does this step require?
|
||||
@@ -62,7 +62,7 @@ One command. Auto-advance. Momentum preserved.
|
||||
### The Propulsion Loop
|
||||
|
||||
```
|
||||
1. gt mol status # What's hooked?
|
||||
1. gt hook # What's hooked?
|
||||
2. bd mol current # Where am I?
|
||||
3. Execute step
|
||||
4. bd close <step> --continue # Close and advance
|
||||
@@ -82,7 +82,7 @@ Polecat restarts with work on hook
|
||||
|
||||
## Startup Behavior
|
||||
|
||||
1. Check hook (`gt mol status`)
|
||||
1. Check hook (`gt hook`)
|
||||
2. Work hooked → EXECUTE immediately
|
||||
3. Hook empty → Check mail for attached work
|
||||
4. Nothing anywhere → ERROR: escalate to Witness
|
||||
|
||||
@@ -145,7 +145,7 @@ bd mol burn <id> # Discard wisp (explicit ID)
|
||||
|
||||
```bash
|
||||
# Hook management (operates on current agent's hook)
|
||||
gt mol status # What's on MY hook
|
||||
gt hook # What's on MY hook
|
||||
gt mol current # What should I work on next
|
||||
gt mol progress <id> # Execution progress of molecule
|
||||
gt mol attach <bead> <mol> # Pin molecule to bead
|
||||
|
||||
Reference in New Issue
Block a user