From 76568e880252dcb2266b908701994cf28ba298c4 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Sun, 14 Dec 2025 17:19:06 -0800 Subject: [PATCH] fix(prime): document priority format to prevent Claude using 'medium' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GH#517: Claude uses 'medium' instead of P2/2 for priority, causing infinite error loops. The bd prime output didn't show the --priority flag or explain the valid format. Fix: Add --priority=2 to the create example and add a clear note explaining that priority must be 0-4 or P0-P4, NOT 'high/medium/low'. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- cmd/bd/prime.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/bd/prime.go b/cmd/bd/prime.go index c097b096..e987768f 100644 --- a/cmd/bd/prime.go +++ b/cmd/bd/prime.go @@ -236,7 +236,8 @@ bd sync # Push to remote - ` + "`bd show `" + ` - Detailed issue view with dependencies ### Creating & Updating -- ` + "`bd create --title=\"...\" --type=task|bug|feature`" + ` - New issue +- ` + "`bd create --title=\"...\" --type=task|bug|feature --priority=2`" + ` - New issue + - Priority: 0-4 or P0-P4 (0=critical, 2=medium, 4=backlog). NOT "high"/"medium"/"low" - ` + "`bd update --status=in_progress`" + ` - Claim work - ` + "`bd update --assignee=username`" + ` - Assign to someone - ` + "`bd close `" + ` - Mark complete