Agent skill
beads
Activate beads (bd) issue tracking for persistent task memory across sessions. Use when work spans multiple sessions, has complex dependencies, or needs to survive compaction. For simple single-session linear tasks, use TodoWrite instead.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/beads
SKILL.md
Beads Issue Tracking
Git-backed issue tracker for persistent memory across sessions. JSONL is source of truth (committed to git), SQLite is local cache (gitignored).
Session Activation
At session start, check for ready work:
bd ready --json
Report to user: number of ready items, top priorities, any blockers worth noting.
When to Use bd vs TodoWrite
| Use bd when | Use TodoWrite when |
|---|---|
| Multi-session work | Single-session tasks |
| Complex dependencies | Linear step-by-step |
| Need to survive compaction | Immediate context only |
| Resume after weeks away | Simple checklist |
Rule of thumb: If resuming after 2 weeks would be hard without bd, use bd.
Quick Command Reference
# Check work
bd ready # What's unblocked
bd blocked # What's stuck
bd show bd-a1b2 # Full issue details
# Create (write for handoff - future Claude has no conversation context!)
bd create "Specific actionable title" -d "Full context: what, why, where" -p 2
bd q "Quick capture" # Returns only ID
# Update as you work
bd update bd-a1b2 --status in_progress
bd update bd-a1b2 --notes "DONE: X. NEXT: Y. BLOCKER: Z"
bd update bd-a1b2 --design "Decided approach A because..."
# Close when done
bd close bd-a1b2 --reason "Completed: summary of what was done"
# Sync (usually automatic via daemon)
bd sync # Full cycle: export→commit→pull→push
IDs use hash format like bd-a1b2, not sequential numbers.
Write for Handoff
Every bead must be understandable by a future Claude with:
- No access to this conversation
- Only the bead's title, description, notes, design fields
- General codebase knowledge from exploration
Anti-patterns:
- "As discussed above..." (no "above" after compaction)
- Vague titles only making sense in context
- Assuming file paths or function names are remembered
in_progressstatus without notes on current state
Session End Checklist
Before ending or if context is long:
- All
in_progressitems have current notes - Discovered work captured as new issues
- Blockers documented in issue notes
- Run
bd syncif daemon not running
Reference Files
| Topic | File |
|---|---|
| bd vs TodoWrite decision criteria | references/BOUNDARIES.md |
| Complete CLI with all flags | references/CLI_REFERENCE.md |
| Dependency types and patterns | references/DEPENDENCIES.md |
| Workflow walkthroughs | references/WORKFLOWS.md |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?