@gobi-ai/cli 2.0.40 → 2.0.41

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.
@@ -248,7 +248,7 @@ export function registerPersonalCommand(program) {
248
248
  // Targets `POST /posts/personal-space`, the only endpoint that stamps
249
249
  // `personalSpaceUserId` on the row. Body shape is identical to the public
250
250
  // `POST /posts` create (same CreatePostDto). The server skips the
251
- // `@gobi` mention dispatch and the notification fan-out for this lane —
251
+ // agent mention dispatch and the notification fan-out for this lane —
252
252
  // private posts have no audience.
253
253
  personal
254
254
  .command("create-post")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gobi-ai/cli",
3
- "version": "2.0.40",
3
+ "version": "2.0.41",
4
4
  "description": "CLI client for the Gobi collaborative knowledge platform",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -52,7 +52,7 @@ The `-o` flag implies `--wait` and downloads the image when done.
52
52
  gobi space create-reply <postId> --content "<BODY>" --attach media/<NAME>.png
53
53
  ```
54
54
  This uploads to the CDN and renders the image as a slider on the post card. `--attach` is repeatable; mix rule is **4 photos OR 1 GIF OR 1 video**.
55
- - **Post-mention reply** (you were `@`-mentioned on a thread — `@gobi` / `@space:<slug>` — and your assistant body is auto-posted as the reply): **just write the text reply. Do not include the image as wiki-link, markdown image, or any URL.** The runtime detects every `gobi media generate-image` call you ran this turn and attaches those images to your auto-posted reply automatically. Embedding the image yourself either dangles (the workspace path doesn't resolve publicly) or duplicates the slider.
55
+ - **Post-mention reply** (you were `@`-mentioned on a thread — `@space:<slug>` — and your assistant body is auto-posted as the reply): **just write the text reply. Do not include the image as wiki-link, markdown image, or any URL.** The runtime detects every `gobi media generate-image` call you ran this turn and attaches those images to your auto-posted reply automatically. Embedding the image yourself either dangles (the workspace path doesn't resolve publicly) or duplicates the slider.
56
56
 
57
57
  ### Key rules
58
58
  - Replace `<NAME>` with a descriptive slug — NEVER use example names like `sunset.png` literally.
@@ -143,7 +143,7 @@ Channels are private, member-gated sub-feeds inside a space. The **main feed is
143
143
 
144
144
  `gobi personal` posts and replies are scoped to a private personal space (`personalSpaceUserId`), with the same subcommand and write-flag shape as `gobi space`. Nothing here surfaces on any public feed — these posts are visible only to you. Use for private notes-as-posts, scratch drafts, or any post you want to author against your vault without making it public.
145
145
 
146
- A couple of read-side flags don't mirror — `personal feed` has no `--following` (there's no follow graph in a private space), and `personal list-posts` has no `--mine` (everything in the personal space is already yours).
146
+ One read-side flag doesn't mirror — `personal list-posts` has no `--mine` (everything in the personal space is already yours).
147
147
 
148
148
  - `gobi personal feed` — Your personal-space feed (posts and replies, newest first).
149
149
  - `gobi personal search-posts <query>` — Search your personal-space posts and replies (same `from:` / `topic:` query syntax as `gobi space search-posts`).