@prjct.app/pi-clipboard 0.1.5 → 0.1.7

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,3 +1,7 @@
1
+ ## [0.1.7](https://github.com/prjct-app/pi-clipboard/compare/v0.1.6...v0.1.7) (2026-09-17)
2
+
3
+ ## [0.1.6](https://github.com/prjct-app/pi-clipboard/compare/v0.1.5...v0.1.6) (2026-09-10)
4
+
1
5
  ## [0.1.5](https://github.com/prjct-app/pi-clipboard/compare/v0.1.4...v0.1.5) (2026-09-10)
2
6
 
3
7
  ### Bug Fixes
package/CONTRIBUTING.md CHANGED
@@ -7,6 +7,7 @@
7
7
  - Keep image data local and limit file access to Pi clipboard files in the system temporary directory.
8
8
  - Keep tests offline and use temporary files rather than the real Pi configuration or clipboard.
9
9
  - Run `npm run check` and `npm test` before review.
10
+ - Build the compiled local copy Pi loads with `npm run build:pi`. It writes `~/.pi/agent/builds/<package>` outside the repository, because compiled code inside it would load the repository's development copy of Pi instead of the host's.
10
11
  - Never push, open or merge a pull request, publish, or deploy without explicit authorization.
11
12
 
12
13
  ## Package documentation
package/README.md CHANGED
@@ -6,6 +6,12 @@ Preview pasted images in PI Agent before sending them, with inline thumbnails an
6
6
 
7
7
  `@prjct.app/pi-clipboard` · Clipboard image previews; one extension.
8
8
 
9
+ ## Demo
10
+
11
+ [![Watch the pi-clipboard promotional demo](media/pi-clipboard-demo/poster.png)](https://github.com/prjct-app/pi-clipboard/raw/refs/heads/main/media/pi-clipboard-demo/pi-clipboard-demo.mp4)
12
+
13
+ [Watch or download the 40-second demo](https://github.com/prjct-app/pi-clipboard/raw/refs/heads/main/media/pi-clipboard-demo/pi-clipboard-demo.mp4). It shows the native PI Agent workflow for pasting, previewing, and reviewing one or several images before sending. The film uses the package's monochrome cover identity and an original instrumental soundtrack with no voice-over or external samples.
14
+
9
15
  ## Install
10
16
 
11
17
  Requires Pi installed separately and Node.js **22.19 or later**. Compatibility is tested with **Pi 0.85.1**; newer versions are not yet verified. This is an independent community package.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prjct.app/pi-clipboard",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
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": [
@@ -26,7 +26,8 @@
26
26
  "scripts": {
27
27
  "check": "tsc --noEmit",
28
28
  "test": "node --import tsx --test tests/*.test.ts",
29
- "check:package": "npm pack --dry-run --ignore-scripts"
29
+ "check:package": "npm pack --dry-run --ignore-scripts",
30
+ "build:pi": "node scripts/build-pi.mjs"
30
31
  },
31
32
  "engines": {
32
33
  "node": ">=22.19.0"
@@ -39,6 +40,7 @@
39
40
  "@earendil-works/pi-coding-agent": "0.85.1",
40
41
  "@earendil-works/pi-tui": "0.85.1",
41
42
  "@types/node": "^22.19.0",
43
+ "esbuild": "^0.28.1",
42
44
  "tsx": "^4.20.0",
43
45
  "typescript": "^5.9.3"
44
46
  },