| Crates.io | ac |
| lib.rs | ac |
| version | 0.1.0 |
| created_at | 2026-01-03 13:26:46.13306+00 |
| updated_at | 2026-01-03 13:26:46.13306+00 |
| description | Simple task tracking for LLM sessions |
| homepage | |
| repository | https://github.com/cloud-atlas-ai/ac |
| max_upload_size | |
| id | 2020054 |
| size | 44,525 |
Simple task tracking for LLM sessions.
ac - 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 ac
# or build from source
cargo build --release
# Initialize in your project
ac init
# Create issues
ac create "Fix auth bug" -t bug -p 1
ac create "Add feature" -t feature -d "Description here"
# List issues (excludes closed by default)
ac list
ac list --all # Include closed
ac list --status open # Filter by status
# Show issue details
ac show ab-x7k2
# Update issues
ac update ab-x7k2 --status in_progress
ac update ab-x7k2 --priority 0
ac update ab-x7k2 --assignee alice
# Close issues
ac close ab-x7k2 --reason "Fixed in commit abc123"
bug - Something brokenfeature - New functionalitytask - Work itemepic - Large feature composed of subtaskschore - Maintenance workrefactor - Code restructuringspike - Research/investigation0 - 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)Data stored in .ac/ directory:
config.json - Project config (version, ID prefix)issues.jsonl - One issue per line, sorted by IDgrep ab-x7k2 .ac/issues.jsonlFormat: {prefix}-{random} (e.g., ab-x7k2)
Same project always gets same prefix, different projects get different prefixes.
All commands support --json for programmatic use:
ac --json list
ac --json show ab-x7k2
ac --json create "New issue" -t task
ac is inspired by beads by Steve Yegge - an excellent issue tracker for AI-assisted development. We loved beads v0.9.6's simplicity before it evolved into a full messaging/routing system. ac takes that original simplicity and adds session-based claiming for multi-agent coordination.
Source-available. See LICENSE for details.