chore: remove issue ID references from comments

Strip (gt-xxx), (bd-xxx) suffixes from code comments. The descriptions
remain meaningful without the ephemeral issue IDs.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-28 10:05:16 -08:00
parent 5838d4cd1b
commit 2655a85124
4 changed files with 2174 additions and 2159 deletions

File diff suppressed because one or more lines are too long

View File

@@ -286,7 +286,7 @@ func (b *Beads) Ready() ([]*Issue, error) {
} }
// ReadyWithType returns ready issues filtered by type. // ReadyWithType returns ready issues filtered by type.
// Uses bd ready --type flag for server-side filtering (gt-ktf3). // Uses bd ready --type flag for server-side filtering.
func (b *Beads) ReadyWithType(issueType string) ([]*Issue, error) { func (b *Beads) ReadyWithType(issueType string) ([]*Issue, error) {
out, err := b.run("ready", "--json", "--type", issueType, "-n", "100") out, err := b.run("ready", "--json", "--type", issueType, "-n", "100")
if err != nil { if err != nil {

View File

@@ -316,7 +316,7 @@ func runMoleculeStatus(cmd *cobra.Command, args []string) error {
Role: string(roleCtx.Role), Role: string(roleCtx.Role),
} }
// NEW: Try to find agent bead and read hook slot (gt-lisj6) // Try to find agent bead and read hook slot
// This is the preferred method - agent beads have a hook_bead field // This is the preferred method - agent beads have a hook_bead field
agentBeadID := buildAgentBeadID(target, roleCtx.Role) agentBeadID := buildAgentBeadID(target, roleCtx.Role)
var hookBead *beads.Issue var hookBead *beads.Issue

View File

@@ -178,10 +178,10 @@ func (d *Daemon) heartbeat(state *State) {
// 2. Send heartbeat to Deacon (simple notification, no decision-making) // 2. Send heartbeat to Deacon (simple notification, no decision-making)
d.pokeDeacon() d.pokeDeacon()
// 3. Ensure Witnesses are running for all rigs (gt-qpoxz) // 3. Ensure Witnesses are running for all rigs
d.ensureWitnessesRunning() d.ensureWitnessesRunning()
// 4. Send heartbeats to Witnesses (gt-qpoxz) // 4. Send heartbeats to Witnesses
d.pokeWitnesses() d.pokeWitnesses()
// 5. Trigger pending polecat spawns (bootstrap mode - ZFC violation acceptable) // 5. Trigger pending polecat spawns (bootstrap mode - ZFC violation acceptable)
@@ -192,7 +192,7 @@ func (d *Daemon) heartbeat(state *State) {
// 6. Process lifecycle requests // 6. Process lifecycle requests
d.processLifecycleRequests() d.processLifecycleRequests()
// 7. Check for stale agents (timeout fallback - gt-2hzl4) // 7. Check for stale agents (timeout fallback)
// Agents that report "running" but haven't updated in too long are marked dead // Agents that report "running" but haven't updated in too long are marked dead
d.checkStaleAgents() d.checkStaleAgents()
@@ -246,7 +246,7 @@ func (d *Daemon) nextMOTD() string {
} }
// ensureDeaconRunning ensures the Deacon is running. // ensureDeaconRunning ensures the Deacon is running.
// ZFC-compliant: trusts agent bead state, no tmux inference (gt-psuw7). // ZFC-compliant: trusts agent bead state, no tmux inference.
// The Deacon is the system's heartbeat - it must always be running. // The Deacon is the system's heartbeat - it must always be running.
func (d *Daemon) ensureDeaconRunning() { func (d *Daemon) ensureDeaconRunning() {
// Check agent bead state (ZFC: trust what agent reports) // Check agent bead state (ZFC: trust what agent reports)
@@ -284,7 +284,7 @@ func (d *Daemon) ensureDeaconRunning() {
} }
// pokeDeacon sends a heartbeat message to the Deacon session. // pokeDeacon sends a heartbeat message to the Deacon session.
// ZFC-compliant: trusts agent bead state, no tmux inference (gt-psuw7). // ZFC-compliant: trusts agent bead state, no tmux inference.
// The Deacon molecule decides what to do with heartbeats. // The Deacon molecule decides what to do with heartbeats.
func (d *Daemon) pokeDeacon() { func (d *Daemon) pokeDeacon() {
// Check agent bead state (ZFC: trust what agent reports) // Check agent bead state (ZFC: trust what agent reports)