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.
@@ -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 Bottlenecks
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
- bd_priority({ limit: 5 });
356
+ bd_blocked();
369
357
  ```
370
358
 
371
- Suggests what to work on next based on priority and dependencies.
359
+ Returns tasks that have unresolved dependencies.
372
360
 
373
- ### Execution Plan
361
+ ### View Dependencies
374
362
 
375
363
  ```typescript
376
- bd_plan();
364
+ bd_dep({ action: "tree", child: "<task-id>", type: "blocks" });
377
365
  ```
378
366
 
379
- Groups ready tasks by priority into parallel execution tracks.
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()` or `bd_priority()`.
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
- bd_insights();
129
- // Shows bottlenecks and blocked work across project
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
- - [ ] bd_insights() to find bottlenecks
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencodekit",
3
- "version": "0.11.1",
3
+ "version": "0.12.0",
4
4
  "description": "CLI tool for bootstrapping and managing OpenCodeKit projects",
5
5
  "type": "module",
6
6
  "repository": {