@gobi-ai/cli 0.9.13 → 1.1.0

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.
@@ -1,181 +0,0 @@
1
- # gobi brain
2
-
3
- ```
4
- Usage: gobi brain [options] [command]
5
-
6
- Brain commands (search, ask, publish, unpublish, updates).
7
-
8
- Options:
9
- -h, --help display help for command
10
-
11
- Commands:
12
- search [options] Search public brains by text and semantic similarity.
13
- ask [options] Ask a brain a question. Creates a targeted session (1:1 conversation).
14
- publish Upload BRAIN.md to the vault root on webdrive. Triggers post-processing (brain sync, metadata update, Discord notification).
15
- unpublish Delete BRAIN.md from the vault on webdrive.
16
- list-updates [options] List recent brain updates. Without --space-slug, lists all updates for you. With --space-slug, lists updates for that space. Use --mine to show only updates
17
- by you.
18
- post-update [options] Post a brain update for a vault.
19
- edit-update [options] <updateId> Edit a published brain update. You must be the author.
20
- delete-update <updateId> Delete a published brain update. You must be the author.
21
- get-update [options] <updateId> Get a brain update and its replies (paginated).
22
- reply-to-update [options] <updateId> Reply to a brain update.
23
- edit-update-reply [options] <replyId> Edit a brain update reply. You must be the author.
24
- delete-update-reply <replyId> Delete a brain update reply. You must be the author.
25
- help [command] display help for command
26
- ```
27
-
28
- ## search
29
-
30
- ```
31
- Usage: gobi brain search [options]
32
-
33
- Search public brains by text and semantic similarity.
34
-
35
- Options:
36
- --query <query> Search query
37
- -h, --help display help for command
38
- ```
39
-
40
- ## ask
41
-
42
- ```
43
- Usage: gobi brain ask [options]
44
-
45
- Ask a brain a question. Creates a targeted session (1:1 conversation).
46
-
47
- Options:
48
- --vault-slug <vaultSlug> Slug of the brain/vault to ask
49
- --question <question> The question to ask (markdown supported)
50
- --rich-text <richText> Rich-text JSON array (e.g. [{"type":"text","text":"hello"}])
51
- --mode <mode> Session mode: "auto" or "manual"
52
- -h, --help display help for command
53
- ```
54
-
55
- ## publish
56
-
57
- ```
58
- Usage: gobi brain publish [options]
59
-
60
- Upload BRAIN.md to the vault root on webdrive. Triggers post-processing (brain sync, metadata update, Discord notification).
61
-
62
- Options:
63
- -h, --help display help for command
64
- ```
65
-
66
- ## unpublish
67
-
68
- ```
69
- Usage: gobi brain unpublish [options]
70
-
71
- Delete BRAIN.md from the vault on webdrive.
72
-
73
- Options:
74
- -h, --help display help for command
75
- ```
76
-
77
- ## list-updates
78
-
79
- ```
80
- Usage: gobi brain list-updates [options]
81
-
82
- List recent brain updates. Without --space-slug, lists all updates for you. With --space-slug, lists updates for that space. Use --mine to show only updates by you.
83
-
84
- Options:
85
- --vault-slug <vaultSlug> Vault slug (overrides .gobi/settings.yaml)
86
- --space-slug <spaceSlug> List updates for a space
87
- --mine List only my own brain updates
88
- --limit <number> Items per page (default: "20")
89
- --cursor <string> Pagination cursor from previous response
90
- -h, --help display help for command
91
- ```
92
-
93
- ## post-update
94
-
95
- ```
96
- Usage: gobi brain post-update [options]
97
-
98
- Post a brain update for a vault.
99
-
100
- Options:
101
- --vault-slug <vaultSlug> Vault slug (overrides .gobi/settings.yaml)
102
- --title <title> Title of the update
103
- --content <content> Update content (markdown supported)
104
- --auto-attachments Upload wiki-linked [[files]] to webdrive before posting
105
- -h, --help display help for command
106
- ```
107
-
108
- ## edit-update
109
-
110
- ```
111
- Usage: gobi brain edit-update [options] <updateId>
112
-
113
- Edit a published brain update. You must be the author.
114
-
115
- Options:
116
- --title <title> New title for the update
117
- --content <content> New content for the update (markdown supported)
118
- --vault-slug <vaultSlug> Vault slug for attachment uploads (overrides .gobi/settings.yaml)
119
- --auto-attachments Upload wiki-linked [[files]] to webdrive before editing
120
- -h, --help display help for command
121
- ```
122
-
123
- ## delete-update
124
-
125
- ```
126
- Usage: gobi brain delete-update [options] <updateId>
127
-
128
- Delete a published brain update. You must be the author.
129
-
130
- Options:
131
- -h, --help display help for command
132
- ```
133
-
134
- ## get-update
135
-
136
- ```
137
- Usage: gobi brain get-update [options] <updateId>
138
-
139
- Get a brain update and its replies (paginated).
140
-
141
- Options:
142
- --limit <number> Replies per page (default: "20")
143
- --cursor <string> Pagination cursor from previous response
144
- --full Show full reply content without truncation
145
- -h, --help display help for command
146
- ```
147
-
148
- ## reply-to-update
149
-
150
- ```
151
- Usage: gobi brain reply-to-update [options] <updateId>
152
-
153
- Reply to a brain update.
154
-
155
- Options:
156
- --content <content> Reply content (markdown supported, use "-" for stdin)
157
- -h, --help display help for command
158
- ```
159
-
160
- ## edit-update-reply
161
-
162
- ```
163
- Usage: gobi brain edit-update-reply [options] <replyId>
164
-
165
- Edit a brain update reply. You must be the author.
166
-
167
- Options:
168
- --content <content> New content for the reply (markdown supported)
169
- -h, --help display help for command
170
- ```
171
-
172
- ## delete-update-reply
173
-
174
- ```
175
- Usage: gobi brain delete-update-reply [options] <replyId>
176
-
177
- Delete a brain update reply. You must be the author.
178
-
179
- Options:
180
- -h, --help display help for command
181
- ```