@prjct.app/pi-clipboard 0.1.1 → 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.1
4
11
 
5
12
  - Add a dedicated cover to the GitHub and npm README.
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # pi-clipboard
2
2
 
3
- [![pi-clipboard — extension for PI Agent](https://raw.githubusercontent.com/prjct-app/pi-image-preview/main/docs/cover.png)](https://pi.dev)
3
+ [![pi-clipboard — extension for PI Agent](https://raw.githubusercontent.com/prjct-app/pi-clipboard/main/docs/cover.png)](https://pi.dev)
4
4
 
5
- Preview pasted images above the native Pi editor.
5
+ Preview pasted images in PI Agent before sending them, with inline thumbnails and a compact attachment gallery.
6
6
 
7
7
  `@prjct.app/pi-clipboard` · Clipboard image previews; one extension.
8
8
 
@@ -41,7 +41,7 @@ pi remove npm:@prjct.app/pi-clipboard
41
41
 
42
42
  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.
43
43
 
44
- To pin version 0.1.1, use `pi install npm:@prjct.app/pi-clipboard@0.1.1`. Pi skips pinned npm versions during package updates. For a Git installation, update or remove using the same `git:github.com/prjct-app/pi-image-preview` source instead of the npm source.
44
+ To pin version 0.1.3, use `pi install npm:@prjct.app/pi-clipboard@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-clipboard` source instead of the npm source.
45
45
 
46
46
  When switching from GitHub to npm, remove the Git installation first, then install the npm package and restart Pi.
47
47
 
package/docs/package.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  - npm name: `@prjct.app/pi-clipboard`.
6
6
  - Initial version: `0.1.0`.
7
- - Source repository: [prjct-app/pi-image-preview](https://github.com/prjct-app/pi-image-preview).
7
+ - Source repository: [prjct-app/pi-clipboard](https://github.com/prjct-app/pi-clipboard).
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,27 @@
1
1
  {
2
2
  "name": "@prjct.app/pi-clipboard",
3
- "version": "0.1.1",
4
- "description": "Preview pasted images above the native Pi editor.",
3
+ "version": "0.1.3",
4
+ "description": "Preview pasted images in PI Agent before sending them, with inline thumbnails and a compact attachment gallery.",
5
5
  "type": "module",
6
6
  "keywords": [
7
7
  "pi-package",
8
8
  "pi",
9
+ "pi-agent",
10
+ "pi-coding-agent",
11
+ "pi-extension",
12
+ "ai-coding",
13
+ "developer-tools",
9
14
  "clipboard",
10
- "image",
11
- "preview",
12
- "terminal"
15
+ "image-preview",
16
+ "screenshots",
17
+ "terminal",
18
+ "tui"
13
19
  ],
14
20
  "pi": {
15
21
  "extensions": [
16
22
  "./index.ts"
17
- ]
23
+ ],
24
+ "image": "https://raw.githubusercontent.com/prjct-app/pi-clipboard/main/docs/cover.png"
18
25
  },
19
26
  "scripts": {
20
27
  "check": "tsc --noEmit",
@@ -38,11 +45,11 @@
38
45
  "license": "MIT",
39
46
  "repository": {
40
47
  "type": "git",
41
- "url": "https://github.com/prjct-app/pi-image-preview.git"
48
+ "url": "git+https://github.com/prjct-app/pi-clipboard.git"
42
49
  },
43
- "homepage": "https://github.com/prjct-app/pi-image-preview#readme",
50
+ "homepage": "https://github.com/prjct-app/pi-clipboard#readme",
44
51
  "bugs": {
45
- "url": "https://github.com/prjct-app/pi-image-preview/issues"
52
+ "url": "https://github.com/prjct-app/pi-clipboard/issues"
46
53
  },
47
54
  "publishConfig": {
48
55
  "access": "public"