Claude-skill-registry beads
Issue tracking with Beads (bd CLI). Use when commands need to create, query, update, or close issues, or manage dependencies.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/beads-arttttt-cmidcabot" ~/.claude/skills/majiayu000-claude-skill-registry-beads && rm -rf "$T"
manifest:
skills/data/beads-arttttt-cmidcabot/SKILL.mdsource content
Beads Issue Tracker
Core Concepts
- bd ready — tasks with no blockers
- Status: open → in_progress → closed
- Types: task, bug, feature, epic, chore
- Priority: 0 (critical) → 4 (low), default 2
- Dependencies: only
affects readyblocks
Operations
Get Issue Details
bd show <id> --json
Returns full issue data: title, description, status, type, priority, dependencies.
Check If Issue Exists
bd show <id>
Exit code 0 = exists, non-zero = not found.
Create Issue
bd create --title "Title" --type task --priority 2 --description "Description" --json
Creates new issue. Use
--parent <epic-id> for subtasks.
Update Status
bd update <id> --status in_progress --json
Valid statuses: open, in_progress, closed.
Add Dependency
bd dep add <blocked-id> <blocker-id> --type blocks
Makes blocker-id block blocked-id. Only
blocks affects ready state.
Get Dependency Tree
bd dep tree <id>
Shows issue hierarchy and blocking relationships.
Find Ready Tasks
bd ready --json
Lists tasks with no unresolved blockers.
Find Blocked Tasks
bd blocked --json
Lists tasks waiting on blockers.
Close Issue
bd close <id> --reason "Done: summary" --json
Marks issue as closed with resolution reason.
List Issues
bd list --status open --json
Filter by status, type, priority.
Sync
bd sync
Synchronizes local state with remote.
Quick Reference
| Action | Command |
|---|---|
| Show issue | |
| Create issue | |
| Update status | |
| Add blocker | |
| Ready tasks | |
| Close issue | |
References
— Issue types and prioritiesreferences/types.md
— Dependency types and usagereferences/dependencies.md