Skip to content

Commit 4fc1ff3

Browse files
mobtownlabsclaude
andcommitted
beads: Fix generate_progress.py to skip tombstoned issues, remove duplicate pickup bead
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ccd5313 commit 4fc1ff3

3 files changed

Lines changed: 49 additions & 46 deletions

File tree

.beads/PROGRESS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@
7474
| \[ ] | buyer-nz9 | Order Status & Audit API Integration | P2 || |
7575

7676
---
77-
*Last updated: 2026-03-12 13:16 UTC — auto-generated by beads*
77+
*Last updated: 2026-03-12 19:28 UTC — auto-generated by beads*

.beads/generate_progress.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ def load_issues():
2929
for line in f:
3030
line = line.strip()
3131
if line:
32-
issues.append(json.loads(line))
32+
issue = json.loads(line)
33+
if issue.get("status") == "tombstone":
34+
continue
35+
issues.append(issue)
3336
return issues
3437

3538

0 commit comments

Comments
 (0)