@dreki-gg/pi-plan-mode 0.6.3 → 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 CHANGED
@@ -1,5 +1,39 @@
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
+
29
+ ## 0.6.4
30
+
31
+ ### Patch Changes
32
+
33
+ - [`1a0857f`](https://github.com/dreki-gg/pi-extensions/commit/1a0857f33c397eb560a94b963913c9aafeca3ec5) Thanks [@jalbarrang](https://github.com/jalbarrang)! - fix(plan-mode): use sendMessage with triggerTurn for Follow up action
34
+
35
+ sendUserMessage with deliverAs: 'followUp' only queues the message after the current turn, but inside agent_end there is no active turn — so the message sits in the queue forever. Switch to sendMessage with triggerTurn: true + deliverAs: 'followUp' to correctly queue and force a new turn.
36
+
3
37
  ## 0.6.3
4
38
 
5
39
  ### Patch Changes