@gobi-ai/cli 0.9.7 → 0.9.8
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.
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
"name": "gobi-ai"
|
|
5
5
|
},
|
|
6
6
|
"description": "Claude Code plugin for the Gobi collaborative knowledge platform CLI",
|
|
7
|
-
"version": "0.9.
|
|
7
|
+
"version": "0.9.8",
|
|
8
8
|
"plugins": [
|
|
9
9
|
{
|
|
10
10
|
"name": "gobi",
|
|
11
11
|
"description": "Manage the Gobi collaborative knowledge platform from the command line. Search and ask brains, publish brain documents, create threads, manage sessions, generate images and videos.",
|
|
12
|
-
"version": "0.9.
|
|
12
|
+
"version": "0.9.8",
|
|
13
13
|
"author": {
|
|
14
14
|
"name": "gobi-ai"
|
|
15
15
|
},
|
package/package.json
CHANGED
|
@@ -30,10 +30,11 @@ gobi --json media image-generate --prompt "a sunset over mountains"
|
|
|
30
30
|
Single command — generate and download in one step:
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
gobi --json media image-generate --prompt "<PROMPT>" -o media/<NAME>.png
|
|
33
|
+
gobi --json media image-generate --prompt "<PROMPT>" --aspect-ratio "<RATIO>" -o media/<NAME>.png
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
Replace `<NAME>` with a short descriptive slug derived from the prompt (e.g., `happy-family`, `sunset-mountains`).
|
|
37
|
+
Replace `<RATIO>` with the desired aspect ratio: `1:1`, `16:9`, `9:16`, `4:3`, or `3:4`. Use `9:16` for Shorts/Reels.
|
|
37
38
|
|
|
38
39
|
The `-o` flag implies `--wait` and downloads the image when done.
|
|
39
40
|
|