@janvitos/pi-plan-build 0.1.39 → 0.1.41

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/README.md CHANGED
@@ -4,6 +4,24 @@
4
4
 
5
5
  A global [Pi coding agent](https://github.com/badlogic/pi-mono) extension that adds persistent **Plan** and **Build** modes, guarded plan-file editing, interactive planning questions, full-plan review, explicit approval, and clean-session implementation handoffs.
6
6
 
7
+ ## Plan mode
8
+
9
+ Explore a codebase, ask questions, and prepare an implementation plan without modifying project files.
10
+
11
+ ![Pi Plan mode composer](docs/images/plan.png)
12
+
13
+ ## Build mode
14
+
15
+ Switch to Build mode to implement the approved plan directly in the current session or a clean session.
16
+
17
+ ![Pi Build mode composer](docs/images/build.png)
18
+
19
+ ## Step-by-step execution
20
+
21
+ Optionally keep the approved plan visible in a docked side panel while implementing and verifying one step at a time.
22
+
23
+ ![Pi step-by-step plan execution panel](docs/images/step-by-step.png)
24
+
7
25
  ## Features
8
26
 
9
27
  - New sessions start in **Build** mode.
@@ -85,7 +103,7 @@ Selecting **Stay in Plan mode**, or pressing Escape while the approval dialog is
85
103
 
86
104
  Both actions leave Plan mode active, stop the agent, and wait for the next user message.
87
105
 
88
- ### Step-by-step execution panel (Experimental)
106
+ ### Step-by-step execution details (Experimental)
89
107
 
90
108
  > **Experimental feature:** Step-by-step execution is still being developed. Expect UI and workflow changes, and please report issues or unexpected behavior.
91
109
 
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@janvitos/pi-plan-build",
3
- "version": "0.1.39",
3
+ "version": "0.1.41",
4
4
  "description": "Plan safely, approve explicitly, then implement here or in a clean session.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -25,7 +25,8 @@
25
25
  "question-ui.ts",
26
26
  "plan-execution.ts",
27
27
  "plan-panel.ts",
28
- "utils.ts"
28
+ "utils.ts",
29
+ "docs/images"
29
30
  ],
30
31
  "publishConfig": {
31
32
  "access": "public"
@@ -42,6 +43,7 @@
42
43
  "pi": {
43
44
  "extensions": [
44
45
  "./index.ts"
45
- ]
46
+ ],
47
+ "image": "https://raw.githubusercontent.com/janvitos/pi-plan-build/main/docs/images/step-by-step.png"
46
48
  }
47
49
  }