@gobi-ai/cli 2.0.35 → 2.0.39
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 +30 -19
- package/dist/commands/artifact.js +14 -6
- package/dist/commands/global.js +2 -2
- package/dist/commands/personal.js +31 -2
- package/dist/commands/sense.js +162 -111
- package/dist/commands/space.js +42 -2
- package/dist/commands/utils.js +10 -1
- package/dist/main.js +2 -4
- package/package.json +1 -1
- package/skills/gobi-artifact/SKILL.md +52 -30
- package/skills/gobi-artifact/references/personal.md +42 -0
- package/skills/gobi-artifact/references/space.md +42 -0
- package/skills/gobi-core/SKILL.md +5 -4
- package/skills/gobi-homepage/SKILL.md +1 -1
- package/skills/gobi-media/SKILL.md +2 -2
- package/skills/gobi-sense/SKILL.md +61 -11
- package/skills/gobi-sense/references/personal.md +50 -0
- package/skills/gobi-sense/references/space.md +53 -0
- package/skills/gobi-space/SKILL.md +5 -5
- package/skills/gobi-space/references/global.md +2 -2
- package/skills/gobi-space/references/personal.md +66 -2
- package/skills/gobi-space/references/space.md +2 -2
- package/skills/gobi-vault/SKILL.md +2 -2
- package/skills/gobi-artifact/references/artifact.md +0 -142
- package/skills/gobi-sense/references/sense.md +0 -41
|
@@ -23,6 +23,10 @@ Commands:
|
|
|
23
23
|
delete-reply <replyId> Delete a reply you authored in your personal space.
|
|
24
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
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.
|
|
26
|
+
artifact Versioned creations attached to posts, scoped to your personal space (visible only to you). Kinds: image | video | gif | markdown | meeting_summary. Always
|
|
27
|
+
human-owned; revisions form a draft/published tree (one published per artifact).
|
|
28
|
+
activities Your personal Sense activities (what you were doing, from the wearable/app), browse-only. Recorded in your personal space (visible only to you).
|
|
29
|
+
conversations Your personal Sense conversations (phone-mic Audio Logs + detected conversations), browse-only. Recorded in your personal space (visible only to you).
|
|
26
30
|
help [command] display help for command
|
|
27
31
|
```
|
|
28
32
|
|
|
@@ -91,7 +95,7 @@ Options:
|
|
|
91
95
|
--title <title> Title of the post
|
|
92
96
|
--content <content> Post content (markdown supported, use "-" for stdin)
|
|
93
97
|
--rich-text <richText> Rich-text JSON array (mutually exclusive with --content)
|
|
94
|
-
--artifact <artifactId> Attach an existing artifact to the post (repeatable). Create artifacts with `gobi artifact create`. (default: [])
|
|
98
|
+
--artifact <artifactId> Attach an existing artifact to the post (repeatable). Create artifacts with `gobi personal artifact create`. (default: [])
|
|
95
99
|
--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
100
|
15MB GIFs / 512MB video / 250MB files. (default: [])
|
|
97
101
|
--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
|
|
@@ -113,7 +117,7 @@ Options:
|
|
|
113
117
|
--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
118
|
OR 1 GIF OR 1 video. Size ceilings: 10MB photos / 15MB GIFs / 512MB video / 250MB files. Omit to leave attachments unchanged. (default: [])
|
|
115
119
|
--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
|
|
116
|
-
with `gobi artifact create`. (default: [])
|
|
120
|
+
with `gobi personal artifact create`. (default: [])
|
|
117
121
|
-h, --help display help for command
|
|
118
122
|
```
|
|
119
123
|
|
|
@@ -188,3 +192,63 @@ Remove your emoji reaction from a personal-space post or reply. <postId> is the
|
|
|
188
192
|
Options:
|
|
189
193
|
-h, --help display help for command
|
|
190
194
|
```
|
|
195
|
+
|
|
196
|
+
## artifact
|
|
197
|
+
|
|
198
|
+
```
|
|
199
|
+
Usage: gobi personal artifact [options] [command]
|
|
200
|
+
|
|
201
|
+
Versioned creations attached to posts, scoped to your personal space (visible only to you). Kinds: image | video | gif | markdown | meeting_summary. Always human-owned; revisions form a
|
|
202
|
+
draft/published tree (one published per artifact).
|
|
203
|
+
|
|
204
|
+
Options:
|
|
205
|
+
-h, --help display help for command
|
|
206
|
+
|
|
207
|
+
Commands:
|
|
208
|
+
create [options] Create an artifact. markdown/meeting_summary kinds take a body via --file, --content, or stdin ("-"). image/gif/video kinds upload --file. Pass --post-id to attach
|
|
209
|
+
the new artifact to a post.
|
|
210
|
+
revise [options] <artifactId> Add a draft revision to an artifact. New body via --file, --content, or stdin (markdown), or --file (media). Use --from to branch off a specific revision.
|
|
211
|
+
publish [options] <artifactId> Publish a revision (becomes the artifact's single published revision).
|
|
212
|
+
revert [options] <artifactId> Revert the artifact's published pointer to an earlier revision.
|
|
213
|
+
history <artifactId> List the artifact's full revision tree (owner only).
|
|
214
|
+
download [options] <artifactId> Download an artifact's content. markdown → write the body; media → fetch the bytes. Defaults to the published/latest revision; pass --revision to pick one. Writes
|
|
215
|
+
to --out or stdout (markdown).
|
|
216
|
+
delete <artifactId> Delete an artifact (and its revision tree).
|
|
217
|
+
get <artifactId> Get one artifact with its current revision.
|
|
218
|
+
list [options] List this scope's artifacts (newest first).
|
|
219
|
+
help [command] display help for command
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
## activities
|
|
223
|
+
|
|
224
|
+
```
|
|
225
|
+
Usage: gobi personal activities [options] [command]
|
|
226
|
+
|
|
227
|
+
Your personal Sense activities (what you were doing, from the wearable/app), browse-only. Recorded in your personal space (visible only to you).
|
|
228
|
+
|
|
229
|
+
Options:
|
|
230
|
+
-h, --help display help for command
|
|
231
|
+
|
|
232
|
+
Commands:
|
|
233
|
+
list [options] List Sense activities in this scope (newest first).
|
|
234
|
+
get <activityId> Get one activity's details (visible to you if you recorded it or are a member of its space).
|
|
235
|
+
transcript <activityId> Get an activity's transcript (owner-only; 403 for other space members).
|
|
236
|
+
help [command] display help for command
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
## conversations
|
|
240
|
+
|
|
241
|
+
```
|
|
242
|
+
Usage: gobi personal conversations [options] [command]
|
|
243
|
+
|
|
244
|
+
Your personal Sense conversations (phone-mic Audio Logs + detected conversations), browse-only. Recorded in your personal space (visible only to you).
|
|
245
|
+
|
|
246
|
+
Options:
|
|
247
|
+
-h, --help display help for command
|
|
248
|
+
|
|
249
|
+
Commands:
|
|
250
|
+
list [options] List conversations captured in this scope (newest first).
|
|
251
|
+
transcript <conversationId> Get a conversation's transcript and summary (owner-only).
|
|
252
|
+
audio <conversationId> Get a signed URL for a conversation's combined recording (owner-only; null for analyzer conversations).
|
|
253
|
+
help [command] display help for command
|
|
254
|
+
```
|
|
@@ -144,7 +144,7 @@ Options:
|
|
|
144
144
|
--title <title> Title of the post
|
|
145
145
|
--content <content> Post content (markdown supported, use "-" for stdin)
|
|
146
146
|
--rich-text <richText> Rich-text JSON array (mutually exclusive with --content)
|
|
147
|
-
--artifact <artifactId> Attach an existing artifact to the post (repeatable). Create artifacts with `gobi artifact create`. (default: [])
|
|
147
|
+
--artifact <artifactId> Attach an existing artifact to the post (repeatable). Create artifacts with `gobi space artifact create`. (default: [])
|
|
148
148
|
--space-slug <spaceSlug> Space slug (overrides .gobi/settings.yaml)
|
|
149
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
150
|
15MB GIFs / 512MB video / 250MB files. (default: [])
|
|
@@ -170,7 +170,7 @@ Options:
|
|
|
170
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
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: [])
|
|
172
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
|
|
173
|
-
with `gobi artifact create`. (default: [])
|
|
173
|
+
with `gobi space artifact create`. (default: [])
|
|
174
174
|
-h, --help display help for command
|
|
175
175
|
```
|
|
176
176
|
|
|
@@ -8,12 +8,12 @@ description: >-
|
|
|
8
8
|
allowed-tools: Bash(gobi:*)
|
|
9
9
|
metadata:
|
|
10
10
|
author: gobi-ai
|
|
11
|
-
version: "2.0.
|
|
11
|
+
version: "2.0.39"
|
|
12
12
|
---
|
|
13
13
|
|
|
14
14
|
# gobi-vault
|
|
15
15
|
|
|
16
|
-
Gobi vault commands for publishing your vault profile and syncing files (v2.0.
|
|
16
|
+
Gobi vault commands for publishing your vault profile and syncing files (v2.0.39).
|
|
17
17
|
|
|
18
18
|
Requires gobi-cli installed and authenticated. See gobi-core skill for setup.
|
|
19
19
|
|
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
# gobi artifact
|
|
2
|
-
|
|
3
|
-
```
|
|
4
|
-
Usage: gobi artifact [options] [command]
|
|
5
|
-
|
|
6
|
-
Versioned creations attached to posts. Kinds: image | video | gif | markdown | meeting_summary. Always human-owned; revisions form a draft/published tree (at most one published per artifact).
|
|
7
|
-
|
|
8
|
-
Options:
|
|
9
|
-
-h, --help display help for command
|
|
10
|
-
|
|
11
|
-
Commands:
|
|
12
|
-
create [options] Create an artifact. markdown/meeting_summary kinds take a body via --file, --content, or stdin ("-"). image/gif/video kinds upload --file. Pass --post-id to attach
|
|
13
|
-
the new artifact to a post.
|
|
14
|
-
revise [options] <artifactId> Add a draft revision to an artifact. New body via --file, --content, or stdin (markdown), or --file (media). Use --from to branch off a specific revision.
|
|
15
|
-
publish [options] <artifactId> Publish a revision (becomes the artifact's single published revision).
|
|
16
|
-
revert [options] <artifactId> Revert the artifact's published pointer to an earlier revision.
|
|
17
|
-
history <artifactId> List the artifact's full revision tree (owner only).
|
|
18
|
-
download [options] <artifactId> Download an artifact's content. markdown → write the body; media → fetch the bytes. Defaults to the published/latest revision; pass --revision to pick one. Writes
|
|
19
|
-
to --out or stdout (markdown).
|
|
20
|
-
delete <artifactId> Delete an artifact (and its revision tree).
|
|
21
|
-
get <artifactId> Get one artifact with its current revision.
|
|
22
|
-
list [options] List your artifacts (newest first).
|
|
23
|
-
help [command] display help for command
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
## create
|
|
27
|
-
|
|
28
|
-
```
|
|
29
|
-
Usage: gobi artifact create [options]
|
|
30
|
-
|
|
31
|
-
Create an artifact. markdown/meeting_summary kinds take a body via --file, --content, or stdin ("-"). image/gif/video kinds upload --file. Pass --post-id to attach the new artifact to a post.
|
|
32
|
-
|
|
33
|
-
Options:
|
|
34
|
-
--kind <kind> Artifact kind: image | video | gif | markdown | meeting_summary
|
|
35
|
-
--file <path> Local file: markdown body (markdown kinds) or media file (media kinds)
|
|
36
|
-
--content <md> Markdown body inline (markdown kinds; pass "-" for stdin)
|
|
37
|
-
--title <t> Display title
|
|
38
|
-
--vault-slug <slug> Anchor vault for [[wikilink]] resolution (markdown kinds). Stored in metadata.vaultSlug.
|
|
39
|
-
--post-id <id> Attach the created artifact to this post afterward
|
|
40
|
-
--auto-attachments Upload wiki-linked [[files]] to webdrive before creating (markdown kinds; uses --vault-slug)
|
|
41
|
-
--change-note <note> Note describing this revision
|
|
42
|
-
-h, --help display help for command
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
## revise
|
|
46
|
-
|
|
47
|
-
```
|
|
48
|
-
Usage: gobi artifact revise [options] <artifactId>
|
|
49
|
-
|
|
50
|
-
Add a draft revision to an artifact. New body via --file, --content, or stdin (markdown), or --file (media). Use --from to branch off a specific revision.
|
|
51
|
-
|
|
52
|
-
Options:
|
|
53
|
-
--file <path> Local file: markdown body (markdown kinds) or media file (media kinds)
|
|
54
|
-
--content <md> Markdown body inline (markdown kinds; pass "-" for stdin)
|
|
55
|
-
--change-note <note> Note describing this revision
|
|
56
|
-
--from <revisionId> Branch the new draft off this revision (defaults to the latest)
|
|
57
|
-
--auto-attachments Upload wiki-linked [[files]] to webdrive before revising (markdown kinds; uses the artifact's stored metadata.vaultSlug)
|
|
58
|
-
-h, --help display help for command
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
## publish
|
|
62
|
-
|
|
63
|
-
```
|
|
64
|
-
Usage: gobi artifact publish [options] <artifactId>
|
|
65
|
-
|
|
66
|
-
Publish a revision (becomes the artifact's single published revision).
|
|
67
|
-
|
|
68
|
-
Options:
|
|
69
|
-
--revision <revisionId> Revision to publish
|
|
70
|
-
-h, --help display help for command
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
## revert
|
|
74
|
-
|
|
75
|
-
```
|
|
76
|
-
Usage: gobi artifact revert [options] <artifactId>
|
|
77
|
-
|
|
78
|
-
Revert the artifact's published pointer to an earlier revision.
|
|
79
|
-
|
|
80
|
-
Options:
|
|
81
|
-
--to <revisionId> Revision to revert to
|
|
82
|
-
-h, --help display help for command
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
## history
|
|
86
|
-
|
|
87
|
-
```
|
|
88
|
-
Usage: gobi artifact history [options] <artifactId>
|
|
89
|
-
|
|
90
|
-
List the artifact's full revision tree (owner only).
|
|
91
|
-
|
|
92
|
-
Options:
|
|
93
|
-
-h, --help display help for command
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
## download
|
|
97
|
-
|
|
98
|
-
```
|
|
99
|
-
Usage: gobi artifact download [options] <artifactId>
|
|
100
|
-
|
|
101
|
-
Download an artifact's content. markdown → write the body; media → fetch the bytes. Defaults to the published/latest revision; pass --revision to pick one. Writes to --out or stdout (markdown).
|
|
102
|
-
|
|
103
|
-
Options:
|
|
104
|
-
--revision <revisionId> Specific revision (defaults to the artifact's current revision)
|
|
105
|
-
--out <path> Write to this file (markdown defaults to stdout)
|
|
106
|
-
-h, --help display help for command
|
|
107
|
-
```
|
|
108
|
-
|
|
109
|
-
## delete
|
|
110
|
-
|
|
111
|
-
```
|
|
112
|
-
Usage: gobi artifact delete [options] <artifactId>
|
|
113
|
-
|
|
114
|
-
Delete an artifact (and its revision tree).
|
|
115
|
-
|
|
116
|
-
Options:
|
|
117
|
-
-h, --help display help for command
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
## get
|
|
121
|
-
|
|
122
|
-
```
|
|
123
|
-
Usage: gobi artifact get [options] <artifactId>
|
|
124
|
-
|
|
125
|
-
Get one artifact with its current revision.
|
|
126
|
-
|
|
127
|
-
Options:
|
|
128
|
-
-h, --help display help for command
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
## list
|
|
132
|
-
|
|
133
|
-
```
|
|
134
|
-
Usage: gobi artifact list [options]
|
|
135
|
-
|
|
136
|
-
List your artifacts (newest first).
|
|
137
|
-
|
|
138
|
-
Options:
|
|
139
|
-
--kind <kind> Filter by kind: image | video | gif | markdown | meeting_summary
|
|
140
|
-
--limit <n> Max items to return
|
|
141
|
-
-h, --help display help for command
|
|
142
|
-
```
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
# gobi sense
|
|
2
|
-
|
|
3
|
-
```
|
|
4
|
-
Usage: gobi sense [options] [command]
|
|
5
|
-
|
|
6
|
-
Sense commands (activities, transcriptions).
|
|
7
|
-
|
|
8
|
-
Options:
|
|
9
|
-
-h, --help display help for command
|
|
10
|
-
|
|
11
|
-
Commands:
|
|
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
|
-
```
|
|
16
|
-
|
|
17
|
-
## list-activities
|
|
18
|
-
|
|
19
|
-
```
|
|
20
|
-
Usage: gobi sense list-activities [options]
|
|
21
|
-
|
|
22
|
-
List activity records within a time range.
|
|
23
|
-
|
|
24
|
-
Options:
|
|
25
|
-
--start-time <iso> Start of time range (ISO 8601 UTC, e.g. 2026-03-20T00:00:00Z)
|
|
26
|
-
--end-time <iso> End of time range (ISO 8601 UTC, e.g. 2026-03-20T23:59:59Z)
|
|
27
|
-
-h, --help display help for command
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
## list-transcriptions
|
|
31
|
-
|
|
32
|
-
```
|
|
33
|
-
Usage: gobi sense list-transcriptions [options]
|
|
34
|
-
|
|
35
|
-
List transcription records within a time range.
|
|
36
|
-
|
|
37
|
-
Options:
|
|
38
|
-
--start-time <iso> Start of time range (ISO 8601 UTC, e.g. 2026-03-20T00:00:00Z)
|
|
39
|
-
--end-time <iso> End of time range (ISO 8601 UTC, e.g. 2026-03-20T23:59:59Z)
|
|
40
|
-
-h, --help display help for command
|
|
41
|
-
```
|