pi-paster 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -12,9 +12,9 @@ Instead of leaving raw local image paths in your prompt, paster replaces them wi
12
12
 
13
13
  ## Why this exists
14
14
 
15
- Terminal image workflows are awkward: dragging a screenshot into a terminal usually inserts a local file path, and pasting an image from the clipboard may require special handling. For multimodal models, that path is not enough—the image bytes need to be attached to the message.
15
+ Terminal image workflows are awkward: dragging a screenshot into a terminal usually inserts a local file path, and pasting an image from the clipboard may require special handling. Even when a model could inspect a local file through tools, that adds friction and wastes context/tool-call budget compared with attaching the image directly.
16
16
 
17
- `paster` bridges that gap for pi interactive mode:
17
+ `paster` makes image input feel native in pi interactive mode:
18
18
 
19
19
  1. Paste or drag/drop an image path into the editor.
20
20
  2. The path is replaced with a placeholder like `[#image 1]`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-paster",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Pi extension that turns pasted image paths into first-class image attachments.",
5
5
  "keywords": [
6
6
  "image-attachments",
@@ -55,6 +55,6 @@
55
55
  "extensions": [
56
56
  "./src/index.ts"
57
57
  ],
58
- "image": "https://unpkg.com/pi-paster@0.1.3/docs/preview.png"
58
+ "image": "https://unpkg.com/pi-paster@0.1.4/docs/preview.png"
59
59
  }
60
60
  }