From b118b5299b82d186d110ac98550f483e60aeeba3 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Sun, 21 Dec 2025 00:36:28 -0800 Subject: [PATCH] fix(prime): include rig name in Polecat and Crew check-ins MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Format is now " Polecat , checking in." and " Crew , checking in." to match the pattern. 🤝 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- internal/cmd/prime.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/cmd/prime.go b/internal/cmd/prime.go index d693fa03..144f4163 100644 --- a/internal/cmd/prime.go +++ b/internal/cmd/prime.go @@ -417,7 +417,7 @@ func outputStartupDirective(ctx RoleContext) { fmt.Println("---") fmt.Println() fmt.Println("**STARTUP PROTOCOL**: You are a polecat. Please:") - fmt.Printf("1. Announce: \"Polecat %s, checking in.\"\n", ctx.Polecat) + fmt.Printf("1. Announce: \"%s Polecat %s, checking in.\"\n", ctx.Rig, ctx.Polecat) fmt.Println("2. Check mail: `gt mail inbox`") fmt.Println("3. If assigned work, begin immediately") fmt.Println("4. If no work, announce ready and await assignment") @@ -436,7 +436,7 @@ func outputStartupDirective(ctx RoleContext) { fmt.Println("---") fmt.Println() fmt.Println("**STARTUP PROTOCOL**: You are a crew worker. Please:") - fmt.Printf("1. Announce: \"Crew %s, checking in.\"\n", ctx.Polecat) + fmt.Printf("1. Announce: \"%s Crew %s, checking in.\"\n", ctx.Rig, ctx.Polecat) fmt.Println("2. Check mail: `gt mail inbox`") fmt.Println("3. If there's a 🤝 HANDOFF message, read it and continue the work") fmt.Println("4. If no mail, await user instruction")