opencodekit 0.16.2 → 0.16.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/index.js +7683 -2224
  2. package/dist/template/.opencode/AGENTS.md +7 -7
  3. package/dist/template/.opencode/agent/build.md +1 -2
  4. package/dist/template/.opencode/agent/plan.md +0 -1
  5. package/dist/template/.opencode/agent/scout.md +52 -6
  6. package/dist/template/.opencode/command/create.md +2 -2
  7. package/dist/template/.opencode/command/design.md +1 -1
  8. package/dist/template/.opencode/command/handoff.md +2 -2
  9. package/dist/template/.opencode/command/plan.md +19 -19
  10. package/dist/template/.opencode/command/pr.md +2 -2
  11. package/dist/template/.opencode/command/research.md +9 -5
  12. package/dist/template/.opencode/command/resume.md +3 -3
  13. package/dist/template/.opencode/command/review-codebase.md +2 -2
  14. package/dist/template/.opencode/command/ship.md +4 -4
  15. package/dist/template/.opencode/command/start.md +7 -7
  16. package/dist/template/.opencode/command/status.md +3 -3
  17. package/dist/template/.opencode/command/ui-review.md +2 -2
  18. package/dist/template/.opencode/command/verify.md +1 -1
  19. package/dist/template/.opencode/memory/beads-workflow.md +65 -65
  20. package/dist/template/.opencode/memory.db-shm +0 -0
  21. package/dist/template/.opencode/memory.db-wal +0 -0
  22. package/dist/template/.opencode/plans/1770013678126-witty-planet.md +1 -1
  23. package/dist/template/.opencode/plans/1770112267595-shiny-rocket.md +258 -0
  24. package/dist/template/.opencode/plans/swarm-protocol.md +8 -8
  25. package/dist/template/.opencode/plugin/README.md +2 -2
  26. package/dist/template/.opencode/plugin/compaction.ts +1 -1
  27. package/dist/template/.opencode/plugin/swarm-enforcer.ts +6 -6
  28. package/dist/template/.opencode/skill/beads/SKILL.md +7 -7
  29. package/dist/template/.opencode/skill/beads-bridge/SKILL.md +3 -3
  30. package/dist/template/.opencode/skill/session-management/SKILL.md +2 -2
  31. package/dist/template/.opencode/skill/swarm-coordination/SKILL.md +4 -4
  32. package/dist/template/.opencode/skill/v1-run/SKILL.md +165 -0
  33. package/dist/template/.opencode/skill/v1-run/mcp.json +6 -0
  34. package/dist/template/.opencode/tool/beads-sync.ts +5 -5
  35. package/dist/template/.opencode/tool/observation.ts +1 -1
  36. package/package.json +4 -5
@@ -141,11 +141,11 @@ Limit options to 3-5. Recommend best option first.
141
141
 
142
142
  ### The Three Blockers
143
143
 
144
- These are hard gates that must be passed before proceeding. First, DO NOT start major work without running `bd show <id>` to understand the task context. Understanding the task context enables everything that follows, so skipping this blocks your ability to work effectively. Second, DO NOT generate ANY URL yourself. If you need an external link, either the user provides it or you use @scout to fetch verified information. Guessing URLs leads to hallucinated documentation and broken references. Third, DO NOT claim completion without running `bd close <id>` to mark the task as done. Claiming work is finished without closing the task breaks the tracking system and loses context.
144
+ These are hard gates that must be passed before proceeding. First, DO NOT start major work without running `br show <id>` to understand the task context. Understanding the task context enables everything that follows, so skipping this blocks your ability to work effectively. Second, DO NOT generate ANY URL yourself. If you need an external link, either the user provides it or you use @scout to fetch verified information. Guessing URLs leads to hallucinated documentation and broken references. Third, DO NOT claim completion without running `br close <id>` to mark the task as done. Claiming work is finished without closing the task breaks the tracking system and loses context.
145
145
 
146
146
  ### Verification chain
147
147
 
148
- Think of these checkpoints as a chain where each step enables the next. Running `bd show <id>` gives you task context, which enables you to proceed with confidence. Verifying links through fetch before using them enables you to trust your sources. Running `bd close <id>` marks you as complete and finalizes the state.
148
+ Think of these checkpoints as a chain where each step enables the next. Running `br show <id>` gives you task context, which enables you to proceed with confidence. Verifying links through fetch before using them enables you to trust your sources. Running `br close <id>` marks you as complete and finalizes the state.
149
149
 
150
150
  ### No guessing protocol
151
151
 
@@ -331,15 +331,15 @@ Beads is a git-backed task tracking system. Tasks have IDs, statuses, and depend
331
331
 
332
332
  ### Leader protocol for build and plan agents
333
333
 
334
- Only build and plan agents own the beads database. Subagents work read-only and report findings back to their leader. The leader follows this chain: run `bd ready` to find unblocked work, run `bd update <id> --status in_progress` to claim the task, do the editing work, run `bd close <id> --reason "..."` to mark it complete, run `bd sync` to push changes to git, and then restart the session. Skipping any step breaks the tracking flow.
334
+ Only build and plan agents own the beads database. Subagents work read-only and report findings back to their leader. The leader follows this chain: run `br ready` to find unblocked work, run `br update <id> --status in_progress` to claim the task, do the editing work, run `br close <id> --reason "..."` to mark it complete, run `br sync --flush-only` to export changes to JSONL (then git commit/push manually), and then restart the session. Skipping any step breaks the tracking flow.
335
335
 
336
336
  ### Subagent protocol
337
337
 
338
- Subagents must not modify beads state. When a subagent needs task information, read it with `bd show <id>`. Report findings back to the leader agent rather than making decisions yourself. Let the leader agent update task status. This keeps the tracking system clean and ensures only one agent controls each task's state.
338
+ Subagents must not modify beads state. When a subagent needs task information, read it with `br show <id>`. Report findings back to the leader agent rather than making decisions yourself. Let the leader agent update task status. This keeps the tracking system clean and ensures only one agent controls each task's state.
339
339
 
340
340
  ### Checkpoints before claiming done
341
341
 
342
- Before you claim work is complete, verify these things have happened. You ran `bd update <id> --status in_progress` when you started. You completed the actual editing work. You ran `bd close <id> --reason "..."` with a meaningful reason explaining what you did. You ran `bd sync` to push the changes. If any of these are missing, the work is not done.
342
+ Before you claim work is complete, verify these things have happened. You ran `br update <id> --status in_progress` when you started. You completed the actual editing work. You ran `br close <id> --reason "..."` with a meaningful reason explaining what you did. You ran `br sync --flush-only` to export changes to JSONL (then git commit/push). If any of these are missing, the work is not done.
343
343
 
344
344
  ### Atomic Version
345
345
 
@@ -474,8 +474,8 @@ Before you claim completion, verify these things:
474
474
 
475
475
  If review suggests simplification, implement it before proceeding.
476
476
 
477
- 3. You ran `bd close <id>` with a meaningful reason
478
- 4. You ran `bd sync` to push changes
477
+ 3. You ran `br close <id>` with a meaningful reason
478
+ 4. You ran `br sync --flush-only` to export changes
479
479
  5. There are no pending LSP nudges
480
480
  6. You saved observations for any important decisions or patterns
481
481
 
@@ -2,7 +2,6 @@
2
2
  description: Leader agent for plan execution and parallel task coordination via Task tool.
3
3
  mode: primary
4
4
  temperature: 0.2
5
- steps: 50
6
5
  permission:
7
6
  bash:
8
7
  "*": allow
@@ -335,7 +334,7 @@ PARALLEL FLOW:
335
334
  3. Task({ subagent_type: "...", prompt: "..." }) → Spawn workers
336
335
  4. Wait for results (automatic)
337
336
  5. Synthesize and verify
338
- 6. bd close <bead>
337
+ 6. br close <bead>
339
338
 
340
339
  SINGLE FLOW:
341
340
  Read → Edit → Verify → Repeat → Close
@@ -2,7 +2,6 @@
2
2
  description: Primary planning agent for architecture and multi-phase execution; produces actionable plans with gated steps.
3
3
  mode: primary
4
4
  temperature: 0.2
5
- steps: 50
6
5
  permission:
7
6
  write:
8
7
  "*": ask
@@ -130,15 +130,61 @@ To construct a permalink: use `grepsearch` to find code, then build the URL from
130
130
  | Priority | Tool | Use Case | Speed |
131
131
  | -------- | ------------- | ----------------------------------------- | ------- |
132
132
  | 1 | memory-search | Past research findings | Instant |
133
- | 2 | context7 | Official library docs | Fast |
134
- | 3 | codesearch | Exa Code API for SDK/library patterns | Fast |
135
- | 4 | grepsearch | Cross-repo GitHub code search (1M+ repos) | Medium |
136
- | 5 | webfetch | Specific doc URLs, READMEs, changelogs | Medium |
137
- | 6 | opensrc + LSP | Clone & analyze source code | Slow |
138
- | 7 | websearch | Tutorials, blog posts, recent news | Slow |
133
+ | 2 | v1-run | npm package health, vulns, comparisons | Fast |
134
+ | 3 | context7 | Official library docs | Fast |
135
+ | 4 | codesearch | Exa Code API for SDK/library patterns | Fast |
136
+ | 5 | grepsearch | Cross-repo GitHub code search (1M+ repos) | Medium |
137
+ | 6 | webfetch | Specific doc URLs, READMEs, changelogs | Medium |
138
+ | 7 | opensrc + LSP | Clone & analyze source code | Slow |
139
+ | 8 | websearch | Tutorials, blog posts, recent news | Slow |
139
140
 
140
141
  **Rule:** Exhaust faster tools before slower ones. Run tools in parallel when independent.
141
142
 
143
+ ## v1-run MCP (npm Package Intelligence)
144
+
145
+ Use for npm package evaluation before adding dependencies. Load the skill first:
146
+
147
+ ```typescript
148
+ skill({ name: "v1-run" });
149
+ ```
150
+
151
+ ### Primary Tool: get_package_health
152
+
153
+ ```typescript
154
+ // Comprehensive health check (use this first)
155
+ skill_mcp({ skill_name: "v1-run", tool_name: "get_package_health", arguments: '{"name": "zod"}' });
156
+ ```
157
+
158
+ Returns: version, vulnerabilities, health score (0-100), downloads, TypeScript support, maintenance status, AI recommendation.
159
+
160
+ ### Compare Packages
161
+
162
+ ```typescript
163
+ // Side-by-side comparison (2-5 packages)
164
+ skill_mcp({
165
+ skill_name: "v1-run",
166
+ tool_name: "compare_packages",
167
+ arguments: '{"packages": ["zod", "yup", "joi"]}',
168
+ });
169
+ ```
170
+
171
+ ### Other Tools
172
+
173
+ | Tool | Use Case |
174
+ | ----------------------- | ------------------------------------- |
175
+ | `check_vulnerabilities` | Security audit for specific version |
176
+ | `check_deprecated` | Check if package is deprecated |
177
+ | `find_alternatives` | Discover better options for a package |
178
+ | `check_types` | Verify TypeScript support |
179
+ | `get_package_version` | Get latest version only |
180
+
181
+ **When to use v1-run:**
182
+
183
+ - Choosing between npm packages → `compare_packages`
184
+ - Before adding a dependency → `get_package_health`
185
+ - Security audit → `check_vulnerabilities`
186
+ - Package seems abandoned → `find_alternatives`
187
+
142
188
  ## context7 Tools
143
189
 
144
190
  Use to access up-to-date library documentation (37.6k+ libraries).
@@ -45,7 +45,7 @@ Review findings for:
45
45
  ## Load Bead Context
46
46
 
47
47
  ```bash
48
- bd show $ARGUMENTS
48
+ br show $ARGUMENTS
49
49
  ```
50
50
 
51
51
  Check what artifacts already exist:
@@ -308,4 +308,4 @@ Next: /research $ARGUMENTS (optional)
308
308
  | ------------------ | ---------------------- |
309
309
  | Research first | `/research $ARGUMENTS` |
310
310
  | Plan after spec | `/plan $ARGUMENTS` |
311
- | Create bead itself | `bd create "Title"` |
311
+ | Create bead itself | `br create "Title"` |
@@ -605,7 +605,7 @@ observation({
605
605
  For component/page designs:
606
606
 
607
607
  ```bash
608
- bd create "Implement [component/page] design" -t task -p 2
608
+ br create "Implement [component/page] design" -t task -p 2
609
609
  ```
610
610
 
611
611
  ### Bead Integration
@@ -44,7 +44,7 @@ Don't grind past diminishing returns. A clean handoff beats degraded output.
44
44
 
45
45
  Get current task status:
46
46
 
47
- !`bd show $ARGUMENTS`
47
+ !`br show $ARGUMENTS`
48
48
 
49
49
  Get git state:
50
50
 
@@ -178,7 +178,7 @@ Start next session with: `/resume $ARGUMENTS`
178
178
  ## Sync State
179
179
 
180
180
  ```bash
181
- bd sync
181
+ br sync --flush-only
182
182
  ```
183
183
 
184
184
  This commits the handoff and pushes to remote.
@@ -28,7 +28,7 @@ skill({ name: "memory-system" });
28
28
  ```
29
29
 
30
30
  ```bash
31
- bd show $ARGUMENTS
31
+ br show $ARGUMENTS
32
32
  ```
33
33
 
34
34
  Check for existing artifacts:
@@ -288,47 +288,47 @@ With user approval or `--create-beads` flag:
288
288
  PARENT=$ARGUMENTS
289
289
 
290
290
  # Task 1 (no blockers - starts immediately)
291
- bd create "[Task 1 title]" -t task -p 2
291
+ br create "[Task 1 title]" -t task -p 2
292
292
  # Capture: bd-xxx1
293
293
 
294
294
  # Link to parent
295
- bd dep add bd-xxx1 $PARENT
295
+ br dep add bd-xxx1 $PARENT
296
296
 
297
297
  # Task 2 (blocked by Task 1)
298
- bd create "[Task 2 title]" -t task -p 2
298
+ br create "[Task 2 title]" -t task -p 2
299
299
  # Capture: bd-xxx2
300
300
 
301
- bd dep add bd-xxx2 $PARENT
302
- bd dep add bd-xxx2 bd-xxx1 --type blocks
301
+ br dep add bd-xxx2 $PARENT
302
+ br dep add bd-xxx2 bd-xxx1 --type blocks
303
303
 
304
304
  # Task 3 (blocked by Task 2)
305
- bd create "[Task 3 title]" -t task -p 2
305
+ br create "[Task 3 title]" -t task -p 2
306
306
  # Capture: bd-xxx3
307
307
 
308
- bd dep add bd-xxx3 $PARENT
309
- bd dep add bd-xxx3 bd-xxx2 --type blocks
308
+ br dep add bd-xxx3 $PARENT
309
+ br dep add bd-xxx3 bd-xxx2 --type blocks
310
310
  ```
311
311
 
312
312
  ### Create Subtasks (for complex tasks)
313
313
 
314
314
  ```bash
315
315
  # For Task 2, create subtasks:
316
- bd create "[Subtask 2.1 title]" -t subtask -p 2
316
+ br create "[Subtask 2.1 title]" -t subtask -p 2
317
317
  # Capture: bd-xxx2.1
318
318
 
319
- bd dep add bd-xxx2.1 bd-xxx2
319
+ br dep add bd-xxx2.1 bd-xxx2
320
320
 
321
- bd create "[Subtask 2.2 title]" -t subtask -p 2
321
+ br create "[Subtask 2.2 title]" -t subtask -p 2
322
322
  # Capture: bd-xxx2.2
323
323
 
324
- bd dep add bd-xxx2.2 bd-xxx2
325
- bd dep add bd-xxx2.2 bd-xxx2.1 --type blocks # Sequential dependency
324
+ br dep add bd-xxx2.2 bd-xxx2
325
+ br dep add bd-xxx2.2 bd-xxx2.1 --type blocks # Sequential dependency
326
326
  ```
327
327
 
328
328
  ### Verify Hierarchy
329
329
 
330
330
  ```bash
331
- bd dep tree $ARGUMENTS
331
+ br dep tree $ARGUMENTS
332
332
  ```
333
333
 
334
334
  ---
@@ -442,7 +442,7 @@ After creating hierarchy, execute READY tasks in parallel:
442
442
 
443
443
  ```bash
444
444
  # Check what's ready to start
445
- bd ready --json
445
+ br ready --json
446
446
  ```
447
447
 
448
448
  ```typescript
@@ -473,7 +473,7 @@ for (const taskId of backgroundTaskIds) {
473
473
  }
474
474
 
475
475
  // Check newly unblocked tasks
476
- bd ready // → Next wave of tasks now READY
476
+ br ready // → Next wave of tasks now READY
477
477
 
478
478
  // Cleanup
479
479
  background_cancel({ all: true })
@@ -484,7 +484,7 @@ background_cancel({ all: true })
484
484
  ## Phase 8: Sync and Report
485
485
 
486
486
  ```bash
487
- bd sync
487
+ br sync --flush-only
488
488
  ```
489
489
 
490
490
  ### Output (without child beads)
@@ -552,4 +552,4 @@ Next: /start bd-xxx1
552
552
  | Research before plan | `/research <bead-id>` |
553
553
  | Start first task | `/start <first-task-id>` |
554
554
  | Ship the work | `/ship <bead-id>` |
555
- | View hierarchy | `bd dep tree <bead-id>` |
555
+ | View hierarchy | `br dep tree <bead-id>` |
@@ -108,7 +108,7 @@ Resolve conflicts before creating PR:
108
108
  **Load bead context (if provided):**
109
109
 
110
110
  ```
111
- !`bd show $ARGUMENTS`
111
+ !`br show $ARGUMENTS`
112
112
  ```
113
113
 
114
114
  **Load artifacts:**
@@ -257,7 +257,7 @@ CI Status:
257
257
  ## Phase 7: Update Bead & Sync
258
258
 
259
259
  ```bash
260
- bd sync
260
+ br sync --flush-only
261
261
  ```
262
262
 
263
263
  ## Output
@@ -23,6 +23,9 @@ if (thorough) {
23
23
  skill({ name: "deep-research" });
24
24
  }
25
25
 
26
+ // For npm package evaluation
27
+ skill({ name: "v1-run" });
28
+
26
29
  // For source code analysis
27
30
  skill({ name: "source-code-research" });
28
31
 
@@ -111,7 +114,7 @@ Return: Documentation, code examples, best practices`,
111
114
 
112
115
  ### Load Bead Details
113
116
 
114
- !`bd show $ARGUMENTS`
117
+ !`br show $ARGUMENTS`
115
118
  !`cat .beads/artifacts/$ARGUMENTS/spec.md`
116
119
 
117
120
  Extract questions that need answering from spec.
@@ -149,10 +152,11 @@ If memory search fails (Ollama not running), continue to external sources.
149
152
 
150
153
  1. **Codebase patterns** (highest trust) - Delegate to @explore for LSP analysis
151
154
  2. **Official docs** (high trust) - What does the library documentation say?
152
- 3. **Context7** (high trust) - API usage and examples
153
- 4. **Source code** (high trust) - Library implementation (use `source-code-research` skill)
154
- 5. **GitHub examples** (medium trust) - Real-world patterns via codesearch/grepsearch
155
- 6. **Web search** (lower trust) - Only if tiers 1-5 don't answer
155
+ 3. **v1-run** (high trust) - npm package health, vulnerabilities, comparisons
156
+ 4. **Context7** (high trust) - API usage and examples
157
+ 5. **Source code** (high trust) - Library implementation (use `source-code-research` skill)
158
+ 6. **GitHub examples** (medium trust) - Real-world patterns via codesearch/grepsearch
159
+ 7. **Web search** (lower trust) - Only if tiers 1-6 don't answer
156
160
 
157
161
  ## Research
158
162
 
@@ -18,9 +18,9 @@ skill({ name: "memory-system" });
18
18
 
19
19
  ## Verify The Task Exists
20
20
 
21
- !`bd show $ARGUMENTS`
21
+ !`br show $ARGUMENTS`
22
22
 
23
- If not found, check `bd list --status=all`. Maybe it was closed, or you have the wrong ID.
23
+ If not found, check `br list --status=all`. Maybe it was closed, or you have the wrong ID.
24
24
 
25
25
  ## Check Git State
26
26
 
@@ -168,7 +168,7 @@ Next: [from handoff resume instructions]
168
168
  Mark in progress if not already:
169
169
 
170
170
  ```bash
171
- bd update $ARGUMENTS --status in_progress
171
+ br update $ARGUMENTS --status in_progress
172
172
  ```
173
173
 
174
174
  Then continue with implementation:
@@ -35,7 +35,7 @@ Parse `$ARGUMENTS` to determine what to review:
35
35
  | Input | Scope | How to Get Code |
36
36
  | ------------------------ | ---------------------- | ------------------------------------------- |
37
37
  | File/directory path | That path only | `read` or `glob` + `read` |
38
- | Bead ID (e.g., `bd-123`) | Implementation vs spec | `bd show` then `git diff` from spec |
38
+ | Bead ID (e.g., `br-123`) | Implementation vs spec | `br show` then `git diff` from spec |
39
39
  | PR number (e.g., `#45`) | PR changes | `gh pr diff 45` |
40
40
  | `all` or empty | Recent changes | `git diff main...HEAD` or `git diff HEAD~5` |
41
41
 
@@ -123,7 +123,7 @@ Review each category with specific focus:
123
123
  For each Critical or Important finding:
124
124
 
125
125
  ```bash
126
- bd create "[Review] <brief issue description>" -t bug -p 1
126
+ br create "[Review] <brief issue description>" -t bug -p 1
127
127
  ```
128
128
 
129
129
  Skip creating beads for Minor issues (just report them).
@@ -43,8 +43,8 @@ Apply past learnings to avoid known issues.
43
43
  ## Verify Task & Claim
44
44
 
45
45
  ```bash
46
- bd show $ARGUMENTS
47
- bd update $ARGUMENTS --status in_progress
46
+ br show $ARGUMENTS
47
+ br update $ARGUMENTS --status in_progress
48
48
  ```
49
49
 
50
50
  ## Pre-Flight Verification
@@ -166,8 +166,8 @@ question({
166
166
  If confirmed:
167
167
 
168
168
  ```bash
169
- bd close $ARGUMENTS --reason "Shipped: verification + review passed"
170
- bd sync
169
+ br close $ARGUMENTS --reason "Shipped: verification + review passed"
170
+ br sync --flush-only
171
171
  ```
172
172
 
173
173
  ## Record Learnings (On Completion)
@@ -47,7 +47,7 @@ bd hooks install 2>/dev/null || echo "Hooks already installed"
47
47
 
48
48
  ### Active Tasks
49
49
 
50
- !`bd list --status=in_progress`
50
+ !`br list --status=in_progress`
51
51
 
52
52
  If you have uncommitted changes, ask the user:
53
53
 
@@ -59,7 +59,7 @@ If you already have tasks in_progress, warn the user before claiming another.
59
59
 
60
60
  ## Task Details
61
61
 
62
- !`bd show $ARGUMENTS`
62
+ !`br show $ARGUMENTS`
63
63
 
64
64
  Identify the task type from the bead:
65
65
 
@@ -72,13 +72,13 @@ Identify the task type from the bead:
72
72
  Check for parent/child relationships:
73
73
 
74
74
  ```bash
75
- bd dep tree $ARGUMENTS 2>/dev/null || echo "No dependencies"
75
+ br dep tree $ARGUMENTS 2>/dev/null || echo "No dependencies"
76
76
  ```
77
77
 
78
78
  ## Claim The Task
79
79
 
80
80
  ```bash
81
- bd update $ARGUMENTS --status in_progress
81
+ br update $ARGUMENTS --status in_progress
82
82
  ```
83
83
 
84
84
  ## Sync Beads State to OpenCode Todos
@@ -103,7 +103,7 @@ Extract task info and parent branch for a readable branch name:
103
103
  PARENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
104
104
 
105
105
  # Get task title and type from bead
106
- BEAD_INFO=$(bd show $ARGUMENTS --json 2>/dev/null)
106
+ BEAD_INFO=$(br show $ARGUMENTS --json 2>/dev/null)
107
107
  BEAD_TITLE=$(echo "$BEAD_INFO" | jq -r '.title // ""' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/-/g' | sed 's/--*/-/g' | cut -c1-40)
108
108
  BEAD_TYPE=$(echo "$BEAD_INFO" | jq -r '.type // "task"')
109
109
 
@@ -150,7 +150,7 @@ skill({ name: "using-git-worktrees" });
150
150
  PARENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
151
151
 
152
152
  # Get task title for readable worktree name
153
- BEAD_INFO=$(bd show $ARGUMENTS --json 2>/dev/null)
153
+ BEAD_INFO=$(br show $ARGUMENTS --json 2>/dev/null)
154
154
  BEAD_TITLE=$(echo "$BEAD_INFO" | jq -r '.title // ""' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/-/g' | sed 's/--*/-/g' | cut -c1-40)
155
155
  BEAD_TYPE=$(echo "$BEAD_INFO" | jq -r '.type // "task"')
156
156
 
@@ -301,7 +301,7 @@ Use swarm planning to analyze the specific task:
301
301
 
302
302
  ```typescript
303
303
  // Get task details from bead
304
- const beadInfo = bd show $ARGUMENTS --json;
304
+ const beadInfo = br show $ARGUMENTS --json;
305
305
  const taskTitle = beadInfo.title;
306
306
  const taskDescription = beadInfo.description;
307
307
 
@@ -22,9 +22,9 @@ Run all status checks simultaneously:
22
22
 
23
23
  ```
24
24
  # Beads CLI commands
25
- !`bd status`
26
- !`bd list --status in_progress --limit 10`
27
- !`bd list --status ready --limit 10`
25
+ !`br status`
26
+ !`br list --status in_progress --limit 10`
27
+ !`br list --status ready --limit 10`
28
28
 
29
29
  # Git state
30
30
  !`git status --porcelain`
@@ -284,10 +284,10 @@ If `--bead=<id>` provided:
284
284
 
285
285
  ```bash
286
286
  # Create issues for critical findings
287
- bd create "[UI] Fix invisible focus states" -t bug -p 1
287
+ br create "[UI] Fix invisible focus states" -t bug -p 1
288
288
 
289
289
  # Then link to parent bead
290
- bd dep add <task-id> <bead-id>
290
+ br dep add <task-id> <bead-id>
291
291
  ```
292
292
 
293
293
  ---
@@ -41,7 +41,7 @@ memory_search({ query: "$ARGUMENTS verification issues patterns", limit: 3 });
41
41
  ## Phase 2: Gather Artifacts
42
42
 
43
43
  ```bash
44
- bd show $ARGUMENTS
44
+ br show $ARGUMENTS
45
45
  ls .beads/artifacts/$ARGUMENTS/
46
46
  ```
47
47