@prjct.app/pi-plan 0.1.2 → 0.1.3

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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.3
4
+
5
+ - Clarify the package description and add focused discovery keywords.
6
+ - Declare the cover image for the official Pi package gallery.
7
+
8
+ - Align repository, documentation, and cover URLs with the npm package name.
9
+
3
10
  ## 0.1.2
4
11
 
5
12
  - Use a publicly accessible cover URL so npm renders the image for every visitor.
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # pi-plan
2
2
 
3
- [![pi-plan — extension for PI Agent](https://raw.githubusercontent.com/prjct-app/pi-image-preview/main/docs/covers/pi-plan.png)](https://pi.dev)
3
+ [![pi-plan — extension for PI Agent](https://raw.githubusercontent.com/prjct-app/pi-clipboard/main/docs/covers/pi-plan.png)](https://pi.dev)
4
4
 
5
- Read-only planning with an approval step and tracked execution in Pi.
5
+ Plan before editing in PI Agent with read-only tool restrictions, an approval step, and task progress tracking.
6
6
 
7
7
  `@prjct.app/pi-plan` · Planning commands and progress UI; one extension.
8
8
 
@@ -46,7 +46,7 @@ pi remove npm:@prjct.app/pi-plan
46
46
 
47
47
  Use `pi config` to enable or disable individual resources. Use `pi config -l` for project settings and add `-l` to removal when you installed locally.
48
48
 
49
- To pin version 0.1.2, use `pi install npm:@prjct.app/pi-plan@0.1.2`. Pi skips pinned npm versions during package updates. For a Git installation, update or remove using the same `git:github.com/prjct-app/pi-plan-mode` source instead of the npm source.
49
+ To pin version 0.1.3, use `pi install npm:@prjct.app/pi-plan@0.1.3`. Pi skips pinned npm versions during package updates. For a Git installation, update or remove using the same `git:github.com/prjct-app/pi-plan` source instead of the npm source.
50
50
 
51
51
  When switching from GitHub to npm, remove the Git installation first, then install the npm package and restart Pi.
52
52
 
package/docs/package.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  - npm name: `@prjct.app/pi-plan`.
6
6
  - Initial version: `0.1.0`.
7
- - Source repository: [prjct-app/pi-plan-mode](https://github.com/prjct-app/pi-plan-mode).
7
+ - Source repository: [prjct-app/pi-plan](https://github.com/prjct-app/pi-plan).
8
8
  - Tested host: Pi `0.85.1`; Node.js `22.19+`.
9
9
 
10
10
  The npm name and repository name may differ. Repository URLs remain unchanged. Existing runtime command names, event names, persisted entry types, and settings keys are unchanged by the package rename.
@@ -52,3 +52,7 @@ These links are pinned to the tested Pi version rather than the moving main bran
52
52
  - [TUI: components, rendering, terminal widths, and image support](https://github.com/earendil-works/pi/blob/v0.85.1/packages/coding-agent/docs/tui.md).
53
53
 
54
54
  The installed `@earendil-works/pi-coding-agent@0.85.1` package ships the same guides under `docs/`. The [current official guide](https://github.com/earendil-works/pi/blob/main/packages/coding-agent/docs/packages.md) may describe changes beyond this tested baseline.
55
+
56
+ ## Discovery metadata
57
+
58
+ The `pi-package` keyword identifies this package for the official Pi gallery. Focused keywords describe its actual features. The `pi.image` field points to its public cover, following the [official gallery metadata format](https://github.com/earendil-works/pi/blob/v0.85.1/packages/coding-agent/docs/packages.md#gallery-metadata).
package/package.json CHANGED
@@ -1,20 +1,26 @@
1
1
  {
2
2
  "name": "@prjct.app/pi-plan",
3
- "version": "0.1.2",
4
- "description": "Read-only planning with an approval step and tracked execution in Pi.",
3
+ "version": "0.1.3",
4
+ "description": "Plan before editing in PI Agent with read-only tool restrictions, an approval step, and task progress tracking.",
5
5
  "type": "module",
6
6
  "keywords": [
7
7
  "pi-package",
8
8
  "pi",
9
- "plan",
9
+ "pi-agent",
10
+ "pi-coding-agent",
11
+ "pi-extension",
12
+ "ai-coding",
13
+ "developer-tools",
10
14
  "planning",
11
- "workflow",
12
- "terminal"
15
+ "plan-mode",
16
+ "task-management",
17
+ "human-in-the-loop"
13
18
  ],
14
19
  "pi": {
15
20
  "extensions": [
16
21
  "./index.ts"
17
- ]
22
+ ],
23
+ "image": "https://raw.githubusercontent.com/prjct-app/pi-clipboard/main/docs/covers/pi-plan.png"
18
24
  },
19
25
  "scripts": {
20
26
  "check": "tsc --noEmit",
@@ -42,11 +48,11 @@
42
48
  "license": "MIT",
43
49
  "repository": {
44
50
  "type": "git",
45
- "url": "https://github.com/prjct-app/pi-plan-mode.git"
51
+ "url": "git+https://github.com/prjct-app/pi-plan.git"
46
52
  },
47
- "homepage": "https://github.com/prjct-app/pi-plan-mode#readme",
53
+ "homepage": "https://github.com/prjct-app/pi-plan#readme",
48
54
  "bugs": {
49
- "url": "https://github.com/prjct-app/pi-plan-mode/issues"
55
+ "url": "https://github.com/prjct-app/pi-plan/issues"
50
56
  },
51
57
  "publishConfig": {
52
58
  "access": "public"