@gobi-ai/cli 2.0.30 → 2.0.32

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.
@@ -11,6 +11,8 @@ Options:
11
11
 
12
12
  Commands:
13
13
  feed [options] List your personal-space feed (posts and replies, newest first). Only you can see these rows.
14
+ search-posts [options] <query> Search your personal-space posts and replies (newest first). The query supports keywords plus from:<name> and topic:<tag> operators (quote multi-word values). Each
15
+ result is an individual post or reply, not a whole thread.
14
16
  list-posts [options] List root posts (no replies) in your personal space. Filters the personal feed client-side; pagination cursor advances through the underlying feed page.
15
17
  get-post [options] <postId> Get a personal-space post with its ancestors and replies (paginated). Same endpoint as `gobi global get-post`; only the owner can resolve a private id.
16
18
  create-post [options] Create a private post in your personal space. Visible only to you.
@@ -19,6 +21,8 @@ Commands:
19
21
  create-reply [options] <postId> Reply to a personal-space post. The reply inherits the parent's private scope automatically.
20
22
  edit-reply [options] <replyId> Edit a reply you authored in your personal space.
21
23
  delete-reply <replyId> Delete a reply you authored in your personal space.
24
+ react <postId> <emoji> Add an emoji reaction to a personal-space post or reply (idempotent). <postId> is the numeric id of a post OR a reply.
25
+ unreact <postId> <emoji> Remove your emoji reaction from a personal-space post or reply. <postId> is the numeric id of a post OR a reply.
22
26
  help [command] display help for command
23
27
  ```
24
28
 
@@ -35,6 +39,20 @@ Options:
35
39
  -h, --help display help for command
36
40
  ```
37
41
 
42
+ ## search-posts
43
+
44
+ ```
45
+ Usage: gobi personal search-posts [options] <query>
46
+
47
+ Search your personal-space posts and replies (newest first). The query supports keywords plus from:<name> and topic:<tag> operators (quote multi-word values). Each result is an individual post or
48
+ reply, not a whole thread.
49
+
50
+ Options:
51
+ --limit <number> Items per page (default: "20")
52
+ --cursor <string> Pagination cursor from previous response
53
+ -h, --help display help for command
54
+ ```
55
+
38
56
  ## list-posts
39
57
 
40
58
  ```
@@ -74,7 +92,8 @@ Options:
74
92
  --content <content> Post content (markdown supported, use "-" for stdin)
75
93
  --rich-text <richText> Rich-text JSON array (mutually exclusive with --content)
76
94
  --artifact <artifactId> Attach an existing artifact to the post (repeatable). Create artifacts with `gobi artifact create`. (default: [])
77
- --attach <file> Local media file to attach. Repeatable. X-style mix rule: up to 4 photos OR 1 GIF OR 1 video. Size ceilings: 5MB photos / 15MB GIFs / 512MB video. (default: [])
95
+ --attach <file> Local media or document file to attach. Repeatable. Mix rule: up to 4 photos + up to 4 document files (pdf/md/txt/csv) OR 1 GIF OR 1 video. Size ceilings: 10MB photos /
96
+ 15MB GIFs / 512MB video / 250MB files. (default: [])
78
97
  --repost-post-id <postId> Wrap an existing top-level post as the embedded card on this new private post. The referenced post must be visible to you (your own personal-space post, a global-feed
79
98
  post, or a post in a space you're a member of). Reposting someone else's personal-space post returns 404.
80
99
  -h, --help display help for command
@@ -91,8 +110,8 @@ Options:
91
110
  --title <title> New title
92
111
  --content <content> New content (markdown supported, use "-" for stdin)
93
112
  --rich-text <richText> Rich-text JSON array (mutually exclusive with --content)
94
- --attach <file> Replace the post's media attachments with the given files (existing attachments are removed). Repeatable. X-style mix rule: up to 4 photos OR 1 GIF OR 1 video. Size
95
- ceilings: 5MB photos / 15MB GIFs / 512MB video. Omit to leave attachments unchanged. (default: [])
113
+ --attach <file> Replace the post's media attachments with the given files (existing attachments are removed). Repeatable. Mix rule: up to 4 photos + up to 4 document files (pdf/md/txt/csv)
114
+ OR 1 GIF OR 1 video. Size ceilings: 10MB photos / 15MB GIFs / 512MB video / 250MB files. Omit to leave attachments unchanged. (default: [])
96
115
  --artifact <artifactId> Replace the post's artifact attachments with the given artifact(s) (existing artifact attachments are removed). Repeatable. Omit to leave them unchanged. Create artifacts
97
116
  with `gobi artifact create`. (default: [])
98
117
  -h, --help display help for command
@@ -119,8 +138,8 @@ Reply to a personal-space post. The reply inherits the parent's private scope au
119
138
  Options:
120
139
  --content <content> Reply content (markdown supported, use "-" for stdin)
121
140
  --rich-text <richText> Rich-text JSON array (mutually exclusive with --content)
122
- --attach <file> Local media file to attach to this reply. Repeatable. X-style mix rule: up to 4 photos OR 1 GIF OR 1 video. Size ceilings: 5MB photos / 15MB GIFs / 512MB video. (default:
123
- [])
141
+ --attach <file> Local media or document file to attach to this reply. Repeatable. Mix rule: up to 4 photos + up to 4 document files (pdf/md/txt/csv) OR 1 GIF OR 1 video. Size ceilings: 10MB
142
+ photos / 15MB GIFs / 512MB video / 250MB files. (default: [])
124
143
  -h, --help display help for command
125
144
  ```
126
145
 
@@ -147,3 +166,25 @@ Delete a reply you authored in your personal space.
147
166
  Options:
148
167
  -h, --help display help for command
149
168
  ```
169
+
170
+ ## react
171
+
172
+ ```
173
+ Usage: gobi personal react [options] <postId> <emoji>
174
+
175
+ Add an emoji reaction to a personal-space post or reply (idempotent). <postId> is the numeric id of a post OR a reply.
176
+
177
+ Options:
178
+ -h, --help display help for command
179
+ ```
180
+
181
+ ## unreact
182
+
183
+ ```
184
+ Usage: gobi personal unreact [options] <postId> <emoji>
185
+
186
+ Remove your emoji reaction from a personal-space post or reply. <postId> is the numeric id of a post OR a reply.
187
+
188
+ Options:
189
+ -h, --help display help for command
190
+ ```
@@ -6,23 +6,31 @@ Usage: gobi space [options] [command]
6
6
  Space commands (posts, replies). Space and member admin is web-UI only.
7
7
 
8
8
  Options:
9
- --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
10
- -h, --help display help for command
9
+ --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
10
+ -h, --help display help for command
11
11
 
12
12
  Commands:
13
- get [options] [spaceSlug] Get details for a space. Pass a slug or omit to use the current space (from .gobi/settings.yaml or --space-slug).
14
- list-topics [options] List topics in a space, ordered by most recent content linkage.
15
- list-topic-posts [options] <topicSlug> List posts tagged with a topic in a space (cursor-paginated).
16
- feed [options] List the unified feed (posts and replies, newest first) in a space.
17
- get-post [options] <postId> Get a post with its ancestors and replies (paginated).
18
- list-posts [options] List posts in a space (paginated).
19
- create-post [options] Create a post in a space.
20
- edit-post [options] <postId> Edit a post you authored in a space.
21
- delete-post [options] <postId> Delete a post you authored in a space.
22
- create-reply [options] <postId> Create a reply to a post in a space.
23
- edit-reply [options] <replyId> Edit a reply you authored in a space.
24
- delete-reply [options] <replyId> Delete a reply you authored in a space.
25
- help [command] display help for command
13
+ get [options] [spaceSlug] Get details for a space. Pass a slug or omit to use the current space (from .gobi/settings.yaml or --space-slug).
14
+ list-topics [options] List topics in a space, ordered by most recent content linkage.
15
+ list-topic-posts [options] <topicSlug> List posts tagged with a topic in a space (cursor-paginated).
16
+ feed [options] List the unified feed (posts and replies, newest first) in a space.
17
+ search-posts [options] <query> Search a space's posts and replies (newest first). The query supports keywords plus from:<name> and topic:<tag> operators (quote multi-word values, e.g.
18
+ from:"Jane Doe"). Each result is an individual post or reply, not a whole thread.
19
+ get-post [options] <postId> Get a post with its ancestors and replies (paginated).
20
+ list-posts [options] List posts in a space (paginated).
21
+ create-post [options] Create a post in a space.
22
+ edit-post [options] <postId> Edit a post you authored in a space.
23
+ delete-post [options] <postId> Delete a post you authored in a space.
24
+ create-reply [options] <postId> Create a reply to a post in a space.
25
+ edit-reply [options] <replyId> Edit a reply you authored in a space.
26
+ delete-reply [options] <replyId> Delete a reply you authored in a space.
27
+ react [options] <postId> <emoji> Add an emoji reaction to a post or reply (idempotent). <postId> is the numeric id of a post OR a reply — the [p:N]/[r:N] ids shown in feed output.
28
+ unreact [options] <postId> <emoji> Remove your emoji reaction from a post or reply. <postId> is the numeric id of a post OR a reply.
29
+ list-channels [options] List channels visible to you in a space (members: yours; space owner/admin: all). The main feed is not a channel — read it by omitting --channel on
30
+ `feed`.
31
+ get-channel [options] <channelId> Get one channel (channel members, space owner/admin, or the agent on agent-enabled channels).
32
+ list-channel-members [options] <channelId> List the members of a channel.
33
+ help [command] display help for command
26
34
  ```
27
35
 
28
36
  ## get
@@ -74,6 +82,23 @@ List the unified feed (posts and replies, newest first) in a space.
74
82
  Options:
75
83
  --limit <number> Items per page (default: "20")
76
84
  --cursor <string> Pagination cursor from previous response
85
+ --channel <channelId> Channel id to read instead of the main feed (see `list-channels`). Omit for the main feed.
86
+ --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
87
+ -h, --help display help for command
88
+ ```
89
+
90
+ ## search-posts
91
+
92
+ ```
93
+ Usage: gobi space search-posts [options] <query>
94
+
95
+ Search a space's posts and replies (newest first). The query supports keywords plus from:<name> and topic:<tag> operators (quote multi-word values, e.g. from:"Jane Doe"). Each result is an individual
96
+ post or reply, not a whole thread.
97
+
98
+ Options:
99
+ --limit <number> Items per page (default: "20")
100
+ --cursor <string> Pagination cursor from previous response
101
+ --channel <channelId> Restrict results to one channel (see `list-channels`). Omit to search the main feed and all channels visible to you.
77
102
  --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
78
103
  -h, --help display help for command
79
104
  ```
@@ -103,6 +128,7 @@ List posts in a space (paginated).
103
128
  Options:
104
129
  --limit <number> Items per page (default: "20")
105
130
  --cursor <string> Pagination cursor from previous response
131
+ --channel <channelId> Channel id to read instead of the main feed (see `list-channels`). Omit for the main feed.
106
132
  --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
107
133
  -h, --help display help for command
108
134
  ```
@@ -120,9 +146,12 @@ Options:
120
146
  --rich-text <richText> Rich-text JSON array (mutually exclusive with --content)
121
147
  --artifact <artifactId> Attach an existing artifact to the post (repeatable). Create artifacts with `gobi artifact create`. (default: [])
122
148
  --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
123
- --attach <file> Local media file to attach. Repeatable. X-style mix rule: up to 4 photos OR 1 GIF OR 1 video. Size ceilings: 5MB photos / 15MB GIFs / 512MB video. (default: [])
149
+ --attach <file> Local media or document file to attach. Repeatable. Mix rule: up to 4 photos + up to 4 document files (pdf/md/txt/csv) OR 1 GIF OR 1 video. Size ceilings: 10MB photos /
150
+ 15MB GIFs / 512MB video / 250MB files. (default: [])
124
151
  --repost-post-id <postId> Wrap an existing top-level post as the embedded card on this new post. Composes with --content / --rich-text / --attach (the wrapping author's text + media render above
125
152
  the embedded card). Reposts-of-reposts are collapsed to the transitive root server-side. The referenced post must exist, not be deleted, and not itself be a reply.
153
+ --channel <channelId> Channel id to post into (see `list-channels`). Omit to post to the space's main feed. You must be able to see the channel (member, space owner/admin, or the space agent
154
+ on an agent-enabled channel).
126
155
  -h, --help display help for command
127
156
  ```
128
157
 
@@ -138,8 +167,8 @@ Options:
138
167
  --content <content> New content for the post (markdown supported, use "-" for stdin)
139
168
  --rich-text <richText> Rich-text JSON array (mutually exclusive with --content)
140
169
  --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
141
- --attach <file> Replace the post's media attachments with the given files (existing attachments are removed). Repeatable. X-style mix rule: up to 4 photos OR 1 GIF OR 1 video. Size
142
- ceilings: 5MB photos / 15MB GIFs / 512MB video. Omit to leave attachments unchanged. (default: [])
170
+ --attach <file> Replace the post's media attachments with the given files (existing attachments are removed). Repeatable. Mix rule: up to 4 photos + up to 4 document files
171
+ (pdf/md/txt/csv) OR 1 GIF OR 1 video. Size ceilings: 10MB photos / 15MB GIFs / 512MB video / 250MB files. Omit to leave attachments unchanged. (default: [])
143
172
  --artifact <artifactId> Replace the post's artifact attachments with the given artifact(s) (existing artifact attachments are removed). Repeatable. Omit to leave them unchanged. Create artifacts
144
173
  with `gobi artifact create`. (default: [])
145
174
  -h, --help display help for command
@@ -168,8 +197,8 @@ Options:
168
197
  --content <content> Reply content (markdown supported, use "-" for stdin)
169
198
  --rich-text <richText> Rich-text JSON array (mutually exclusive with --content)
170
199
  --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
171
- --attach <file> Local media file to attach to this reply. Repeatable. X-style mix rule: up to 4 photos OR 1 GIF OR 1 video. Size ceilings: 5MB photos / 15MB GIFs / 512MB video. (default:
172
- [])
200
+ --attach <file> Local media or document file to attach to this reply. Repeatable. Mix rule: up to 4 photos + up to 4 document files (pdf/md/txt/csv) OR 1 GIF OR 1 video. Size ceilings:
201
+ 10MB photos / 15MB GIFs / 512MB video / 250MB files. (default: [])
173
202
  -h, --help display help for command
174
203
  ```
175
204
 
@@ -198,3 +227,63 @@ Options:
198
227
  --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
199
228
  -h, --help display help for command
200
229
  ```
230
+
231
+ ## react
232
+
233
+ ```
234
+ Usage: gobi space react [options] <postId> <emoji>
235
+
236
+ Add an emoji reaction to a post or reply (idempotent). <postId> is the numeric id of a post OR a reply — the [p:N]/[r:N] ids shown in feed output.
237
+
238
+ Options:
239
+ --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
240
+ -h, --help display help for command
241
+ ```
242
+
243
+ ## unreact
244
+
245
+ ```
246
+ Usage: gobi space unreact [options] <postId> <emoji>
247
+
248
+ Remove your emoji reaction from a post or reply. <postId> is the numeric id of a post OR a reply.
249
+
250
+ Options:
251
+ --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
252
+ -h, --help display help for command
253
+ ```
254
+
255
+ ## list-channels
256
+
257
+ ```
258
+ Usage: gobi space list-channels [options]
259
+
260
+ List channels visible to you in a space (members: yours; space owner/admin: all). The main feed is not a channel — read it by omitting --channel on `feed`.
261
+
262
+ Options:
263
+ --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
264
+ -h, --help display help for command
265
+ ```
266
+
267
+ ## get-channel
268
+
269
+ ```
270
+ Usage: gobi space get-channel [options] <channelId>
271
+
272
+ Get one channel (channel members, space owner/admin, or the agent on agent-enabled channels).
273
+
274
+ Options:
275
+ --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
276
+ -h, --help display help for command
277
+ ```
278
+
279
+ ## list-channel-members
280
+
281
+ ```
282
+ Usage: gobi space list-channel-members [options] <channelId>
283
+
284
+ List the members of a channel.
285
+
286
+ Options:
287
+ --space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
288
+ -h, --help display help for command
289
+ ```
@@ -8,12 +8,12 @@ description: >-
8
8
  allowed-tools: Bash(gobi:*)
9
9
  metadata:
10
10
  author: gobi-ai
11
- version: "2.0.30"
11
+ version: "2.0.32"
12
12
  ---
13
13
 
14
14
  # gobi-vault
15
15
 
16
- Gobi vault commands for publishing your vault profile and syncing files (v2.0.30).
16
+ Gobi vault commands for publishing your vault profile and syncing files (v2.0.32).
17
17
 
18
18
  Requires gobi-cli installed and authenticated. See gobi-core skill for setup.
19
19