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
Enhance AGENTS.md with detailed usage instructions for bv as an AI sidecar, including triage commands and graph analysis features. Update package.json to add a CI script for linting, type checking, and testing. Remove obsolete ralph-afk.sh script and modify ralph-once.sh to streamline task execution and quality checks.
Copy file name to clipboardExpand all lines: AGENTS.md
+89Lines changed: 89 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,3 +101,92 @@ git push # Push to remote
101
101
- Always `bd sync` before ending session
102
102
103
103
<!-- end-bv-agent-instructions -->
104
+
105
+
106
+
### Using bv as an AI sidecar
107
+
108
+
bv is a graph-aware triage engine for Beads projects (.beads/beads.jsonl). Instead of parsing JSONL or hallucinating graph traversal, use robot flags for deterministic, dependency-aware outputs with precomputed metrics (PageRank, betweenness, critical path, cycles, HITS, eigenvector, k-core).
109
+
110
+
**Scope boundary:** bv handles *what to work on* (triage, priority, planning). For agent-to-agent coordination (messaging, work claiming, file reservations), use [MCP Agent Mail](https://github.com/Dicklesworthstone/mcp_agent_mail).
111
+
112
+
**⚠️ CRITICAL: Use ONLY `--robot-*` flags. Bare `bv` launches an interactive TUI that blocks your session.**
113
+
114
+
#### The Workflow: Start With Triage
115
+
116
+
**`bv --robot-triage` is your single entry point.** It returns everything you need in one call:
117
+
-`quick_ref`: at-a-glance counts + top 3 picks
118
+
-`recommendations`: ranked actionable items with scores, reasons, unblock info
119
+
-`quick_wins`: low-effort high-impact items
120
+
-`blockers_to_clear`: items that unblock the most downstream work
0 commit comments