@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 +1 -1
- package/extensions/index.ts +2 -2
- package/package.json +2 -2
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
|
|
3
|
+
Quick sketch pad for [pi](https://github.com/badlogic/pi-mono) - draw in browser, send to models.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
package/extensions/index.ts
CHANGED
|
@@ -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
|
|
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
|
|
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