From 80aa280e04b4b7b5ed5705a6e59068a76a6385e0 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Sat, 20 Dec 2025 23:31:25 -0800 Subject: [PATCH] fix: use gt mail instead of bd mail in handoff command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bd doesn't have a mail subcommand - mail routing goes through gt. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- internal/cmd/handoff.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/cmd/handoff.go b/internal/cmd/handoff.go index b2d4d082..aa39ef59 100644 --- a/internal/cmd/handoff.go +++ b/internal/cmd/handoff.go @@ -376,8 +376,8 @@ Polecat: %s Please verify state and execute lifecycle action. `, role, action, time.Now().Format(time.RFC3339), polecatName) - // Send via bd mail (syntax: bd mail send -s -m ) - cmd := exec.Command("bd", "mail", "send", manager, + // Send via gt mail (syntax: gt mail send -s -m ) + cmd := exec.Command("gt", "mail", "send", manager, "-s", subject, "-m", body, )