ba plugin marketplace
npx claudepluginhub cloud-atlas-ai/baShare bugs, ideas, or general feedback.
Simple task tracking for LLM sessions.
ba - because sometimes you need to go back before bd
A spiritual fork of beads (bd), keeping the simplicity of v0.9.6 with added session-based claiming for multi-agent coordination.
cargo install ba
# or build from source
cargo build --release
Install directly from GitHub:
claude plugin marketplace add https://github.com/cloud-atlas-ai/ba
claude plugin install ba@ba
Or install from local clone:
git clone https://github.com/cloud-atlas-ai/ba.git
cd ba
claude plugin marketplace add $PWD
claude plugin install ba@ba
The plugin provides:
/ba init - Install ba binary, initialize project, install Codex skill, setup AGENTS.md/ba status - Show issue counts and your claimed work/ba quickstart - Quick reference guideAfter running /ba init, the $ba Codex skill will be available for task tracking commands.
See plugin/README.md and codex-skill/README.md for details.
# Show quick start guide for LLMs
ba quickstart
# Initialize in your project
ba init
# Create issues
ba create "Fix auth bug" -t bug -p 1
ba create "Add feature" -t feature -d "Description here"
# List issues (excludes closed by default)
ba list
ba list --all # Include closed
ba list --status open # Filter by status
# Show issue details
ba show ab-x7k2
Status is a side-effect of ownership transitions, not set directly:
# Take ownership (open/closed → in_progress)
ba claim ab-x7k2 --session claude-abc123
# Abandon work (in_progress → open)
ba release ab-x7k2
# Complete work (in_progress → closed)
ba finish ab-x7k2
# Close unclaimed issue (escape hatch)
ba close ab-x7k2
This ensures every in-progress issue has an owner. Claiming a closed issue cleanly reopens it.
# Change priority
ba priority ab-x7k2 0 # 0 = critical
# Add/remove labels
ba label ab-x7k2 add urgent
ba label ab-x7k2 remove urgent
# Add comments
ba comment ab-x7k2 "Found root cause" --author claude
Track blocking relationships between issues:
# Add a blocking dependency (blocker blocks id)
ba block ab-x7k2 ab-y8m3 # ab-x7k2 is now blocked by ab-y8m3
# Remove a blocking dependency
ba unblock ab-x7k2 ab-y8m3
# Visualize dependency tree
ba tree ab-x7k2
# Output:
# ab-x7k2: Fix auth bug [OPEN]
# └── ab-y8m3: Add user model [IN_PROGRESS]
# Detect circular dependencies
ba cycles
Show issues ready to work on (open + not blocked):
ba ready
# Output:
# ID P TYPE TITLE
# ------------------------------------------------------------
# ab-x7k2 0 bug Fix critical auth bug
# ab-z9n4 1 feature Add dashboard
# ab-a1b2 2 task Write tests
#
# 3 issue(s) ready
An issue is "ready" when:
open (not in_progress or closed)closed (or has no blockers)When multiple LLM agents work on the same codebase:
# Claim an issue (caller provides their session ID)
ba claim ab-x7k2 --session claude-abc123
# See what you've claimed
ba mine --session claude-abc123
# Complete work
ba finish ab-x7k2
# Or release back to pool
ba release ab-x7k2
The ownership model ensures no two agents work on the same issue. See Ownership-Based Workflow above.
Migrate issues from a beads (bd) export file:
# Import with new IDs (uses project prefix)
ba import .beads/issues.jsonl
# Keep original beads IDs
ba import .beads/issues.jsonl --keep-ids
The import handles dependencies automatically and provides clear error messages:
Imported 112 issues (0 skipped, 1 errors)
Errors:
Line 46: Issue 'as-9q7' - issue_type: Unknown type 'merge-request', expected bug/feature/task/epic/chore/refactor/spike
Only blocks dependencies are imported (other types like related, parent-child, discovered-from are skipped).
task - Default, general work itemepic - Container for grouping related issuesrefactor - Improving existing code (no new behavior)spike - Research/investigation (may not produce code)0 - Critical (security, data loss, broken builds)1 - High (major features, important bugs)2 - Medium (default - nice-to-have features, minor bugs)3 - Low (polish, optimization)4 - Backlog (future ideas)