Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ Declarative plugin collection that specializes Claude for professional roles and

## Issue Tracking

This project uses **bd (beads)** for issue tracking.
Run `bd prime` for workflow context, or install hooks (`bd hooks install`) for auto-injection.
This project uses **br (beads_rust)** for issue tracking.

**Quick reference:**
- `bd ready` - Find unblocked work
- `bd create "Title" --type task --priority 2` - Create issue
- `bd close <id>` - Complete work
- `bd sync` - Sync with git (run at session end)
**Note:** `br` is non-invasive and never executes git commands. After `br sync --flush-only`, describe the change with `jj describe`.

For full workflow details: `bd prime`
**Quick reference:**
- `br ready` - Find unblocked work
- `br create "Title" --type task --priority 2` - Create issue
- `br close <id>` - Complete work
- `br sync --flush-only` - Sync beads (run at session end)
- `jj describe -m "sync beads"` - Describe the change after sync

## Project overview

Expand Down Expand Up @@ -74,7 +74,8 @@ All content is markdown and JSON — edit directly, no build step required. When
4. **PUSH TO REMOTE** - This is MANDATORY:
```bash
git pull --rebase
bd sync
br sync --flush-only
jj describe -m "sync beads"
git push
git status # MUST show "up to date with origin"
```
Expand Down
Loading