website/versioned_docs/version-1.0.0/intro.md
Beads (bd) is a Dolt-powered issue tracker designed for AI-supervised coding workflows.
Traditional issue trackers (Jira, GitHub Issues) weren't designed for AI agents. Beads was built from the ground up for:
bd ready shows only unblocked work# Install via Homebrew (macOS/Linux)
brew install beads
# Or quick install (macOS/Linux/FreeBSD)
curl -fsSL https://raw.githubusercontent.com/gastownhall/beads/main/scripts/install.sh | bash
# Initialize in your project
cd your-project
bd init --quiet
# Create your first issue
bd create "Set up database" -p 1 -t task
# See ready work
bd ready
| Concept | Description |
|---|---|
| Issues | Work items with priorities, types, labels, and dependencies |
| Dependencies | blocks, parent-child, discovered-from, related |
| Dolt Server | Database server for multi-writer access and performance |
| Formulas | Declarative workflow templates (TOML or JSON) |
| Molecules | Work graphs with parent-child relationships |
| Gates | Async coordination primitives (human, timer, GitHub) |
Beads is optimized for AI coding agents:
# Always use --json for programmatic access
bd list --json
bd show bd-42 --json
# Track discovered work during implementation
bd create "Found bug in auth" --description="Details..." \
--deps discovered-from:bd-100 --json
# Push changes at end of session
bd dolt push
See the Claude Code integration for detailed agent instructions.
Dolt DB (.beads/dolt/, gitignored)
↕ dolt commit
Local Dolt history
↕ dolt push/pull
Remote Dolt repository (shared across machines)
The magic is automatic synchronization via Dolt's version-controlled database with built-in replication.