opencodekit 0.11.1 → 0.12.0
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.
- package/dist/index.js +1 -1
- package/dist/template/.opencode/AGENTS.md +2 -2
- package/dist/template/.opencode/agent/build.md +20 -20
- package/dist/template/.opencode/agent/explore.md +13 -13
- package/dist/template/.opencode/agent/planner.md +20 -20
- package/dist/template/.opencode/agent/review.md +18 -18
- package/dist/template/.opencode/agent/rush.md +20 -20
- package/dist/template/.opencode/agent/scout.md +16 -16
- package/dist/template/.opencode/agent/vision.md +19 -19
- package/dist/template/.opencode/command/create.md +1 -1
- package/dist/template/.opencode/command/import-plan.md +1 -1
- package/dist/template/.opencode/command/issue.md +5 -2
- package/dist/template/.opencode/command/plan.md +1 -1
- package/dist/template/.opencode/command/revert-feature.md +1 -1
- package/dist/template/.opencode/command/triage.md +11 -12
- package/dist/template/.opencode/opencode.json +479 -514
- package/dist/template/.opencode/package.json +1 -1
- package/dist/template/.opencode/plugin/beads.ts +857 -270
- package/dist/template/.opencode/skill/beads/SKILL.md +6 -18
- package/dist/template/.opencode/skill/beads/references/DEPENDENCIES.md +3 -3
- package/dist/template/.opencode/skill/beads/references/WORKFLOWS.md +1 -1
- package/package.json +1 -1
|
@@ -129,10 +129,6 @@ bd_ls({ status: "all", limit: 20 });
|
|
|
129
129
|
// See ready work (unblocked tasks)
|
|
130
130
|
bd_ready();
|
|
131
131
|
// Returns tasks where all dependencies are closed
|
|
132
|
-
|
|
133
|
-
// See execution plan with parallel tracks
|
|
134
|
-
bd_plan();
|
|
135
|
-
// Groups ready tasks by priority
|
|
136
132
|
```
|
|
137
133
|
|
|
138
134
|
## Session Start Protocol
|
|
@@ -354,29 +350,21 @@ bd_status({ include_agents: true });
|
|
|
354
350
|
|
|
355
351
|
Shows ready tasks, in-progress count, active locks, agent info.
|
|
356
352
|
|
|
357
|
-
### Find
|
|
358
|
-
|
|
359
|
-
```typescript
|
|
360
|
-
bd_insights();
|
|
361
|
-
```
|
|
362
|
-
|
|
363
|
-
Returns blocked tasks, high-priority keystones, dependency analysis.
|
|
364
|
-
|
|
365
|
-
### Priority Recommendations
|
|
353
|
+
### Find Blocked Work
|
|
366
354
|
|
|
367
355
|
```typescript
|
|
368
|
-
|
|
356
|
+
bd_blocked();
|
|
369
357
|
```
|
|
370
358
|
|
|
371
|
-
|
|
359
|
+
Returns tasks that have unresolved dependencies.
|
|
372
360
|
|
|
373
|
-
###
|
|
361
|
+
### View Dependencies
|
|
374
362
|
|
|
375
363
|
```typescript
|
|
376
|
-
|
|
364
|
+
bd_dep({ action: "tree", child: "<task-id>", type: "blocks" });
|
|
377
365
|
```
|
|
378
366
|
|
|
379
|
-
|
|
367
|
+
Shows dependency tree for a specific task.
|
|
380
368
|
|
|
381
369
|
## Git Sync
|
|
382
370
|
|
|
@@ -4,7 +4,7 @@ Beads supports task dependencies for ordering work.
|
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
|
-
Dependencies affect what work is "ready" - tasks with unmet dependencies won't appear in `bd_claim()`
|
|
7
|
+
Dependencies affect what work is "ready" - tasks with unmet dependencies won't appear in `bd_claim()` results.
|
|
8
8
|
|
|
9
9
|
## Creating Dependencies
|
|
10
10
|
|
|
@@ -125,6 +125,6 @@ bd_add({ title: "API", deps: ["task:tests"] }) // API depends on tests?
|
|
|
125
125
|
bd_show({ id: "task-abc" });
|
|
126
126
|
// Shows what blocks this task and what this task blocks
|
|
127
127
|
|
|
128
|
-
|
|
129
|
-
// Shows
|
|
128
|
+
bd_blocked();
|
|
129
|
+
// Shows all blocked tasks across project
|
|
130
130
|
```
|
|
@@ -138,7 +138,7 @@ Session Start with in_progress:
|
|
|
138
138
|
```
|
|
139
139
|
Unblocking:
|
|
140
140
|
- [ ] bd_ls({ status: "open" }) to see all tasks
|
|
141
|
-
- [ ]
|
|
141
|
+
- [ ] bd_blocked() to find blocked tasks
|
|
142
142
|
- [ ] Identify blocker tasks
|
|
143
143
|
- [ ] Work on blockers first
|
|
144
144
|
- [ ] Closing blocker unblocks dependent work
|