@dreki-gg/pi-plan-mode 0.6.4 → 0.7.2
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/CHANGELOG.md +26 -0
- package/extensions/plan-mode/index.ts +204 -258
- package/extensions/plan-mode/plans-json.ts +1 -5
- package/extensions/plan-mode/tools/submit-plan.ts +144 -0
- package/extensions/plan-mode/tools/update-step.ts +143 -0
- package/extensions/plan-mode/types.ts +25 -0
- package/extensions/plan-mode/utils.test.ts +6 -0
- package/extensions/plan-mode/utils.ts +1 -82
- package/package.json +2 -7
- package/node_modules/@dreki-gg/pi-command-sandbox/dist/index.d.mts +0 -104
- package/node_modules/@dreki-gg/pi-command-sandbox/dist/index.mjs +0 -396
- package/node_modules/@dreki-gg/pi-command-sandbox/package.json +0 -42
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @dreki-gg/pi-plan-mode
|
|
2
2
|
|
|
3
|
+
## 0.7.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Drop planning conversation from executor context to prevent context window overflow when switching to a model with a smaller context window.
|
|
8
|
+
|
|
9
|
+
## 0.7.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Replace bundled workspace dependency on @dreki-gg/pi-command-sandbox with a normal registry dependency. Removes prepack/postpack scripts and bundledDependencies.
|
|
14
|
+
|
|
15
|
+
- Updated dependencies []:
|
|
16
|
+
- @dreki-gg/pi-command-sandbox@0.2.0
|
|
17
|
+
|
|
18
|
+
## 0.7.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- Replace file-based plan handoff (PLAN.md + START-PROMPT.md) with structured tools:
|
|
23
|
+
- `submit_plan` tool: planner submits structured plan data (title, context, steps, risks) → writes `.plans/<name>/plan.json`
|
|
24
|
+
- `update_step` tool: executor marks steps as done/skipped/blocked with optional notes
|
|
25
|
+
- Blocked steps pause execution and prompt user for action (skip, provide instructions, re-plan, abort)
|
|
26
|
+
- Plan completion when all steps are done or skipped
|
|
27
|
+
- Removed regex-based `[DONE:n]` scanning and markdown parsing
|
|
28
|
+
|
|
3
29
|
## 0.6.4
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|