beads-br
Local-first issue tracker (beads_rust) for AI agents. Use when tracking tasks, managing dependencies, finding ready work, or syncing issues to git via JSONL.
What this skill does
<!-- TOC: Critical Rules | Quick Workflow | Essential Commands | bv Integration | References --> # beads-br — Beads Rust Issue Tracker > **Non-invasive:** br NEVER runs git commands. Sync and commit are YOUR responsibility. ## Critical Rules for Agents | Rule | Why | |------|-----| | **ALWAYS use `--json`** | Structured output for parsing | | **NEVER run bare `bv`** | Blocks session in TUI mode | | **Sync is EXPLICIT** | `br sync --flush-only` after changes | | **Git is YOUR job** | br only touches `.beads/` directory | | **No cycles allowed** | `br dep cycles` must return empty | ## Quick Workflow ```bash # 1. Find work br ready --json # 2. Claim it br update bd-abc123 --status in_progress # 3. Do work... # 4. Complete br close bd-abc123 --reason "Implemented X" # 5. Sync to git (EXPLICIT!) br sync --flush-only git add .beads/ && git commit -m "feat: X (bd-abc123)" ``` ## Essential Commands ```bash # Lifecycle br init # Initialize .beads/ br create "Title" -p 1 -t task # Create (priority 0-4) br update <id> --status in_progress # Claim work br close <id> --reason "Done" # Complete br reopen <id> # Reopen if needed # Querying (always use --json for agents) br ready --json # Actionable work (not blocked) br list --json # All issues br blocked --json # What's blocked br search "keyword" # Full-text search br show <id> --json # Issue details # Dependencies br dep add <child> <parent> # child depends on parent br dep cycles # MUST be empty! br dep tree <id> # Visualize dependencies # Sync (EXPLICIT - never automatic) br sync --flush-only # DB → JSONL (before git commit) br sync --import-only # JSONL → DB (after git pull) # System br doctor # Health check br config --list # Show configuration ``` ## Priority Scale | Priority | Meaning | |----------|---------| | 0 | Critical | | 1 | High | | 2 | Medium (default) | | 3 | Low | | 4 | Backlog | ## bv Integration **CRITICAL:** Never run bare `bv` — it launches interactive TUI and blocks. ```bash # Always use --robot-* flags: bv --robot-next # Single top pick bv --robot-triage # Full triage bv --robot-plan # Parallel execution tracks bv --robot-insights | jq '.Cycles' # Check graph health ``` ## Agent Mail Coordination Use bead ID as thread_id for multi-agent coordination: ```python file_reservation_paths(..., reason="bd-123") send_message(..., thread_id="bd-123", subject="[bd-123] Starting...") # Work... br close bd-123 --reason "Completed" release_file_reservations(...) ``` ## Session Ending Pattern ```bash git pull --rebase br sync --flush-only git add .beads/ && git commit -m "Update issues" git push git status # Verify clean ``` ## Anti-Patterns - Running `br sync` without `--flush-only` or `--import-only` - Forgetting sync before git commit - Creating circular dependencies - Running bare `bv` - Assuming auto-commit behavior ## Storage ``` .beads/ ├── beads.db # SQLite (primary) ├── issues.jsonl # Git-friendly export └── config.yaml # Optional config ``` ## Troubleshooting ```bash br doctor # Full diagnostics br dep cycles # Must be empty br config --list # Check settings ``` **Worktree error** (`'main' is already checked out`): ```bash git branch beads-sync main br config set sync.branch beads-sync ``` --- ## References | Topic | File | |-------|------| | Full command reference | [COMMANDS.md](references/COMMANDS.md) | | Configuration details | [CONFIG.md](references/CONFIG.md) | | Troubleshooting guide | [TROUBLESHOOTING.md](references/TROUBLESHOOTING.md) | | Multi-agent patterns | [INTEGRATION.md](references/INTEGRATION.md) |
Related in Data & Analytics
clawarr-suite
IncludedComprehensive management for self-hosted media stacks (Sonarr, Radarr, Lidarr, Readarr, Prowlarr, Bazarr, Overseerr, Plex, Tautulli, SABnzbd, Recyclarr, Unpackerr, Notifiarr, Maintainerr, Kometa, FlareSolverr). Deep library exploration, analytics, dashboard generation, content management, request handling, subtitle management, indexer control, download monitoring, quality profile sync, library cleanup automation, notification routing, collection/overlay management, and media tracker integration (Trakt, Letterboxd, Simkl).
querying-soql
IncludedSOQL query generation, optimization, and analysis with 100-point scoring. Use this skill when the user needs SOQL/SOSL authoring or optimization: natural-language-to-query generation, relationship queries, aggregates, query-plan analysis, and performance or safety improvements for Salesforce queries. TRIGGER when: user writes, optimizes, or debugs SOQL/SOSL queries, touches .soql files, or asks about relationship queries, aggregates, or query performance. DO NOT TRIGGER when: bulk data operations (use handling-sf-data), Apex DML logic (use generating-apex), or report/dashboard queries.
app-store-optimization
IncludedApp Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklists, and tracking ranking changes.
habit-flow
IncludedAI-powered atomic habit tracker with natural language logging, streak tracking, smart reminders, and coaching. Use for creating habits, logging completions naturally ("I meditated today"), viewing progress, and getting personalized coaching.
app-store-optimization
IncludedApp Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklists, and tracking ranking changes.
visualizing-data
IncludedBuilds dashboards, reports, and data-driven interfaces requiring charts, graphs, or visual analytics. Provides systematic framework for selecting appropriate visualizations based on data characteristics and analytical purpose. Includes 24+ visualization types organized by purpose (trends, comparisons, distributions, relationships, flows, hierarchies, geospatial), accessibility patterns (WCAG 2.1 AA compliance), colorblind-safe palettes, and performance optimization strategies. Use when creating visualizations, choosing chart types, displaying data graphically, or designing data interfaces.