@janvitos/pi-plan-build 0.1.39 → 0.1.40

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,17 @@
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
+ ## Screenshots
8
+
9
+ <p align="center">
10
+ <img src="docs/images/plan.png" alt="Pi Plan mode composer" width="49%" />
11
+ <img src="docs/images/build.png" alt="Pi Build mode composer" width="49%" />
12
+ </p>
13
+
14
+ <p align="center">
15
+ <img src="docs/images/step-by-step.png" alt="Pi step-by-step plan execution panel" width="90%" />
16
+ </p>
17
+
7
18
  ## Features
8
19
 
9
20
  - New sessions start in **Build** mode.
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.40",
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
  }