@gobi-ai/cli 0.9.4 → 0.9.5
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.4",
|
|
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.4",
|
|
13
13
|
"author": {
|
|
14
14
|
"name": "gobi-ai"
|
|
15
15
|
},
|
package/package.json
CHANGED
|
@@ -30,15 +30,23 @@ 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 "
|
|
33
|
+
gobi --json media image-generate --prompt "<PROMPT>" -o media/<NAME>.png
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
Replace `<NAME>` with a short descriptive slug derived from the prompt (e.g., `happy-family`, `sunset-mountains`).
|
|
37
|
+
|
|
36
38
|
The `-o` flag implies `--wait` and downloads the image when done.
|
|
37
39
|
|
|
38
|
-
|
|
40
|
+
**IMPORTANT: After downloading, show the image using Obsidian wiki-link syntax EXACTLY like this:**
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
![[media/<NAME>.png]]
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Do NOT use markdown image syntax `` or `gobi://` URLs. Always use `![[media/<NAME>.png]]`.
|
|
39
47
|
|
|
40
48
|
### Key rules
|
|
41
|
-
-
|
|
49
|
+
- Replace `<NAME>` with a descriptive slug — NEVER use example names like `sunset.png` literally.
|
|
42
50
|
- `--name` is **optional** — auto-derived from prompt if omitted.
|
|
43
51
|
- Do NOT use the `downloadUrl` from the response — it is a frontend path, not a direct download link.
|
|
44
52
|
- `image-download` takes a **positional** jobId (NOT `--job-id`): `gobi media image-download <jobId>`
|