Give your coding agent a memory upgrade
⚠️ Alpha Status: This project is in active development. The core features work well, but expect API changes before 1.0. Use for development/internal projects first.
Beads is a lightweight memory system for coding agents, using a graph-based issue tracker. Four kinds of dependencies work to chain your issues together like beads, making them easy for agents to follow for long distances, and reliably perform complex task streams in the right order.
Drop Beads into any project where you're using a coding agent, and you'll enjoy an instant upgrade in organization, focus, and your agent's ability to handle long-horizon tasks over multiple compaction sessions. Your agents will use issue tracking with proper epics, rather than creating a swamp of rotten half-implemented markdown plans.
Instant start:
Then tell your coding agent to start using the bd tool instead of markdown for all new work, somewhere in your AGENTS.md or CLAUDE.md. That's all there is to it!
You don't use Beads directly as a human. Your coding agent will file and manage issues on your behalf. They'll file things they notice automatically, and you can ask them at any time to add or update issues for you.
Beads gives agents unprecedented long-term planning capability, solving their amnesia when dealing with complex nested plans. They can trivially query the ready work, orient themselves, and land on their feet as soon as they boot up.
Agents using Beads will no longer silently pass over problems they notice due to lack of context space -- instead, they will automatically file issues for newly-discovered work as they go. No more lost work, ever.
Beads issues are backed by git, but through a clever design it manages to act like a managed, centrally hosted SQL database shared by all of the agents working on a project (repo), even across machines.
Beads even improves work auditability. The issue tracker has a sophisticated audit trail, which agents can use to reconstruct complex operations that may have spanned multiple sessions.
Agents report that they enjoy working with Beads, and they will use it spontaneously for both recording new work and reasoning about your project in novel ways. Whether you are a human or an AI, Beads lets you have more fun and less stress with agentic coding.
- ✨ Zero setup - bd init creates project-local database (and your agent will do it)
- 🔗 Dependency tracking - Four dependency types (blocks, related, parent-child, discovered-from)
- 📋 Ready work detection - Automatically finds issues with no open blockers
- 🤖 Agent-friendly - --json flags for programmatic integration
- 📦 Git-versioned - JSONL records stored in git, synced across machines
- 🌍 Distributed by design - Agents on multiple machines share one logical database via git
- 🏗️ Extensible - Add your own tables to the SQLite database
- 🔍 Multi-project isolation - Each project gets its own database, auto-discovered by directory
- 🌲 Dependency trees - Visualize full dependency graphs
- 🎨 Beautiful CLI - Colored output for humans, JSON for bots
- 💾 Full audit trail - Every change is logged
The installer will:
- Detect your platform (macOS/Linux, amd64/arm64)
- Install via go install if Go is available
- Fall back to building from source if needed
- Guide you through PATH setup if necessary
For Windows you must build from source. Assumes git, go-lang and mingw-64 installed and in path.
Tested with mingw64 from https://github.com/niXman/mingw-builds-binaries
- version: 1.5.20
- architecture: 64 bit
- thread model: posix
- C runtime: ucrt
Beads is designed for AI coding agents to use on your behalf. As a human, you typically just:
Most tasks will be created and managed by agents during conversations. You can check on things with:
Run the interactive guide to learn the full workflow:
Quick reference for agent workflows:
Here's the crazy part: bd acts like a centralized database, but it's actually distributed via git.
When you install bd on any machine with your project repo, you get:
- ✅ Full query capabilities (dependencies, ready work, etc.)
- ✅ Fast local operations (<100ms via SQLite)
- ✅ Shared state across all machines (via git)
- ✅ No server, no daemon, no configuration
- ✅ AI-assisted merge conflict resolution
How it works:
- Each machine has a local SQLite cache (.beads/*.db) - gitignored
- Source of truth is JSONL (.beads/issues.jsonl) - committed to git
- Auto-export syncs SQLite → JSONL after CRUD operations (5-second debounce)
- Auto-import syncs JSONL → SQLite when JSONL is newer (e.g., after git pull)
- Git handles distribution; AI handles merge conflicts
The result: Agents on your laptop, your desktop, and your coworker's machine all query and update what feels like a single shared database, but it's really just git doing what git does best - syncing text files across machines. No manual export/import needed!
No PostgreSQL instance. No MySQL server. No hosted service. Just install bd, clone the repo, and you're connected to the "database."
Options:
- -d, --description - Issue description
- -p, --priority - Priority (0-4, 0=highest)
- -t, --type - Type (bug|feature|task|epic|chore)
- -a, --assignee - Assign to user
- -l, --labels - Comma-separated labels
- --id - Explicit issue ID (e.g., worker1-100 for ID space partitioning)
- --json - Output in JSON format
bd automatically discovers your database in this order:
- --db flag: bd --db /path/to/db.db create "Issue"
- $BEADS_DB environment variable: export BEADS_DB=/path/to/db.db
- .beads/*.db in current directory or ancestors (walks up like git)
- ~/.beads/default.db as fallback
This means you can:
- Initialize per-project databases with bd init
- Work from any subdirectory (bd finds the database automatically)
- Override for testing or multiple projects
Example:
Beads has four types of dependencies:
- blocks - Hard blocker (affects ready work calculation)
- related - Soft relationship (just for context)
- parent-child - Epic/subtask hierarchy
- discovered-from - Tracks issues discovered while working on another issue
Only blocks dependencies affect the ready work queue.
-
blocks: Use when issue X cannot start until issue Y is completed
bd dep add bd-5 bd-3 --type blocks # bd-5 blocked by bd-3 -
related: Use for issues that are connected but don't block each other
bd dep add bd-10 bd-8 --type related # bd-10 related to bd-8 -
parent-child: Use for epic/subtask hierarchies
bd dep add bd-15 bd-12 --type parent-child # bd-15 is child of epic bd-12 -
discovered-from: Use when you discover new work while working on an issue
# While working on bd-20, you discover a bug # Old way (two commands): bd create "Fix edge case bug" -t bug -p 1 bd dep add bd-21 bd-20 --type discovered-from # bd-21 discovered from bd-20 # New way (single command with --deps): bd create "Fix edge case bug" -t bug -p 1 --deps discovered-from:bd-20
The discovered-from type is particularly useful for AI-supervised workflows, where the AI can automatically create issues for discovered work and link them back to the parent task.
bd is designed to work seamlessly with AI coding agents:
The --json flag on every command makes bd perfect for programmatic workflows.
An issue is "ready" if:
- Status is open
- It has NO open blocks dependencies
- All blockers are either closed or non-existent
Example:
Ready work: [bd-1] Blocked: [bd-2, bd-3]
Applications can extend bd's SQLite database with their own tables. See EXTENDING.md for the full guide.
Quick example:
This pattern enables powerful integrations while keeping bd simple and focused.
| Zero setup | ✅ | ✅ | ❌ | ❌ | ❌ |
| Dependency tracking | ✅ | ✅ | ⚠️ | ✅ | ✅ |
| Ready work detection | ✅ | ⚠️ | ❌ | ❌ | ❌ |
| Agent-friendly (JSON) | ✅ | ⚠️ | ⚠️ | ⚠️ | ⚠️ |
| Distributed via git | ✅ | ⚠️ | ❌ | ❌ | ❌ |
| Works offline | ✅ | ✅ | ❌ | ❌ | ❌ |
| AI-resolvable conflicts | ✅ | ❌ | ❌ | ❌ | ❌ |
| Extensible database | ✅ | ❌ | ❌ | ❌ | ❌ |
| No server required | ✅ | ✅ | ❌ | ❌ | ❌ |
| Built for AI agents | ✅ | ❌ | ❌ | ❌ | ❌ |
vs. Taskwarrior: Taskwarrior is great for personal task management, but bd is designed specifically for AI agents. bd has explicit dependency types (discovered-from), JSON-first API design, and JSONL storage optimized for git merging. Taskwarrior's sync server requires setup; bd uses git automatically.
bd is designed for AI coding agents, not humans.
Traditional issue trackers (Jira, GitHub Issues, Linear) assume humans are the primary users. Humans click through web UIs, drag cards on boards, and manually update status.
bd assumes AI agents are the primary users, with humans supervising:
- Agents discover work - bd ready --json gives agents unblocked tasks to execute
- Dependencies prevent wasted work - Agents don't duplicate effort or work on blocked tasks
- Discovery during execution - Agents create issues for work they discover while executing, linked with discovered-from
- Agents lose focus - Long-running conversations can forget tasks; bd remembers everything
- Humans supervise - Check on progress with bd list and bd dep tree, but don't micromanage
In human-managed workflows, issues are planning artifacts. In agent-managed workflows, issues are memory - preventing agents from forgetting tasks during long coding sessions.
Traditional issue trackers were built for human project managers. bd is built for autonomous agents.
bd uses a dual-storage approach:
- JSONL files (.beads/issues.jsonl) - Source of truth, committed to git
- SQLite database (.beads/*.db) - Ephemeral cache for fast queries, gitignored
This gives you:
- ✅ Git-friendly storage - Text diffs, AI-resolvable conflicts
- ✅ Fast queries - SQLite indexes for dependency graphs
- ✅ Automatic sync - Auto-export after CRUD ops, auto-import after pulls
- ✅ No daemon required - In-process SQLite, ~10-100ms per command
When you run bd create, it writes to SQLite. After 5 seconds of inactivity, changes automatically export to JSONL. After git pull, the next bd command automatically imports if JSONL is newer. No manual steps needed!
bd can export and import issues as JSON Lines (one JSON object per line). This is perfect for git workflows and data portability.
Issues are exported sorted by ID for consistent git diffs.
Import behavior:
- Existing issues (same ID) are updated with new values
- New issues are created
- All imports are atomic (all or nothing)
When importing issues, bd detects three types of situations:
- Exact matches - Same ID, same content (idempotent, no action needed)
- New issues - ID doesn't exist in database yet
- Collisions - Same ID but different content (requires resolution)
Collision detection:
Resolution strategies:
Option 1: Automatic remapping (recommended for branch merges)
Option 2: Manual resolution
The collision resolution algorithm:
When using --resolve-collisions, bd intelligently remaps colliding issues to minimize updates:
- Detects collisions - Compares ID and content (title, description, status, priority, etc.)
- Scores references - Counts how many times each ID is referenced in:
- Text fields (description, design, notes, acceptance criteria)
- Dependency records (both as source and target)
- Renumbers by score - Issues with fewer references are remapped first
- Updates all references - Uses word-boundary regex to replace old IDs:
- Text fields: "See bd-10 for details" → "See bd-25 for details"
- Dependencies: bd-5 → bd-10 becomes bd-5 → bd-25
- Handles edge cases: Distinguishes bd-10 from bd-100, bd-1000, etc.
Branch merge workflow:
This is particularly useful when merging branches where both sides created issues with the same IDs:
Important notes:
- Collisions are safe by default - import fails unless you use --resolve-collisions
- Use --dry-run to preview changes before applying
- The algorithm preserves the existing database (existing issues are never renumbered)
- All text mentions and dependency links are updated automatically
- Word-boundary matching prevents false replacements (bd-10 won't match bd-100)
Each line is a complete JSON issue object:
Automatic sync by default! bd now automatically syncs between SQLite and JSONL:
- Auto-export: After CRUD operations, changes flush to JSONL after 5 seconds of inactivity
- Auto-import: When JSONL is newer than DB (e.g., after git pull), next bd command imports automatically
Add to .gitignore:
Add to git:
Create .git/hooks/pre-commit:
Create .git/hooks/post-merge:
Make hooks executable:
- ✅ Git-friendly: One line per issue = clean diffs
- ✅ Mergeable: Concurrent appends rarely conflict
- ✅ Human-readable: Easy to review changes
- ✅ Scriptable: Use jq, grep, or any text tools
- ✅ Portable: Export/import between databases
When two developers create new issues:
Git may show a conflict, but resolution is simple: keep both lines (both changes are compatible).
See TEXT_FORMATS.md for detailed analysis of JSONL merge strategies and conflict resolution.
Check out the examples/ directory for:
- Python agent - Full agent implementation in Python
- Bash agent - Shell script agent example
- Git hooks - Automatic export/import on git operations
- Branch merge workflow - Handle ID collisions when merging branches
- Claude Desktop MCP - MCP server integration (coming soon)
GitHub Issues requires internet, has API rate limits, and isn't designed for agents. bd works offline, has no limits, and gives you bd ready --json to instantly find unblocked work. Plus, bd's distributed database means agents on multiple machines share state via git—no API calls needed.
Taskwarrior is excellent for personal task management, but bd is built for AI agents:
- Explicit agent semantics: discovered-from dependency type, bd ready for queue management
- JSON-first design: Every command has --json output
- Git-native sync: No sync server setup required
- Merge-friendly JSONL: One issue per line, AI-resolvable conflicts
- Extensible SQLite: Add your own tables without forking
Absolutely! bd is a great CLI issue tracker for humans too. The bd ready command is useful for anyone managing dependencies. Think of it as "Taskwarrior meets git."
The last agent to export/commit wins. This is the same as any git-based workflow. To prevent conflicts:
- Have agents claim work with bd update <id> --status in_progress
- Query by assignee: bd ready --assignee agent-name
- Review git diffs before merging
For true multi-agent coordination, you'd need additional tooling (like locks or a coordination server). bd handles the simpler case: multiple humans/agents working on different tasks, syncing via git.
No! Sync is automatic by default.
bd automatically:
- Exports to JSONL after CRUD operations (5-second debounce)
- Imports from JSONL when it's newer than DB (after git pull)
Optional: For immediate export (no 5-second wait) and guaranteed import after git operations, install the git hooks:
Disable auto-sync if needed:
Yes! Each project is completely isolated. bd uses project-local databases:
Each project gets its own .beads/ directory with its own database and JSONL file. bd auto-discovers the correct database based on your current directory (walks up like git).
Multi-project scenarios work seamlessly:
- Multiple agents working on different projects simultaneously → No conflicts
- Same machine, different repos → Each finds its own .beads/*.db automatically
- Agents in subdirectories → bd walks up to find the project root (like git)
Limitation: Issues cannot reference issues in other projects. Each database is isolated by design. If you need cross-project tracking, initialize bd in a parent directory that contains both projects.
Example: Multiple agents, multiple projects, same machine:
We don't have automated migration tools yet, but you can:
- Export issues from your current tracker (usually CSV or JSON)
- Write a simple script to convert to bd's JSONL format
- Import with bd import -i issues.jsonl
See examples/ for scripting patterns. Contributions welcome!
Current status: Alpha (v0.9.0)
bd is in active development and being dogfooded on real projects. The core functionality (create, update, dependencies, ready work, collision resolution) is stable and well-tested. However:
- ⚠️ Alpha software - No 1.0 release yet
- ⚠️ API may change - Command flags and JSONL format may evolve before 1.0
- ✅ Safe for development - Use for development/internal projects
- ✅ Data is portable - JSONL format is human-readable and easy to migrate
- 📈 Rapid iteration - Expect frequent updates and improvements
When to use bd:
- ✅ AI-assisted development workflows
- ✅ Internal team projects
- ✅ Personal productivity with dependency tracking
- ✅ Experimenting with agent-first tools
When to wait:
- ❌ Mission-critical production systems (wait for 1.0)
- ❌ Large enterprise deployments (wait for stability guarantees)
- ❌ Long-term archival (though JSONL makes migration easy)
Follow the repo for updates and the path to 1.0!
bd uses SQLite, which handles millions of rows efficiently. For a typical project with thousands of issues:
- Commands complete in <100ms
- Full-text search is instant
- Dependency graphs traverse quickly
- JSONL files stay small (one line per issue)
For extremely large projects (100k+ issues), you might want to filter exports or use multiple databases per component.
Sure! bd is just an issue tracker. Use it for:
- Writing projects (chapters as issues, dependencies as outlines)
- Research projects (papers, experiments, dependencies)
- Home projects (renovations with blocking tasks)
- Any workflow with dependencies
The agent-friendly design works for any AI-assisted workflow.
bd is not in your PATH. Either:
Another bd process is accessing the database, or SQLite didn't close properly. Solutions:
You're trying to import issues that conflict with existing ones. Options:
When both sides add issues, you'll get conflicts. Resolution:
- Open .beads/issues.jsonl
- Look for <<<<<<< HEAD markers
- Most conflicts can be resolved by keeping both sides
- Each line is independent unless IDs conflict
- For same-ID conflicts, keep the newest (check updated_at)
Example resolution:
See TEXT_FORMATS.md for detailed merge strategies.
Those issues probably have open blockers. Check:
Remember: Only blocks dependencies affect ready work.
Git hooks need execute permissions:
Or use the installer: cd examples/git-hooks && ./install.sh
.beads/ already exists. Options:
For large databases (10k+ issues):
Consider splitting large projects into multiple databases.
Agents may not realize an issue already exists. Prevention strategies:
- Have agents search first: bd list --json | grep "title"
- Use labels to mark auto-created issues: bd create "..." -l auto-generated
- Review and deduplicate periodically: bd list | sort
True deduplication logic would require fuzzy matching - contributions welcome!
- README.md - You are here! Complete guide
- TEXT_FORMATS.md - JSONL format analysis and merge strategies
- GIT_WORKFLOW.md - Historical analysis of binary vs text approaches
- EXTENDING.md - Database extension patterns
- Run bd quickstart for interactive tutorial
MIT
Built with ❤️ by developers who love tracking dependencies and finding ready work.
Inspired by the need for a simpler, dependency-aware issue tracker.
.png)


