@gobi-ai/cli 2.0.4 → 2.0.6
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +56 -42
- package/commands/space-share.md +1 -1
- package/dist/commands/auth.js +38 -9
- package/dist/commands/draft.js +9 -13
- package/dist/commands/global.js +90 -24
- package/dist/commands/init.js +36 -35
- package/dist/commands/media.js +39 -39
- package/dist/commands/saved.js +31 -41
- package/dist/commands/sense.js +4 -4
- package/dist/commands/sessions.js +6 -6
- package/dist/commands/space.js +188 -68
- package/dist/commands/utils.js +7 -2
- package/dist/commands/vault.js +40 -4
- package/dist/main.js +37 -13
- package/package.json +1 -1
- package/skills/gobi-core/SKILL.md +38 -42
- package/skills/gobi-core/references/session.md +10 -10
- package/skills/gobi-core/references/space.md +6 -6
- package/skills/gobi-draft/SKILL.md +4 -4
- package/skills/gobi-draft/references/draft.md +9 -8
- package/skills/gobi-media/SKILL.md +37 -38
- package/skills/gobi-media/references/media.md +59 -59
- package/skills/gobi-saved/SKILL.md +27 -26
- package/skills/gobi-saved/references/saved.md +108 -26
- package/skills/gobi-sense/SKILL.md +8 -8
- package/skills/gobi-sense/references/sense.md +10 -10
- package/skills/gobi-space/SKILL.md +28 -10
- package/skills/gobi-space/references/global.md +21 -15
- package/skills/gobi-space/references/space.md +54 -35
- package/skills/gobi-vault/SKILL.md +12 -5
- package/skills/gobi-vault/references/vault.md +25 -1
- package/skills/gobi-core/references/init.md +0 -10
|
@@ -6,28 +6,28 @@ Usage: gobi media [options] [command]
|
|
|
6
6
|
Media generation commands (videos, images).
|
|
7
7
|
|
|
8
8
|
Options:
|
|
9
|
-
-h, --help
|
|
9
|
+
-h, --help display help for command
|
|
10
10
|
|
|
11
11
|
Commands:
|
|
12
|
-
upload <file>
|
|
13
|
-
avatars
|
|
14
|
-
voices
|
|
15
|
-
video
|
|
16
|
-
|
|
17
|
-
video
|
|
18
|
-
video-status [options] <
|
|
19
|
-
video
|
|
20
|
-
cinematic
|
|
21
|
-
avatar
|
|
22
|
-
avatar
|
|
23
|
-
avatar-from-selfie [options]
|
|
24
|
-
avatar-job-status [options] <jobId>
|
|
25
|
-
image
|
|
26
|
-
image
|
|
27
|
-
image
|
|
28
|
-
image-status [options] <jobId>
|
|
29
|
-
image
|
|
30
|
-
help [command]
|
|
12
|
+
upload <file> Upload a local file and return its media ID.
|
|
13
|
+
list-avatars List available avatars.
|
|
14
|
+
list-voices List available voices.
|
|
15
|
+
create-video [options] Create an avatar video generation job.
|
|
16
|
+
list-videos List all videos.
|
|
17
|
+
get-video <videoId> Get video metadata.
|
|
18
|
+
get-video-status [options] <videoId> Get video generation status.
|
|
19
|
+
download-video [options] <videoId> Download a completed video (or get its URL).
|
|
20
|
+
create-cinematic [options] Create a cinematic video from a text prompt.
|
|
21
|
+
design-avatar [options] Start a design-your-avatar job.
|
|
22
|
+
confirm-avatar [options] Confirm avatar variant(s) after design.
|
|
23
|
+
design-avatar-from-selfie [options] Design an avatar from a selfie (instant or enhanced with prompt).
|
|
24
|
+
get-avatar-job-status [options] <jobId> Get avatar job status.
|
|
25
|
+
generate-image [options] Generate an image from a text prompt. Types: image (default), thumbnail (YouTube-optimized), asset (logo/product). Aspect ratios: 1:1, 16:9, 9:16, 4:3, 3:4
|
|
26
|
+
edit-image [options] Edit an existing image with a prompt (image-to-image).
|
|
27
|
+
inpaint-image [options] Inpaint an image region using a mask.
|
|
28
|
+
get-image-status [options] <jobId> Get image generation job status.
|
|
29
|
+
download-image [options] <jobId> Download a generated image.
|
|
30
|
+
help [command] display help for command
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
## upload
|
|
@@ -41,10 +41,10 @@ Options:
|
|
|
41
41
|
-h, --help display help for command
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
-
## avatars
|
|
44
|
+
## list-avatars
|
|
45
45
|
|
|
46
46
|
```
|
|
47
|
-
Usage: gobi media avatars [options]
|
|
47
|
+
Usage: gobi media list-avatars [options]
|
|
48
48
|
|
|
49
49
|
List available avatars.
|
|
50
50
|
|
|
@@ -52,10 +52,10 @@ Options:
|
|
|
52
52
|
-h, --help display help for command
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
## voices
|
|
55
|
+
## list-voices
|
|
56
56
|
|
|
57
57
|
```
|
|
58
|
-
Usage: gobi media voices [options]
|
|
58
|
+
Usage: gobi media list-voices [options]
|
|
59
59
|
|
|
60
60
|
List available voices.
|
|
61
61
|
|
|
@@ -63,10 +63,10 @@ Options:
|
|
|
63
63
|
-h, --help display help for command
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
## video
|
|
66
|
+
## create-video
|
|
67
67
|
|
|
68
68
|
```
|
|
69
|
-
Usage: gobi media video
|
|
69
|
+
Usage: gobi media create-video [options]
|
|
70
70
|
|
|
71
71
|
Create an avatar video generation job.
|
|
72
72
|
|
|
@@ -81,10 +81,10 @@ Options:
|
|
|
81
81
|
-h, --help display help for command
|
|
82
82
|
```
|
|
83
83
|
|
|
84
|
-
##
|
|
84
|
+
## list-videos
|
|
85
85
|
|
|
86
86
|
```
|
|
87
|
-
Usage: gobi media
|
|
87
|
+
Usage: gobi media list-videos [options]
|
|
88
88
|
|
|
89
89
|
List all videos.
|
|
90
90
|
|
|
@@ -92,10 +92,10 @@ Options:
|
|
|
92
92
|
-h, --help display help for command
|
|
93
93
|
```
|
|
94
94
|
|
|
95
|
-
## video
|
|
95
|
+
## get-video
|
|
96
96
|
|
|
97
97
|
```
|
|
98
|
-
Usage: gobi media video
|
|
98
|
+
Usage: gobi media get-video [options] <videoId>
|
|
99
99
|
|
|
100
100
|
Get video metadata.
|
|
101
101
|
|
|
@@ -103,12 +103,12 @@ Options:
|
|
|
103
103
|
-h, --help display help for command
|
|
104
104
|
```
|
|
105
105
|
|
|
106
|
-
## video-status
|
|
106
|
+
## get-video-status
|
|
107
107
|
|
|
108
108
|
```
|
|
109
|
-
Usage: gobi media video-status [options] <
|
|
109
|
+
Usage: gobi media get-video-status [options] <videoId>
|
|
110
110
|
|
|
111
|
-
|
|
111
|
+
Get video generation status.
|
|
112
112
|
|
|
113
113
|
Options:
|
|
114
114
|
--wait Poll until a terminal state is reached
|
|
@@ -116,10 +116,10 @@ Options:
|
|
|
116
116
|
-h, --help display help for command
|
|
117
117
|
```
|
|
118
118
|
|
|
119
|
-
## video
|
|
119
|
+
## download-video
|
|
120
120
|
|
|
121
121
|
```
|
|
122
|
-
Usage: gobi media video
|
|
122
|
+
Usage: gobi media download-video [options] <videoId>
|
|
123
123
|
|
|
124
124
|
Download a completed video (or get its URL).
|
|
125
125
|
|
|
@@ -128,10 +128,10 @@ Options:
|
|
|
128
128
|
-h, --help display help for command
|
|
129
129
|
```
|
|
130
130
|
|
|
131
|
-
## cinematic
|
|
131
|
+
## create-cinematic
|
|
132
132
|
|
|
133
133
|
```
|
|
134
|
-
Usage: gobi media cinematic
|
|
134
|
+
Usage: gobi media create-cinematic [options]
|
|
135
135
|
|
|
136
136
|
Create a cinematic video from a text prompt.
|
|
137
137
|
|
|
@@ -153,10 +153,10 @@ Options:
|
|
|
153
153
|
-h, --help display help for command
|
|
154
154
|
```
|
|
155
155
|
|
|
156
|
-
## avatar
|
|
156
|
+
## design-avatar
|
|
157
157
|
|
|
158
158
|
```
|
|
159
|
-
Usage: gobi media avatar
|
|
159
|
+
Usage: gobi media design-avatar [options]
|
|
160
160
|
|
|
161
161
|
Start a design-your-avatar job.
|
|
162
162
|
|
|
@@ -173,25 +173,25 @@ Options:
|
|
|
173
173
|
-h, --help display help for command
|
|
174
174
|
```
|
|
175
175
|
|
|
176
|
-
## avatar
|
|
176
|
+
## confirm-avatar
|
|
177
177
|
|
|
178
178
|
```
|
|
179
|
-
Usage: gobi media avatar
|
|
179
|
+
Usage: gobi media confirm-avatar [options]
|
|
180
180
|
|
|
181
181
|
Confirm avatar variant(s) after design.
|
|
182
182
|
|
|
183
183
|
Options:
|
|
184
|
-
--job-id <jobId> Job ID from avatar
|
|
184
|
+
--job-id <jobId> Job ID from design-avatar
|
|
185
185
|
--variant <variant> Variant to confirm (1 or 2); omit to confirm both
|
|
186
186
|
-h, --help display help for command
|
|
187
187
|
```
|
|
188
188
|
|
|
189
|
-
## avatar-from-selfie
|
|
189
|
+
## design-avatar-from-selfie
|
|
190
190
|
|
|
191
191
|
```
|
|
192
|
-
Usage: gobi media avatar-from-selfie [options]
|
|
192
|
+
Usage: gobi media design-avatar-from-selfie [options]
|
|
193
193
|
|
|
194
|
-
|
|
194
|
+
Design an avatar from a selfie (instant or enhanced with prompt).
|
|
195
195
|
|
|
196
196
|
Options:
|
|
197
197
|
--name <name> Name for the avatar (auto-generated if omitted)
|
|
@@ -202,22 +202,22 @@ Options:
|
|
|
202
202
|
-h, --help display help for command
|
|
203
203
|
```
|
|
204
204
|
|
|
205
|
-
## avatar-job-status
|
|
205
|
+
## get-avatar-job-status
|
|
206
206
|
|
|
207
207
|
```
|
|
208
|
-
Usage: gobi media avatar-job-status [options] <jobId>
|
|
208
|
+
Usage: gobi media get-avatar-job-status [options] <jobId>
|
|
209
209
|
|
|
210
|
-
|
|
210
|
+
Get avatar job status.
|
|
211
211
|
|
|
212
212
|
Options:
|
|
213
213
|
--wait Poll until a terminal state is reached
|
|
214
214
|
-h, --help display help for command
|
|
215
215
|
```
|
|
216
216
|
|
|
217
|
-
## image
|
|
217
|
+
## generate-image
|
|
218
218
|
|
|
219
219
|
```
|
|
220
|
-
Usage: gobi media image
|
|
220
|
+
Usage: gobi media generate-image [options]
|
|
221
221
|
|
|
222
222
|
Generate an image from a text prompt. Types: image (default), thumbnail (YouTube-optimized), asset (logo/product). Aspect ratios: 1:1, 16:9, 9:16, 4:3, 3:4
|
|
223
223
|
|
|
@@ -234,10 +234,10 @@ Options:
|
|
|
234
234
|
-h, --help display help for command
|
|
235
235
|
```
|
|
236
236
|
|
|
237
|
-
## image
|
|
237
|
+
## edit-image
|
|
238
238
|
|
|
239
239
|
```
|
|
240
|
-
Usage: gobi media image
|
|
240
|
+
Usage: gobi media edit-image [options]
|
|
241
241
|
|
|
242
242
|
Edit an existing image with a prompt (image-to-image).
|
|
243
243
|
|
|
@@ -250,10 +250,10 @@ Options:
|
|
|
250
250
|
-h, --help display help for command
|
|
251
251
|
```
|
|
252
252
|
|
|
253
|
-
## image
|
|
253
|
+
## inpaint-image
|
|
254
254
|
|
|
255
255
|
```
|
|
256
|
-
Usage: gobi media image
|
|
256
|
+
Usage: gobi media inpaint-image [options]
|
|
257
257
|
|
|
258
258
|
Inpaint an image region using a mask.
|
|
259
259
|
|
|
@@ -267,22 +267,22 @@ Options:
|
|
|
267
267
|
-h, --help display help for command
|
|
268
268
|
```
|
|
269
269
|
|
|
270
|
-
## image-status
|
|
270
|
+
## get-image-status
|
|
271
271
|
|
|
272
272
|
```
|
|
273
|
-
Usage: gobi media image-status [options] <jobId>
|
|
273
|
+
Usage: gobi media get-image-status [options] <jobId>
|
|
274
274
|
|
|
275
|
-
|
|
275
|
+
Get image generation job status.
|
|
276
276
|
|
|
277
277
|
Options:
|
|
278
278
|
--wait Poll until a terminal state is reached
|
|
279
279
|
-h, --help display help for command
|
|
280
280
|
```
|
|
281
281
|
|
|
282
|
-
## image
|
|
282
|
+
## download-image
|
|
283
283
|
|
|
284
284
|
```
|
|
285
|
-
Usage: gobi media image
|
|
285
|
+
Usage: gobi media download-image [options] <jobId>
|
|
286
286
|
|
|
287
287
|
Download a generated image.
|
|
288
288
|
|
|
@@ -2,67 +2,68 @@
|
|
|
2
2
|
name: gobi-saved
|
|
3
3
|
description: >-
|
|
4
4
|
Gobi saved commands for the user's personal saved-knowledge collection:
|
|
5
|
-
|
|
6
|
-
post/reply
|
|
7
|
-
|
|
8
|
-
saved.
|
|
5
|
+
notes (list/get/create/edit/delete) and bookmarked posts (snapshot a
|
|
6
|
+
post/reply from feed/space; list/get/delete). Use when the user wants to
|
|
7
|
+
capture their own notes or bookmark/manage posts they've saved.
|
|
9
8
|
allowed-tools: Bash(gobi:*)
|
|
10
9
|
metadata:
|
|
11
10
|
author: gobi-ai
|
|
12
|
-
version: "2.0.
|
|
11
|
+
version: "2.0.6"
|
|
13
12
|
---
|
|
14
13
|
|
|
15
14
|
# gobi-saved
|
|
16
15
|
|
|
17
|
-
Gobi saved-knowledge commands (v2.0.
|
|
16
|
+
Gobi saved-knowledge commands (v2.0.6).
|
|
18
17
|
|
|
19
18
|
Requires gobi-cli installed and authenticated. See gobi-core skill for setup.
|
|
20
19
|
|
|
21
20
|
## What is "saved"?
|
|
22
21
|
|
|
23
|
-
`gobi saved` is the user's personal saved-knowledge collection. It
|
|
22
|
+
`gobi saved` is the user's personal saved-knowledge collection. It covers two kinds of items:
|
|
24
23
|
|
|
25
|
-
-
|
|
26
|
-
-
|
|
24
|
+
- **Notes** — user-authored notes (private, dated entries). Verbs: `list-notes`, `get-note`, `create-note`, `edit-note`, `delete-note`.
|
|
25
|
+
- **Posts** — snapshots of posts (or replies) bookmarked from a space or the global feed. Verbs: `list-posts`, `get-post`, `create-post`, `delete-post`.
|
|
27
26
|
|
|
28
27
|
Both are user-private — only the author can see/edit/delete their own items.
|
|
29
28
|
|
|
29
|
+
> Naming note: `gobi saved create-post --source <id>` is a **bookmark** operation — it saves an existing post into your collection. It does *not* author a new post (use `gobi global create-post` or `gobi space create-post` for that).
|
|
30
|
+
|
|
30
31
|
## Timezone
|
|
31
32
|
|
|
32
|
-
`gobi saved
|
|
33
|
+
`gobi saved list-notes` and `gobi saved create-note` need a timezone to compute the calendar day. The CLI auto-detects your system timezone via `Intl.DateTimeFormat().resolvedOptions().timeZone`. Override with `--timezone <iana-name>` (e.g. `America/Los_Angeles`).
|
|
33
34
|
|
|
34
35
|
## Important: JSON Mode
|
|
35
36
|
|
|
36
37
|
For programmatic/agent usage, always pass `--json` as a **global** option (before the subcommand):
|
|
37
38
|
|
|
38
39
|
```bash
|
|
39
|
-
gobi --json saved
|
|
40
|
+
gobi --json saved list-notes --date 2026-04-27
|
|
40
41
|
```
|
|
41
42
|
|
|
42
43
|
## Available Commands
|
|
43
44
|
|
|
44
45
|
### Notes
|
|
45
|
-
- `gobi saved
|
|
46
|
-
- `gobi saved note
|
|
47
|
-
- `gobi saved note
|
|
48
|
-
- `gobi saved note
|
|
49
|
-
- `gobi saved note
|
|
50
|
-
|
|
51
|
-
### Posts
|
|
52
|
-
- `gobi saved
|
|
53
|
-
- `gobi saved post
|
|
54
|
-
- `gobi saved post
|
|
55
|
-
- `gobi saved post
|
|
46
|
+
- `gobi saved list-notes` — List your notes. Without `--date`, returns recent notes via cursor pagination. With `--date YYYY-MM-DD`, returns all notes for that day.
|
|
47
|
+
- `gobi saved get-note <noteId>` — Get a single note by id.
|
|
48
|
+
- `gobi saved create-note --content <md>` — Create a note. Use `'-'` for stdin.
|
|
49
|
+
- `gobi saved edit-note <noteId>` — Edit a note. Provide `--content` and/or `--agent-id`.
|
|
50
|
+
- `gobi saved delete-note <noteId>` — Delete a note you authored.
|
|
51
|
+
|
|
52
|
+
### Posts (bookmarks)
|
|
53
|
+
- `gobi saved list-posts` — List posts you have bookmarked (paginated). Filter with `--type all|article|space-post`.
|
|
54
|
+
- `gobi saved get-post <postId>` — Get a saved post snapshot by post id.
|
|
55
|
+
- `gobi saved create-post --source <id>` — Bookmark a post or reply by id. Records a snapshot in your saved-posts collection.
|
|
56
|
+
- `gobi saved delete-post <postId>` — Remove a post from your saved-posts collection.
|
|
56
57
|
|
|
57
58
|
## Confirm before mutating
|
|
58
59
|
|
|
59
60
|
Saved items are the user's private collection but they still persist server-side and deletes are irreversible. Before running any write, confirm with the user — show the command and the note content / target id. This applies even when running autonomously.
|
|
60
61
|
|
|
61
|
-
- `note
|
|
62
|
-
- `post
|
|
63
|
-
- `note
|
|
62
|
+
- `create-note`, `edit-note` — confirm the content (or content delta on edit).
|
|
63
|
+
- `create-post` (bookmarking a feed post) — confirm the source id you're about to bookmark.
|
|
64
|
+
- `delete-note`, `delete-post` — irreversible. Flag that explicitly and confirm the target id before running.
|
|
64
65
|
|
|
65
|
-
Read-only commands (`
|
|
66
|
+
Read-only commands (`list-notes`, `get-note`, `list-posts`, `get-post`) run without confirmation.
|
|
66
67
|
|
|
67
68
|
## Reference Documentation
|
|
68
69
|
|
|
@@ -3,50 +3,132 @@
|
|
|
3
3
|
```
|
|
4
4
|
Usage: gobi saved [options] [command]
|
|
5
5
|
|
|
6
|
-
Saved-knowledge commands (notes and posts).
|
|
6
|
+
Saved-knowledge commands (notes and bookmarked posts).
|
|
7
7
|
|
|
8
8
|
Options:
|
|
9
|
-
-h, --help
|
|
9
|
+
-h, --help display help for command
|
|
10
10
|
|
|
11
11
|
Commands:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
list-notes [options] List your notes. Without --date, returns recent notes via cursor pagination. With --date, returns all notes for that day.
|
|
13
|
+
get-note <noteId> Get a single note by id.
|
|
14
|
+
create-note [options] Create a note. Provide --content (use '-' for stdin) and/or attachments.
|
|
15
|
+
edit-note [options] <noteId> Edit a note. Provide --content and/or --agent-id.
|
|
16
|
+
delete-note <noteId> Delete a note you authored.
|
|
17
|
+
list-posts [options] List posts you have bookmarked (paginated).
|
|
18
|
+
get-post <postId> Get a saved post snapshot by post id.
|
|
19
|
+
create-post [options] Bookmark a post or reply by id. Records a snapshot in your saved-posts collection.
|
|
20
|
+
delete-post <postId> Remove a post from your saved-posts collection.
|
|
21
|
+
help [command] display help for command
|
|
15
22
|
```
|
|
16
23
|
|
|
17
|
-
##
|
|
24
|
+
## list-notes
|
|
18
25
|
|
|
19
26
|
```
|
|
20
|
-
Usage: gobi saved
|
|
27
|
+
Usage: gobi saved list-notes [options]
|
|
21
28
|
|
|
22
|
-
|
|
29
|
+
List your notes. Without --date, returns recent notes via cursor pagination. With --date, returns all notes for that day.
|
|
23
30
|
|
|
24
31
|
Options:
|
|
25
|
-
|
|
32
|
+
--date <date> Filter to a single day (YYYY-MM-DD)
|
|
33
|
+
--timezone <tz> IANA timezone name (default: system timezone)
|
|
34
|
+
--limit <number> Items per page (default: "20")
|
|
35
|
+
--cursor <string> Pagination cursor from previous response
|
|
36
|
+
-h, --help display help for command
|
|
37
|
+
```
|
|
26
38
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
39
|
+
## get-note
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
Usage: gobi saved get-note [options] <noteId>
|
|
43
|
+
|
|
44
|
+
Get a single note by id.
|
|
45
|
+
|
|
46
|
+
Options:
|
|
47
|
+
-h, --help display help for command
|
|
34
48
|
```
|
|
35
49
|
|
|
36
|
-
##
|
|
50
|
+
## create-note
|
|
37
51
|
|
|
38
52
|
```
|
|
39
|
-
Usage: gobi saved
|
|
53
|
+
Usage: gobi saved create-note [options]
|
|
40
54
|
|
|
41
|
-
|
|
55
|
+
Create a note. Provide --content (use '-' for stdin) and/or attachments.
|
|
42
56
|
|
|
43
57
|
Options:
|
|
44
|
-
|
|
58
|
+
--content <content> Note content (markdown supported, use "-" for stdin)
|
|
59
|
+
--timezone <tz> IANA timezone name (default: system timezone)
|
|
60
|
+
--agent-id <number> Optional agent id to associate with the note
|
|
61
|
+
-h, --help display help for command
|
|
62
|
+
```
|
|
45
63
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
64
|
+
## edit-note
|
|
65
|
+
|
|
66
|
+
```
|
|
67
|
+
Usage: gobi saved edit-note [options] <noteId>
|
|
68
|
+
|
|
69
|
+
Edit a note. Provide --content and/or --agent-id.
|
|
70
|
+
|
|
71
|
+
Options:
|
|
72
|
+
--content <content> New note content (markdown supported, use "-" for stdin)
|
|
73
|
+
--agent-id <number> New agent id, or "null" to clear the association
|
|
74
|
+
-h, --help display help for command
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## delete-note
|
|
78
|
+
|
|
79
|
+
```
|
|
80
|
+
Usage: gobi saved delete-note [options] <noteId>
|
|
81
|
+
|
|
82
|
+
Delete a note you authored.
|
|
83
|
+
|
|
84
|
+
Options:
|
|
85
|
+
-h, --help display help for command
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## list-posts
|
|
89
|
+
|
|
90
|
+
```
|
|
91
|
+
Usage: gobi saved list-posts [options]
|
|
92
|
+
|
|
93
|
+
List posts you have bookmarked (paginated).
|
|
94
|
+
|
|
95
|
+
Options:
|
|
96
|
+
--type <type> Filter by type: all|article|space-post (default: "all")
|
|
97
|
+
--limit <number> Items per page (default: "20")
|
|
98
|
+
--cursor <string> Pagination cursor from previous response
|
|
99
|
+
-h, --help display help for command
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## get-post
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
Usage: gobi saved get-post [options] <postId>
|
|
106
|
+
|
|
107
|
+
Get a saved post snapshot by post id.
|
|
108
|
+
|
|
109
|
+
Options:
|
|
110
|
+
-h, --help display help for command
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
## create-post
|
|
114
|
+
|
|
115
|
+
```
|
|
116
|
+
Usage: gobi saved create-post [options]
|
|
117
|
+
|
|
118
|
+
Bookmark a post or reply by id. Records a snapshot in your saved-posts collection.
|
|
119
|
+
|
|
120
|
+
Options:
|
|
121
|
+
--source <id> Source post or reply id to bookmark (numeric)
|
|
122
|
+
-h, --help display help for command
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
## delete-post
|
|
126
|
+
|
|
127
|
+
```
|
|
128
|
+
Usage: gobi saved delete-post [options] <postId>
|
|
129
|
+
|
|
130
|
+
Remove a post from your saved-posts collection.
|
|
131
|
+
|
|
132
|
+
Options:
|
|
133
|
+
-h, --help display help for command
|
|
52
134
|
```
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: gobi-sense
|
|
3
3
|
description: >-
|
|
4
|
-
Gobi sense commands for activity and transcription data:
|
|
5
|
-
records and transcription records within a time range. Use when the
|
|
6
|
-
wants to review their activities or transcriptions from Gobi Sense.
|
|
4
|
+
Gobi sense commands for activity and transcription data: list activity
|
|
5
|
+
records and list transcription records within a time range. Use when the
|
|
6
|
+
user wants to review their activities or transcriptions from Gobi Sense.
|
|
7
7
|
allowed-tools: Bash(gobi:*)
|
|
8
8
|
metadata:
|
|
9
9
|
author: gobi-ai
|
|
10
|
-
version: "2.0.
|
|
10
|
+
version: "2.0.6"
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
# gobi-sense
|
|
14
14
|
|
|
15
|
-
Gobi sense commands for activity and transcription data (v2.0.
|
|
15
|
+
Gobi sense commands for activity and transcription data (v2.0.6).
|
|
16
16
|
|
|
17
17
|
Requires gobi-cli installed and authenticated. See the **gobi-core** skill for setup.
|
|
18
18
|
|
|
@@ -23,15 +23,15 @@ Activities and transcriptions are captured by Gobi Sense (the wearable) and the
|
|
|
23
23
|
For programmatic/agent usage, always pass `--json` as a **global** option (before the subcommand):
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
gobi --json sense activities --start-time 2026-04-01T00:00:00Z --end-time 2026-04-08T00:00:00Z
|
|
26
|
+
gobi --json sense list-activities --start-time 2026-04-01T00:00:00Z --end-time 2026-04-08T00:00:00Z
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
Times are ISO 8601 UTC.
|
|
30
30
|
|
|
31
31
|
## Available Commands
|
|
32
32
|
|
|
33
|
-
- `gobi sense activities` —
|
|
34
|
-
- `gobi sense transcriptions` —
|
|
33
|
+
- `gobi sense list-activities` — List activity records within a time range.
|
|
34
|
+
- `gobi sense list-transcriptions` — List transcription records within a time range.
|
|
35
35
|
|
|
36
36
|
## Reference Documentation
|
|
37
37
|
|
|
@@ -6,20 +6,20 @@ Usage: gobi sense [options] [command]
|
|
|
6
6
|
Sense commands (activities, transcriptions).
|
|
7
7
|
|
|
8
8
|
Options:
|
|
9
|
-
-h, --help
|
|
9
|
+
-h, --help display help for command
|
|
10
10
|
|
|
11
11
|
Commands:
|
|
12
|
-
activities [options]
|
|
13
|
-
transcriptions [options]
|
|
14
|
-
help [command]
|
|
12
|
+
list-activities [options] List activity records within a time range.
|
|
13
|
+
list-transcriptions [options] List transcription records within a time range.
|
|
14
|
+
help [command] display help for command
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
## activities
|
|
17
|
+
## list-activities
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
Usage: gobi sense activities [options]
|
|
20
|
+
Usage: gobi sense list-activities [options]
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
List activity records within a time range.
|
|
23
23
|
|
|
24
24
|
Options:
|
|
25
25
|
--start-time <iso> Start of time range (ISO 8601 UTC, e.g. 2026-03-20T00:00:00Z)
|
|
@@ -27,12 +27,12 @@ Options:
|
|
|
27
27
|
-h, --help display help for command
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
## transcriptions
|
|
30
|
+
## list-transcriptions
|
|
31
31
|
|
|
32
32
|
```
|
|
33
|
-
Usage: gobi sense transcriptions [options]
|
|
33
|
+
Usage: gobi sense list-transcriptions [options]
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
List transcription records within a time range.
|
|
36
36
|
|
|
37
37
|
Options:
|
|
38
38
|
--start-time <iso> Start of time range (ISO 8601 UTC, e.g. 2026-03-20T00:00:00Z)
|