Show beads issue tracker status overview
Displays a summary of beads issue tracker status with counts and item lists.
/plugin marketplace add GGPrompts/TabzChrome/plugin install conductor@tabz-chromeShow a summary of the beads issue tracker status.
echo "=== Beads Status ==="
echo ""
echo "📊 Summary:"
bd count --status open 2>/dev/null | xargs -I{} echo " Open: {}"
bd count --status in_progress 2>/dev/null | xargs -I{} echo " In Progress: {}"
bd count --status closed 2>/dev/null | xargs -I{} echo " Closed: {}"
echo ""
echo "📋 Ready to Work (no blockers):"
bd ready 2>/dev/null || echo " (no beads database found)"
echo ""
echo "🔧 In Progress:"
bd list --status in_progress 2>/dev/null || echo " (none)"
echo ""
echo "⏰ Recently Closed:"
bd list --status closed --limit 5 2>/dev/null || echo " (none)"
Present the output in a clean format:
| Status | Count |
|---|---|
| Open | X |
| In Progress | Y |
| Closed | Z |
Then list ready work and in-progress items.
bd ready # What to work on next
bd show <id> # View issue details
bd update <id> --status in_progress # Claim issue
bd close <id> # Mark complete
perles # Visual kanban board
Execute this workflow now.