@ogulcancelik/pi-sketch 0.1.0 → 0.1.1

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
@@ -1,6 +1,6 @@
1
1
  # pi-sketch
2
2
 
3
- Quick sketch pad for [pi](https://github.com/badlogic/pi-mono) - draw in browser, send to Claude.
3
+ Quick sketch pad for [pi](https://github.com/badlogic/pi-mono) - draw in browser, send to models.
4
4
 
5
5
  ![demo](https://raw.githubusercontent.com/ogulcancelik/pi-sketch/main/assets/demo.gif)
6
6
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Sketch extension - quick sketch pad that opens in browser
3
- * /sketch → opens browser canvas → draw → Enter sends to Claude
3
+ * /sketch → opens browser canvas → draw → Enter sends to models
4
4
  */
5
5
 
6
6
  import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
@@ -140,7 +140,7 @@ function launchPaintServer(): PaintServer {
140
140
 
141
141
  export default function (pi: ExtensionAPI) {
142
142
  pi.registerCommand("sketch", {
143
- description: "Open a sketch pad in browser to draw something for Claude",
143
+ description: "Open a sketch pad in browser to draw something for models",
144
144
 
145
145
  handler: async (_args, ctx) => {
146
146
  if (!ctx.hasUI) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ogulcancelik/pi-sketch",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Quick sketch pad for pi - draw in browser, send to models",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -33,4 +33,4 @@
33
33
  "./extensions"
34
34
  ]
35
35
  }
36
- }
36
+ }