You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Migrate issue-tracking docs from bd to br; stop tracking .beads symlink
The companion beads/teenyc repo was migrated from bd to br
(beads_rust). Updates AGENTS.md/CLAUDE.md (including the
beads_viewer-era bv-agent-instructions block) accordingly, and stops
tracking the .beads symlink since beads repos are private.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CLAUDE.md
+36-35Lines changed: 36 additions & 35 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -416,39 +416,37 @@ When built via Rust integration, outputs go to `target/build/triton-build/build/
416
416
417
417
## Beads Workflow Integration
418
418
419
-
This project uses [beads_viewer](https://github.com/Dicklesworthstone/beads_viewer) for issue tracking. Issues are stored in `.beads/` and tracked in git.
419
+
This project uses **br (beads_rust)** for issue tracking. Issues are stored in `.beads/` and tracked in git.
420
+
421
+
**Note:**`br` is non-invasive and never executes git commands. Sync steps below must be followed by a manual `git add .beads/ && git commit`.
420
422
421
423
### Essential Commands
422
424
423
425
```bash
424
-
# View issues (launches TUI - avoid in automated sessions)
425
-
bv
426
-
427
-
# CLI commands for agents (use these instead)
428
-
bd ready # Show issues ready to work (no blockers)
429
-
bd list --status=open # All open issues
430
-
bd show <id># Full issue details with dependencies
431
-
bd create --title="..." --type=task --priority=2
432
-
bd update <id> --status=in_progress
433
-
bd close <id> --reason="Completed"
434
-
bd close <id1><id2># Close multiple issues at once
435
-
bd sync # Commit and push changes
426
+
br ready # Show issues ready to work (no blockers)
427
+
br list --status=open # All open issues
428
+
br show <id># Full issue details with dependencies
429
+
br create --title="..." --type=task --priority=2
430
+
br update <id> --status=in_progress
431
+
br close <id> --reason="Completed"
432
+
br close <id1><id2># Close multiple issues at once
433
+
br sync --flush-only # Export DB to JSONL (then git add/commit .beads/)
436
434
```
437
435
438
436
### Workflow Pattern
439
437
440
-
1.**Start**: Run `bd ready` to find actionable work
441
-
2.**Claim**: Use `bd update <id> --status=in_progress`
438
+
1.**Start**: Run `br ready` to find actionable work
439
+
2.**Claim**: Use `br update <id> --status=in_progress`
442
440
3.**Work**: Implement the task
443
-
4.**Complete**: Use `bd close <id>`
444
-
5.**Sync**: Always run `bd sync` at session end
441
+
4.**Complete**: Use `br close <id>`
442
+
5.**Sync**: Always run `br sync --flush-only` + `git add .beads/ && git commit` at session end
445
443
446
444
### Key Concepts
447
445
448
-
-**Dependencies**: Issues can block other issues. `bd ready` shows only unblocked work.
446
+
-**Dependencies**: Issues can block other issues. `br ready` shows only unblocked work.
449
447
-**Priority**: P0=critical, P1=high, P2=medium, P3=low, P4=backlog (use numbers, not words)
0 commit comments