omnius 1.0.159 → 1.0.161
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/.aiwg/addons/omnius-docs/README.md +5 -0
- package/.aiwg/addons/omnius-docs/manifest.json +32 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-docs/SKILL.md +48 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-ops-docs/SKILL.md +32 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-realtime-docs/SKILL.md +30 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-sponsor-docs/SKILL.md +31 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-telegram-docs/SKILL.md +30 -0
- package/.aiwg/addons/omnius-rest-docs/README.md +7 -0
- package/.aiwg/addons/omnius-rest-docs/manifest.json +24 -0
- package/.aiwg/addons/omnius-rest-docs/skills/omnius-rest-docs/SKILL.md +72 -0
- package/README.md +115 -5011
- package/dist/index.js +1353 -363
- package/docs/.vitepress/config.mts +108 -0
- package/docs/agent-memory/INDEX.md +38 -0
- package/docs/agent-memory/index.md +14 -0
- package/docs/architecture/overview.md +30 -0
- package/docs/getting-started/first-run.md +38 -0
- package/docs/getting-started/install.md +58 -0
- package/docs/getting-started/model-providers.md +48 -0
- package/docs/guides/media-generation.md +88 -0
- package/docs/guides/realtime.md +138 -0
- package/docs/guides/sponsor-and-cohere.md +123 -0
- package/docs/guides/telegram.md +95 -0
- package/docs/guides/tui-workflows.md +48 -0
- package/docs/index.md +30 -0
- package/docs/operations/runtime-hygiene.md +75 -0
- package/docs/operations/security-and-remote-access.md +70 -0
- package/docs/reference/configuration.md +45 -0
- package/docs/reference/rest-api.md +225 -0
- package/docs/reference/slash-commands.md +2095 -0
- package/docs/rest/INDEX.md +129 -0
- package/docs/rest/QUICKREF.md +125 -0
- package/docs/rest/REST-DOCS-MANIFEST.json +27 -0
- package/docs/rest/auth-and-scopes.md +101 -0
- package/docs/rest/endpoints/aims.md +26 -0
- package/docs/rest/endpoints/aiwg.md +44 -0
- package/docs/rest/endpoints/chat.md +101 -0
- package/docs/rest/endpoints/config.md +53 -0
- package/docs/rest/endpoints/events.md +63 -0
- package/docs/rest/endpoints/files.md +18 -0
- package/docs/rest/endpoints/memory.md +42 -0
- package/docs/rest/endpoints/run.md +52 -0
- package/docs/rest/endpoints/skills.md +41 -0
- package/docs/rest/endpoints/tools.md +62 -0
- package/docs/rest/endpoints/voice-vision.md +80 -0
- package/docs/rest/errors-pagination-etags.md +84 -0
- package/docs/rest/examples/curl.md +84 -0
- package/docs/rest/examples/openai-sdk.md +59 -0
- package/docs/rest/openapi-source.md +36 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +5 -2
|
@@ -0,0 +1,2095 @@
|
|
|
1
|
+
# Slash Commands
|
|
2
|
+
|
|
3
|
+
This file is generated from `packages/cli/src/tui/command-registry.ts`.
|
|
4
|
+
|
|
5
|
+
Do not edit this file by hand. Run:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm docs:commands:write
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Command metadata drives the TUI, REST command proxy, gateway exposure, and agent-tool safety policy.
|
|
12
|
+
|
|
13
|
+
## Summary
|
|
14
|
+
|
|
15
|
+
| Category | Commands |
|
|
16
|
+
| --- | ---: |
|
|
17
|
+
| Core | 23 |
|
|
18
|
+
| Models And Endpoints | 2 |
|
|
19
|
+
| Sessions And Control | 14 |
|
|
20
|
+
| Runtime | 12 |
|
|
21
|
+
| Media | 10 |
|
|
22
|
+
| Network And P2P | 10 |
|
|
23
|
+
| Memory And Context | 1 |
|
|
24
|
+
| Tools And Skills | 6 |
|
|
25
|
+
| External Gateways | 2 |
|
|
26
|
+
| Secrets | 2 |
|
|
27
|
+
| Interface | 9 |
|
|
28
|
+
| Administration | 2 |
|
|
29
|
+
| Planned | 10 |
|
|
30
|
+
|
|
31
|
+
## Core
|
|
32
|
+
|
|
33
|
+
### /bruteforce
|
|
34
|
+
|
|
35
|
+
Toggle brute-force mode (auto re-engage on turn limit)
|
|
36
|
+
|
|
37
|
+
| Field | Value |
|
|
38
|
+
| --- | --- |
|
|
39
|
+
| Category | Core |
|
|
40
|
+
| Status | implemented |
|
|
41
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
42
|
+
| Safety | none |
|
|
43
|
+
| Aliases | /brute |
|
|
44
|
+
| Args | - |
|
|
45
|
+
| Subcommands | - |
|
|
46
|
+
|
|
47
|
+
Signatures:
|
|
48
|
+
|
|
49
|
+
- `/bruteforce` - Toggle brute-force mode (auto re-engage on turn limit)
|
|
50
|
+
|
|
51
|
+
### /clear
|
|
52
|
+
|
|
53
|
+
Clear the screen
|
|
54
|
+
|
|
55
|
+
| Field | Value |
|
|
56
|
+
| --- | --- |
|
|
57
|
+
| Category | Core |
|
|
58
|
+
| Status | implemented |
|
|
59
|
+
| Surfaces | tui, rest, gateway |
|
|
60
|
+
| Safety | userOnly |
|
|
61
|
+
| Aliases | /cls |
|
|
62
|
+
| Args | - |
|
|
63
|
+
| Subcommands | - |
|
|
64
|
+
|
|
65
|
+
Signatures:
|
|
66
|
+
|
|
67
|
+
- `/clear` - Clear the screen
|
|
68
|
+
|
|
69
|
+
### /commands
|
|
70
|
+
|
|
71
|
+
Allow agent to invoke slash commands as tools
|
|
72
|
+
|
|
73
|
+
| Field | Value |
|
|
74
|
+
| --- | --- |
|
|
75
|
+
| Category | Core |
|
|
76
|
+
| Status | implemented |
|
|
77
|
+
| Surfaces | tui, rest, gateway |
|
|
78
|
+
| Safety | userOnly |
|
|
79
|
+
| Aliases | /cmds |
|
|
80
|
+
| Args | auto |
|
|
81
|
+
| Subcommands | auto, manual |
|
|
82
|
+
|
|
83
|
+
Signatures:
|
|
84
|
+
|
|
85
|
+
- `/commands auto` - Allow agent to invoke slash commands as tools
|
|
86
|
+
- `/cmds auto` - Alias for /commands auto
|
|
87
|
+
- `/commands manual` - Slash commands are user-only (default)
|
|
88
|
+
|
|
89
|
+
### /config
|
|
90
|
+
|
|
91
|
+
Show current configuration
|
|
92
|
+
|
|
93
|
+
| Field | Value |
|
|
94
|
+
| --- | --- |
|
|
95
|
+
| Category | Core |
|
|
96
|
+
| Status | implemented |
|
|
97
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
98
|
+
| Safety | none |
|
|
99
|
+
| Aliases | /cfg |
|
|
100
|
+
| Args | - |
|
|
101
|
+
| Subcommands | - |
|
|
102
|
+
|
|
103
|
+
Signatures:
|
|
104
|
+
|
|
105
|
+
- `/config` - Show current configuration
|
|
106
|
+
|
|
107
|
+
### /cost
|
|
108
|
+
|
|
109
|
+
Show session token cost breakdown
|
|
110
|
+
|
|
111
|
+
| Field | Value |
|
|
112
|
+
| --- | --- |
|
|
113
|
+
| Category | Core |
|
|
114
|
+
| Status | implemented |
|
|
115
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
116
|
+
| Safety | none |
|
|
117
|
+
| Aliases | /costs |
|
|
118
|
+
| Args | - |
|
|
119
|
+
| Subcommands | - |
|
|
120
|
+
|
|
121
|
+
Signatures:
|
|
122
|
+
|
|
123
|
+
- `/cost` - Show session token cost breakdown
|
|
124
|
+
|
|
125
|
+
### /deep
|
|
126
|
+
|
|
127
|
+
Toggle deep context - relaxes compaction so large models use 85% of context
|
|
128
|
+
|
|
129
|
+
| Field | Value |
|
|
130
|
+
| --- | --- |
|
|
131
|
+
| Category | Core |
|
|
132
|
+
| Status | implemented |
|
|
133
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
134
|
+
| Safety | none |
|
|
135
|
+
| Aliases | /deep-context |
|
|
136
|
+
| Args | - |
|
|
137
|
+
| Subcommands | - |
|
|
138
|
+
|
|
139
|
+
Signatures:
|
|
140
|
+
|
|
141
|
+
- `/deep` - Toggle deep context - relaxes compaction so large models use 85% of context
|
|
142
|
+
|
|
143
|
+
### /destroy
|
|
144
|
+
|
|
145
|
+
Find and kill orphaned Omnius child processes (this project)
|
|
146
|
+
|
|
147
|
+
| Field | Value |
|
|
148
|
+
| --- | --- |
|
|
149
|
+
| Category | Core |
|
|
150
|
+
| Status | implemented |
|
|
151
|
+
| Surfaces | tui |
|
|
152
|
+
| Safety | destructive, profileGated |
|
|
153
|
+
| Aliases | - |
|
|
154
|
+
| Args | processes |
|
|
155
|
+
| Subcommands | processes, project |
|
|
156
|
+
|
|
157
|
+
Signatures:
|
|
158
|
+
|
|
159
|
+
- `/destroy processes` - Find and kill orphaned Omnius child processes (this project)
|
|
160
|
+
- `/destroy processes --global` - Kill ALL orphaned Omnius processes system-wide
|
|
161
|
+
- `/destroy project` - Remove .omnius folder, kill all tasks, clear console, and exit
|
|
162
|
+
|
|
163
|
+
### /evaluate
|
|
164
|
+
|
|
165
|
+
Evaluate last completed task (LLM quality scoring)
|
|
166
|
+
|
|
167
|
+
| Field | Value |
|
|
168
|
+
| --- | --- |
|
|
169
|
+
| Category | Core |
|
|
170
|
+
| Status | implemented |
|
|
171
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
172
|
+
| Safety | none |
|
|
173
|
+
| Aliases | /eval |
|
|
174
|
+
| Args | - |
|
|
175
|
+
| Subcommands | - |
|
|
176
|
+
|
|
177
|
+
Signatures:
|
|
178
|
+
|
|
179
|
+
- `/evaluate` - Evaluate last completed task (LLM quality scoring)
|
|
180
|
+
|
|
181
|
+
### /flow
|
|
182
|
+
|
|
183
|
+
Toggle FlowState protocol - immediate action, tight loops, goal clarity
|
|
184
|
+
|
|
185
|
+
| Field | Value |
|
|
186
|
+
| --- | --- |
|
|
187
|
+
| Category | Core |
|
|
188
|
+
| Status | implemented |
|
|
189
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
190
|
+
| Safety | none |
|
|
191
|
+
| Aliases | /flowstate |
|
|
192
|
+
| Args | - |
|
|
193
|
+
| Subcommands | - |
|
|
194
|
+
|
|
195
|
+
Signatures:
|
|
196
|
+
|
|
197
|
+
- `/flow` - Toggle FlowState protocol - immediate action, tight loops, goal clarity
|
|
198
|
+
|
|
199
|
+
### /fortemi
|
|
200
|
+
|
|
201
|
+
Manage Fortemi React bridge integration
|
|
202
|
+
|
|
203
|
+
| Field | Value |
|
|
204
|
+
| --- | --- |
|
|
205
|
+
| Category | Core |
|
|
206
|
+
| Status | implemented |
|
|
207
|
+
| Surfaces | tui, rest, gateway |
|
|
208
|
+
| Safety | userOnly, networked, profileGated |
|
|
209
|
+
| Aliases | - |
|
|
210
|
+
| Args | - |
|
|
211
|
+
| Subcommands | - |
|
|
212
|
+
|
|
213
|
+
Signatures:
|
|
214
|
+
|
|
215
|
+
- `/fortemi` - Manage Fortemi React bridge integration
|
|
216
|
+
|
|
217
|
+
### /help
|
|
218
|
+
|
|
219
|
+
Show this help
|
|
220
|
+
|
|
221
|
+
| Field | Value |
|
|
222
|
+
| --- | --- |
|
|
223
|
+
| Category | Core |
|
|
224
|
+
| Status | implemented |
|
|
225
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
226
|
+
| Safety | none |
|
|
227
|
+
| Aliases | /h, /? |
|
|
228
|
+
| Args | - |
|
|
229
|
+
| Subcommands | - |
|
|
230
|
+
|
|
231
|
+
Signatures:
|
|
232
|
+
|
|
233
|
+
- `/help` - Show this help
|
|
234
|
+
|
|
235
|
+
### /hf
|
|
236
|
+
|
|
237
|
+
Show HF token status (set / not set)
|
|
238
|
+
|
|
239
|
+
| Field | Value |
|
|
240
|
+
| --- | --- |
|
|
241
|
+
| Category | Core |
|
|
242
|
+
| Status | implemented |
|
|
243
|
+
| Surfaces | tui |
|
|
244
|
+
| Safety | userOnly, secretBearing |
|
|
245
|
+
| Aliases | - |
|
|
246
|
+
| Args | - |
|
|
247
|
+
| Subcommands | clear, cancel |
|
|
248
|
+
|
|
249
|
+
Signatures:
|
|
250
|
+
|
|
251
|
+
- `/hf` - Show HF token status (set / not set)
|
|
252
|
+
- `/hf <token>` - Save Hugging Face access token to ~/.omnius/hf_token and unblock the active gated download
|
|
253
|
+
- `/hf clear` - Remove the persisted HF token
|
|
254
|
+
- `/hf cancel` - Cancel any pending HF token prompt and fall back immediately
|
|
255
|
+
|
|
256
|
+
### /music
|
|
257
|
+
|
|
258
|
+
Open music-generation model/setup menu
|
|
259
|
+
|
|
260
|
+
| Field | Value |
|
|
261
|
+
| --- | --- |
|
|
262
|
+
| Category | Core |
|
|
263
|
+
| Status | implemented |
|
|
264
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
265
|
+
| Safety | none |
|
|
266
|
+
| Aliases | - |
|
|
267
|
+
| Args | - |
|
|
268
|
+
| Subcommands | --model, setup, list |
|
|
269
|
+
|
|
270
|
+
Signatures:
|
|
271
|
+
|
|
272
|
+
- `/music` - Open music-generation model/setup menu
|
|
273
|
+
- `/music <prompt>` - Generate a music clip from a prompt
|
|
274
|
+
- `/music --model <model> <prompt>` - Generate music with an explicit music model
|
|
275
|
+
- `/music setup <transformers\|audiocraft\|stable-audio\|diffusers>` - Show setup commands for a music-generation backend
|
|
276
|
+
- `/music list` - List music models by category, quality, size, and hardware fit
|
|
277
|
+
|
|
278
|
+
### /ollama
|
|
279
|
+
|
|
280
|
+
Dry-run stale Ollama pool process cleanup
|
|
281
|
+
|
|
282
|
+
| Field | Value |
|
|
283
|
+
| --- | --- |
|
|
284
|
+
| Category | Core |
|
|
285
|
+
| Status | implemented |
|
|
286
|
+
| Surfaces | tui |
|
|
287
|
+
| Safety | destructive |
|
|
288
|
+
| Aliases | - |
|
|
289
|
+
| Args | cleanup |
|
|
290
|
+
| Subcommands | cleanup |
|
|
291
|
+
|
|
292
|
+
Signatures:
|
|
293
|
+
|
|
294
|
+
- `/ollama cleanup` - Dry-run stale Ollama pool process cleanup
|
|
295
|
+
- `/ollama cleanup --execute` - Terminate guarded stale Ollama pool runners
|
|
296
|
+
|
|
297
|
+
### /platforms
|
|
298
|
+
|
|
299
|
+
Show gateway platform state
|
|
300
|
+
|
|
301
|
+
| Field | Value |
|
|
302
|
+
| --- | --- |
|
|
303
|
+
| Category | Core |
|
|
304
|
+
| Status | implemented |
|
|
305
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
306
|
+
| Safety | networked |
|
|
307
|
+
| Aliases | /gateway |
|
|
308
|
+
| Args | - |
|
|
309
|
+
| Subcommands | status, menu, setup, onboard, config, enable, disable, set, clear |
|
|
310
|
+
|
|
311
|
+
Signatures:
|
|
312
|
+
|
|
313
|
+
- `/platforms` - Show gateway platform state
|
|
314
|
+
- `/platforms status` - Show gateway platform state
|
|
315
|
+
- `/platforms menu` - Open interactive platform connectivity menu
|
|
316
|
+
- `/platforms setup` - Open platform onboarding menu
|
|
317
|
+
- `/platforms onboard` - Open platform onboarding menu
|
|
318
|
+
- `/platforms config` - Show redacted platform adapter configuration
|
|
319
|
+
- `/platforms enable <id>` - Enable a platform adapter
|
|
320
|
+
- `/platforms disable <id>` - Disable a platform adapter
|
|
321
|
+
- `/platforms set <id> token-env <ENV>` - Set adapter token environment variable
|
|
322
|
+
- `/platforms set <id> base-url <url>` - Set adapter base URL or webhook URL
|
|
323
|
+
- `/platforms set <id> target <target>` - Set adapter default channel, room, or target
|
|
324
|
+
- `/platforms set <id> mode <polling\|webhook>` - Set adapter polling or webhook mode
|
|
325
|
+
- `/platforms clear <id> <key>` - Clear saved adapter token, token-env, base-url, or target
|
|
326
|
+
- `/gateway` - Alias for /platforms
|
|
327
|
+
- `/gateway menu` - Alias for /platforms menu
|
|
328
|
+
|
|
329
|
+
### /quit
|
|
330
|
+
|
|
331
|
+
Exit omnius
|
|
332
|
+
|
|
333
|
+
| Field | Value |
|
|
334
|
+
| --- | --- |
|
|
335
|
+
| Category | Core |
|
|
336
|
+
| Status | implemented |
|
|
337
|
+
| Surfaces | tui, gateway |
|
|
338
|
+
| Safety | userOnly |
|
|
339
|
+
| Aliases | /exit |
|
|
340
|
+
| Args | - |
|
|
341
|
+
| Subcommands | - |
|
|
342
|
+
|
|
343
|
+
Signatures:
|
|
344
|
+
|
|
345
|
+
- `/quit` - Exit omnius
|
|
346
|
+
|
|
347
|
+
### /realtime
|
|
348
|
+
|
|
349
|
+
Toggle short spoken-dialogue mode for ASR/TTS-backed chat
|
|
350
|
+
|
|
351
|
+
| Field | Value |
|
|
352
|
+
| --- | --- |
|
|
353
|
+
| Category | Core |
|
|
354
|
+
| Status | implemented |
|
|
355
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
356
|
+
| Safety | none |
|
|
357
|
+
| Aliases | - |
|
|
358
|
+
| Args | - |
|
|
359
|
+
| Subcommands | - |
|
|
360
|
+
|
|
361
|
+
Signatures:
|
|
362
|
+
|
|
363
|
+
- `/realtime` - Toggle short spoken-dialogue mode for ASR/TTS-backed chat
|
|
364
|
+
- `/realtime on\|off\|status` - Set or inspect realtime conversation mode
|
|
365
|
+
|
|
366
|
+
### /score
|
|
367
|
+
|
|
368
|
+
Show inference capability scorecard (memory, compute, speed, models)
|
|
369
|
+
|
|
370
|
+
| Field | Value |
|
|
371
|
+
| --- | --- |
|
|
372
|
+
| Category | Core |
|
|
373
|
+
| Status | implemented |
|
|
374
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
375
|
+
| Safety | none |
|
|
376
|
+
| Aliases | /inference |
|
|
377
|
+
| Args | - |
|
|
378
|
+
| Subcommands | - |
|
|
379
|
+
|
|
380
|
+
Signatures:
|
|
381
|
+
|
|
382
|
+
- `/score` - Show inference capability scorecard (memory, compute, speed, models)
|
|
383
|
+
|
|
384
|
+
### /sound
|
|
385
|
+
|
|
386
|
+
Open sound-effect model/setup menu
|
|
387
|
+
|
|
388
|
+
| Field | Value |
|
|
389
|
+
| --- | --- |
|
|
390
|
+
| Category | Core |
|
|
391
|
+
| Status | implemented |
|
|
392
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
393
|
+
| Safety | none |
|
|
394
|
+
| Aliases | - |
|
|
395
|
+
| Args | - |
|
|
396
|
+
| Subcommands | --model, setup, list |
|
|
397
|
+
|
|
398
|
+
Signatures:
|
|
399
|
+
|
|
400
|
+
- `/sound` - Open sound-effect model/setup menu
|
|
401
|
+
- `/sound <prompt>` - Generate a sound effect or ambience clip from a prompt
|
|
402
|
+
- `/sound --model <model> <prompt>` - Generate sound with an explicit audio model
|
|
403
|
+
- `/sound setup <diffusers\|audiocraft\|stable-audio\|tangoflux>` - Show setup commands for a sound-generation backend
|
|
404
|
+
- `/sound list` - List sound models by category, quality, size, and hardware fit
|
|
405
|
+
|
|
406
|
+
### /stream
|
|
407
|
+
|
|
408
|
+
Toggle real-time token streaming (pastel syntax highlighting)
|
|
409
|
+
|
|
410
|
+
| Field | Value |
|
|
411
|
+
| --- | --- |
|
|
412
|
+
| Category | Core |
|
|
413
|
+
| Status | implemented |
|
|
414
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
415
|
+
| Safety | none |
|
|
416
|
+
| Aliases | - |
|
|
417
|
+
| Args | - |
|
|
418
|
+
| Subcommands | - |
|
|
419
|
+
|
|
420
|
+
Signatures:
|
|
421
|
+
|
|
422
|
+
- `/stream` - Toggle real-time token streaming (pastel syntax highlighting)
|
|
423
|
+
|
|
424
|
+
### /style
|
|
425
|
+
|
|
426
|
+
Show current response style
|
|
427
|
+
|
|
428
|
+
| Field | Value |
|
|
429
|
+
| --- | --- |
|
|
430
|
+
| Category | Core |
|
|
431
|
+
| Status | implemented |
|
|
432
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
433
|
+
| Safety | none |
|
|
434
|
+
| Aliases | - |
|
|
435
|
+
| Args | - |
|
|
436
|
+
| Subcommands | - |
|
|
437
|
+
|
|
438
|
+
Signatures:
|
|
439
|
+
|
|
440
|
+
- `/style` - Show current response style
|
|
441
|
+
- `/style <preset>` - Set style: concise, balanced, verbose, pedagogical
|
|
442
|
+
|
|
443
|
+
### /think
|
|
444
|
+
|
|
445
|
+
Toggle thinking/reasoning mode (Qwen3, DeepSeek-R1, etc.)
|
|
446
|
+
|
|
447
|
+
| Field | Value |
|
|
448
|
+
| --- | --- |
|
|
449
|
+
| Category | Core |
|
|
450
|
+
| Status | implemented |
|
|
451
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
452
|
+
| Safety | none |
|
|
453
|
+
| Aliases | - |
|
|
454
|
+
| Args | - |
|
|
455
|
+
| Subcommands | - |
|
|
456
|
+
|
|
457
|
+
Signatures:
|
|
458
|
+
|
|
459
|
+
- `/think` - Toggle thinking/reasoning mode (Qwen3, DeepSeek-R1, etc.)
|
|
460
|
+
|
|
461
|
+
### /verbose
|
|
462
|
+
|
|
463
|
+
Toggle verbose mode
|
|
464
|
+
|
|
465
|
+
| Field | Value |
|
|
466
|
+
| --- | --- |
|
|
467
|
+
| Category | Core |
|
|
468
|
+
| Status | implemented |
|
|
469
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
470
|
+
| Safety | none |
|
|
471
|
+
| Aliases | /v |
|
|
472
|
+
| Args | - |
|
|
473
|
+
| Subcommands | - |
|
|
474
|
+
|
|
475
|
+
Signatures:
|
|
476
|
+
|
|
477
|
+
- `/verbose` - Toggle verbose mode
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
## Models And Endpoints
|
|
481
|
+
|
|
482
|
+
### /model
|
|
483
|
+
|
|
484
|
+
Select from available models
|
|
485
|
+
|
|
486
|
+
| Field | Value |
|
|
487
|
+
| --- | --- |
|
|
488
|
+
| Category | Models And Endpoints |
|
|
489
|
+
| Status | implemented |
|
|
490
|
+
| Surfaces | tui, rest, gateway |
|
|
491
|
+
| Safety | userOnly |
|
|
492
|
+
| Aliases | - |
|
|
493
|
+
| Args | - |
|
|
494
|
+
| Subcommands | - |
|
|
495
|
+
|
|
496
|
+
Signatures:
|
|
497
|
+
|
|
498
|
+
- `/model` - Select from available models
|
|
499
|
+
- `/model <name>` - Switch to a specific model
|
|
500
|
+
|
|
501
|
+
### /models
|
|
502
|
+
|
|
503
|
+
List all available models
|
|
504
|
+
|
|
505
|
+
| Field | Value |
|
|
506
|
+
| --- | --- |
|
|
507
|
+
| Category | Models And Endpoints |
|
|
508
|
+
| Status | implemented |
|
|
509
|
+
| Surfaces | tui, rest, gateway |
|
|
510
|
+
| Safety | userOnly |
|
|
511
|
+
| Aliases | - |
|
|
512
|
+
| Args | - |
|
|
513
|
+
| Subcommands | evict, cleanup |
|
|
514
|
+
|
|
515
|
+
Signatures:
|
|
516
|
+
|
|
517
|
+
- `/models` - List all available models
|
|
518
|
+
- `/models` - Show unified ~/.omnius model store: disk usage, cached repos, last-used
|
|
519
|
+
- `/models evict <repo>` - Remove a cached HF repo from the unified store to reclaim disk
|
|
520
|
+
- `/models evict --free <GB>` - LRU-evict cached models until <GB> of free disk is available
|
|
521
|
+
- `/models cleanup` - Migrate legacy per-repo .omnius/{image,video,audio}-gen caches into the unified store and delete the originals
|
|
522
|
+
- `/models cleanup --dry-run` - Preview /models cleanup without touching disk
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
## Sessions And Control
|
|
526
|
+
|
|
527
|
+
### /background
|
|
528
|
+
|
|
529
|
+
Run a prompt in an independent background session
|
|
530
|
+
|
|
531
|
+
| Field | Value |
|
|
532
|
+
| --- | --- |
|
|
533
|
+
| Category | Sessions And Control |
|
|
534
|
+
| Status | implemented |
|
|
535
|
+
| Surfaces | tui, gateway |
|
|
536
|
+
| Safety | userOnly |
|
|
537
|
+
| Aliases | /bg |
|
|
538
|
+
| Args | <prompt> |
|
|
539
|
+
| Subcommands | - |
|
|
540
|
+
|
|
541
|
+
Signatures:
|
|
542
|
+
|
|
543
|
+
- `/background <prompt>` - Run a prompt in an independent background session
|
|
544
|
+
- `/bg <prompt>` - Alias for /background <prompt>
|
|
545
|
+
|
|
546
|
+
### /compact
|
|
547
|
+
|
|
548
|
+
Force context compaction now (default strategy)
|
|
549
|
+
|
|
550
|
+
| Field | Value |
|
|
551
|
+
| --- | --- |
|
|
552
|
+
| Category | Sessions And Control |
|
|
553
|
+
| Status | implemented |
|
|
554
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
555
|
+
| Safety | none |
|
|
556
|
+
| Aliases | /gc |
|
|
557
|
+
| Args | - |
|
|
558
|
+
| Subcommands | - |
|
|
559
|
+
|
|
560
|
+
Signatures:
|
|
561
|
+
|
|
562
|
+
- `/compact` - Force context compaction now (default strategy)
|
|
563
|
+
- `/compact <strategy>` - Compact with strategy: aggressive, decisions, errors, summary, structured
|
|
564
|
+
|
|
565
|
+
### /context
|
|
566
|
+
|
|
567
|
+
Force-save session context to .omnius/context/
|
|
568
|
+
|
|
569
|
+
| Field | Value |
|
|
570
|
+
| --- | --- |
|
|
571
|
+
| Category | Sessions And Control |
|
|
572
|
+
| Status | implemented |
|
|
573
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
574
|
+
| Safety | none |
|
|
575
|
+
| Aliases | - |
|
|
576
|
+
| Args | save |
|
|
577
|
+
| Subcommands | save, restore, show |
|
|
578
|
+
|
|
579
|
+
Signatures:
|
|
580
|
+
|
|
581
|
+
- `/context save` - Force-save session context to .omnius/context/
|
|
582
|
+
- `/context restore` - Restore context from previous sessions into next task
|
|
583
|
+
- `/context show` - Show saved session context status
|
|
584
|
+
|
|
585
|
+
### /metrics
|
|
586
|
+
|
|
587
|
+
Show runtime metrics: tokens, context window, throughput, and tool usage
|
|
588
|
+
|
|
589
|
+
| Field | Value |
|
|
590
|
+
| --- | --- |
|
|
591
|
+
| Category | Sessions And Control |
|
|
592
|
+
| Status | implemented |
|
|
593
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
594
|
+
| Safety | none |
|
|
595
|
+
| Aliases | - |
|
|
596
|
+
| Args | - |
|
|
597
|
+
| Subcommands | - |
|
|
598
|
+
|
|
599
|
+
Signatures:
|
|
600
|
+
|
|
601
|
+
- `/metrics` - Show runtime metrics: tokens, context window, throughput, and tool usage
|
|
602
|
+
|
|
603
|
+
### /pause
|
|
604
|
+
|
|
605
|
+
Pause after current turn finishes (gentle halt, /resume to continue)
|
|
606
|
+
|
|
607
|
+
| Field | Value |
|
|
608
|
+
| --- | --- |
|
|
609
|
+
| Category | Sessions And Control |
|
|
610
|
+
| Status | implemented |
|
|
611
|
+
| Surfaces | tui, gateway |
|
|
612
|
+
| Safety | userOnly |
|
|
613
|
+
| Aliases | - |
|
|
614
|
+
| Args | - |
|
|
615
|
+
| Subcommands | - |
|
|
616
|
+
|
|
617
|
+
Signatures:
|
|
618
|
+
|
|
619
|
+
- `/pause` - Pause after current turn finishes (gentle halt, /resume to continue)
|
|
620
|
+
|
|
621
|
+
### /queue
|
|
622
|
+
|
|
623
|
+
Queue a prompt for the next turn without interrupting the current run
|
|
624
|
+
|
|
625
|
+
| Field | Value |
|
|
626
|
+
| --- | --- |
|
|
627
|
+
| Category | Sessions And Control |
|
|
628
|
+
| Status | implemented |
|
|
629
|
+
| Surfaces | tui, rest, gateway |
|
|
630
|
+
| Safety | userOnly |
|
|
631
|
+
| Aliases | /q |
|
|
632
|
+
| Args | <prompt> |
|
|
633
|
+
| Subcommands | - |
|
|
634
|
+
|
|
635
|
+
Signatures:
|
|
636
|
+
|
|
637
|
+
- `/queue <prompt>` - Queue a prompt for the next turn without interrupting the current run
|
|
638
|
+
- `/q <prompt>` - Alias for /queue <prompt>
|
|
639
|
+
|
|
640
|
+
### /resume
|
|
641
|
+
|
|
642
|
+
Resume a paused/stopped task or named saved session when available
|
|
643
|
+
|
|
644
|
+
| Field | Value |
|
|
645
|
+
| --- | --- |
|
|
646
|
+
| Category | Sessions And Control |
|
|
647
|
+
| Status | implemented |
|
|
648
|
+
| Surfaces | tui, gateway |
|
|
649
|
+
| Safety | userOnly |
|
|
650
|
+
| Aliases | - |
|
|
651
|
+
| Args | - |
|
|
652
|
+
| Subcommands | - |
|
|
653
|
+
|
|
654
|
+
Signatures:
|
|
655
|
+
|
|
656
|
+
- `/resume` - Resume a paused/stopped task or named saved session when available
|
|
657
|
+
|
|
658
|
+
### /retry
|
|
659
|
+
|
|
660
|
+
Retry the last submitted request
|
|
661
|
+
|
|
662
|
+
| Field | Value |
|
|
663
|
+
| --- | --- |
|
|
664
|
+
| Category | Sessions And Control |
|
|
665
|
+
| Status | implemented |
|
|
666
|
+
| Surfaces | tui, gateway |
|
|
667
|
+
| Safety | userOnly |
|
|
668
|
+
| Aliases | - |
|
|
669
|
+
| Args | - |
|
|
670
|
+
| Subcommands | - |
|
|
671
|
+
|
|
672
|
+
Signatures:
|
|
673
|
+
|
|
674
|
+
- `/retry` - Retry the last submitted request
|
|
675
|
+
|
|
676
|
+
### /rollback
|
|
677
|
+
|
|
678
|
+
List checkpoints or restore an explicit checkpoint when policy allows
|
|
679
|
+
|
|
680
|
+
| Field | Value |
|
|
681
|
+
| --- | --- |
|
|
682
|
+
| Category | Sessions And Control |
|
|
683
|
+
| Status | implemented |
|
|
684
|
+
| Surfaces | tui |
|
|
685
|
+
| Safety | userOnly, destructive |
|
|
686
|
+
| Aliases | - |
|
|
687
|
+
| Args | [checkpoint] |
|
|
688
|
+
| Subcommands | - |
|
|
689
|
+
|
|
690
|
+
Signatures:
|
|
691
|
+
|
|
692
|
+
- `/rollback [checkpoint]` - List checkpoints or restore an explicit checkpoint when policy allows
|
|
693
|
+
|
|
694
|
+
### /sessions
|
|
695
|
+
|
|
696
|
+
Browse saved sessions
|
|
697
|
+
|
|
698
|
+
| Field | Value |
|
|
699
|
+
| --- | --- |
|
|
700
|
+
| Category | Sessions And Control |
|
|
701
|
+
| Status | implemented |
|
|
702
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
703
|
+
| Safety | none |
|
|
704
|
+
| Aliases | /session |
|
|
705
|
+
| Args | - |
|
|
706
|
+
| Subcommands | - |
|
|
707
|
+
|
|
708
|
+
Signatures:
|
|
709
|
+
|
|
710
|
+
- `/sessions` - Browse saved sessions
|
|
711
|
+
|
|
712
|
+
### /stats
|
|
713
|
+
|
|
714
|
+
Show session dashboard (metrics, tool usage, task history)
|
|
715
|
+
|
|
716
|
+
| Field | Value |
|
|
717
|
+
| --- | --- |
|
|
718
|
+
| Category | Sessions And Control |
|
|
719
|
+
| Status | implemented |
|
|
720
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
721
|
+
| Safety | none |
|
|
722
|
+
| Aliases | /dashboard |
|
|
723
|
+
| Args | - |
|
|
724
|
+
| Subcommands | - |
|
|
725
|
+
|
|
726
|
+
Signatures:
|
|
727
|
+
|
|
728
|
+
- `/stats` - Show session dashboard (metrics, tool usage, task history)
|
|
729
|
+
|
|
730
|
+
### /stop
|
|
731
|
+
|
|
732
|
+
Kill current inference immediately and save state (/resume to continue)
|
|
733
|
+
|
|
734
|
+
| Field | Value |
|
|
735
|
+
| --- | --- |
|
|
736
|
+
| Category | Sessions And Control |
|
|
737
|
+
| Status | implemented |
|
|
738
|
+
| Surfaces | tui |
|
|
739
|
+
| Safety | userOnly, destructive |
|
|
740
|
+
| Aliases | - |
|
|
741
|
+
| Args | - |
|
|
742
|
+
| Subcommands | - |
|
|
743
|
+
|
|
744
|
+
Signatures:
|
|
745
|
+
|
|
746
|
+
- `/stop` - Kill current inference immediately and save state (/resume to continue)
|
|
747
|
+
|
|
748
|
+
### /title
|
|
749
|
+
|
|
750
|
+
Show or set the current session title
|
|
751
|
+
|
|
752
|
+
| Field | Value |
|
|
753
|
+
| --- | --- |
|
|
754
|
+
| Category | Sessions And Control |
|
|
755
|
+
| Status | implemented |
|
|
756
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
757
|
+
| Safety | none |
|
|
758
|
+
| Aliases | - |
|
|
759
|
+
| Args | [name] |
|
|
760
|
+
| Subcommands | - |
|
|
761
|
+
|
|
762
|
+
Signatures:
|
|
763
|
+
|
|
764
|
+
- `/title [name]` - Show or set the current session title
|
|
765
|
+
|
|
766
|
+
### /undo
|
|
767
|
+
|
|
768
|
+
Undo the last queued or saved exchange when available
|
|
769
|
+
|
|
770
|
+
| Field | Value |
|
|
771
|
+
| --- | --- |
|
|
772
|
+
| Category | Sessions And Control |
|
|
773
|
+
| Status | implemented |
|
|
774
|
+
| Surfaces | tui, gateway |
|
|
775
|
+
| Safety | userOnly |
|
|
776
|
+
| Aliases | - |
|
|
777
|
+
| Args | - |
|
|
778
|
+
| Subcommands | - |
|
|
779
|
+
|
|
780
|
+
Signatures:
|
|
781
|
+
|
|
782
|
+
- `/undo` - Undo the last queued or saved exchange when available
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
## Runtime
|
|
786
|
+
|
|
787
|
+
### /bless
|
|
788
|
+
|
|
789
|
+
End blessed mode + DMN
|
|
790
|
+
|
|
791
|
+
| Field | Value |
|
|
792
|
+
| --- | --- |
|
|
793
|
+
| Category | Runtime |
|
|
794
|
+
| Status | implemented |
|
|
795
|
+
| Surfaces | tui, rest, gateway |
|
|
796
|
+
| Safety | userOnly |
|
|
797
|
+
| Aliases | - |
|
|
798
|
+
| Args | stop |
|
|
799
|
+
| Subcommands | stop |
|
|
800
|
+
|
|
801
|
+
Signatures:
|
|
802
|
+
|
|
803
|
+
- `/bless stop` - End blessed mode + DMN
|
|
804
|
+
|
|
805
|
+
### /broker
|
|
806
|
+
|
|
807
|
+
Show resource broker status — loaded models, in-flight loads, RAM/VRAM headroom
|
|
808
|
+
|
|
809
|
+
| Field | Value |
|
|
810
|
+
| --- | --- |
|
|
811
|
+
| Category | Runtime |
|
|
812
|
+
| Status | implemented |
|
|
813
|
+
| Surfaces | tui, rest, gateway |
|
|
814
|
+
| Safety | userOnly |
|
|
815
|
+
| Aliases | - |
|
|
816
|
+
| Args | - |
|
|
817
|
+
| Subcommands | evict, threshold |
|
|
818
|
+
|
|
819
|
+
Signatures:
|
|
820
|
+
|
|
821
|
+
- `/broker` - Show resource broker status — loaded models, in-flight loads, RAM/VRAM headroom
|
|
822
|
+
- `/broker evict <host>:<name>` - Force eviction of a tracked model (e.g. /broker evict ollama:moondream)
|
|
823
|
+
- `/broker threshold <ram\|vram\|idle> <v>` - Tune broker thresholds (RAM/VRAM in MB, idle in seconds)
|
|
824
|
+
|
|
825
|
+
### /daemon
|
|
826
|
+
|
|
827
|
+
Show or manage the local API daemon
|
|
828
|
+
|
|
829
|
+
| Field | Value |
|
|
830
|
+
| --- | --- |
|
|
831
|
+
| Category | Runtime |
|
|
832
|
+
| Status | implemented |
|
|
833
|
+
| Surfaces | tui |
|
|
834
|
+
| Safety | userOnly, destructive, networked, profileGated |
|
|
835
|
+
| Aliases | - |
|
|
836
|
+
| Args | - |
|
|
837
|
+
| Subcommands | - |
|
|
838
|
+
|
|
839
|
+
Signatures:
|
|
840
|
+
|
|
841
|
+
- `/daemon` - Show or manage the local API daemon
|
|
842
|
+
- `/daemon <start\|stop\|restart\|takeover>` - Control the local API daemon
|
|
843
|
+
|
|
844
|
+
### /debug
|
|
845
|
+
|
|
846
|
+
Toggle debug mode — show/hide trust_tier wrappers and REG fires
|
|
847
|
+
|
|
848
|
+
| Field | Value |
|
|
849
|
+
| --- | --- |
|
|
850
|
+
| Category | Runtime |
|
|
851
|
+
| Status | implemented |
|
|
852
|
+
| Surfaces | tui, rest, gateway |
|
|
853
|
+
| Safety | userOnly |
|
|
854
|
+
| Aliases | - |
|
|
855
|
+
| Args | - |
|
|
856
|
+
| Subcommands | on, off |
|
|
857
|
+
|
|
858
|
+
Signatures:
|
|
859
|
+
|
|
860
|
+
- `/debug` - Toggle debug mode — show/hide trust_tier wrappers and REG fires
|
|
861
|
+
- `/debug on` - Show trust_tier wrappers and REG fires in terminal
|
|
862
|
+
- `/debug off` - Hide trust_tier wrappers and REG fires (default)
|
|
863
|
+
- `/debug` - Toggle debug mode — show/hide trust_tier wrappers and REG fires
|
|
864
|
+
- `/debug on` - Show trust_tier wrappers and REG fires in terminal
|
|
865
|
+
- `/debug off` - Hide trust_tier wrappers and REG fires (default)
|
|
866
|
+
|
|
867
|
+
### /dream
|
|
868
|
+
|
|
869
|
+
Start dream mode - creative idle exploration (writes to .omnius/dreams/)
|
|
870
|
+
|
|
871
|
+
| Field | Value |
|
|
872
|
+
| --- | --- |
|
|
873
|
+
| Category | Runtime |
|
|
874
|
+
| Status | implemented |
|
|
875
|
+
| Surfaces | tui, rest, gateway |
|
|
876
|
+
| Safety | userOnly |
|
|
877
|
+
| Aliases | - |
|
|
878
|
+
| Args | - |
|
|
879
|
+
| Subcommands | deep, lucid, stop |
|
|
880
|
+
|
|
881
|
+
Signatures:
|
|
882
|
+
|
|
883
|
+
- `/dream` - Start dream mode - creative idle exploration (writes to .omnius/dreams/)
|
|
884
|
+
- `/dream deep` - Deep dream - multi-cycle exploration with sleep architecture
|
|
885
|
+
- `/dream lucid` - Lucid dream - implements proposals, tests, evaluates in cycles
|
|
886
|
+
- `/dream stop` - Wake up - stop dreaming
|
|
887
|
+
|
|
888
|
+
### /full-send-bless
|
|
889
|
+
|
|
890
|
+
Infinite warm loop - DMN self-reflection chains tasks autonomously
|
|
891
|
+
|
|
892
|
+
| Field | Value |
|
|
893
|
+
| --- | --- |
|
|
894
|
+
| Category | Runtime |
|
|
895
|
+
| Status | implemented |
|
|
896
|
+
| Surfaces | tui, rest, gateway |
|
|
897
|
+
| Safety | userOnly |
|
|
898
|
+
| Aliases | - |
|
|
899
|
+
| Args | - |
|
|
900
|
+
| Subcommands | - |
|
|
901
|
+
|
|
902
|
+
Signatures:
|
|
903
|
+
|
|
904
|
+
- `/full-send-bless` - Infinite warm loop - DMN self-reflection chains tasks autonomously
|
|
905
|
+
|
|
906
|
+
### /parallel
|
|
907
|
+
|
|
908
|
+
Show current Ollama parallel inference slots
|
|
909
|
+
|
|
910
|
+
| Field | Value |
|
|
911
|
+
| --- | --- |
|
|
912
|
+
| Category | Runtime |
|
|
913
|
+
| Status | implemented |
|
|
914
|
+
| Surfaces | tui, rest, gateway |
|
|
915
|
+
| Safety | userOnly |
|
|
916
|
+
| Aliases | - |
|
|
917
|
+
| Args | - |
|
|
918
|
+
| Subcommands | - |
|
|
919
|
+
|
|
920
|
+
Signatures:
|
|
921
|
+
|
|
922
|
+
- `/parallel` - Show current Ollama parallel inference slots
|
|
923
|
+
- `/parallel <1-15>` - Set parallel slots (restarts Ollama, max 15)
|
|
924
|
+
|
|
925
|
+
### /reminder
|
|
926
|
+
|
|
927
|
+
List scoped TUI reminders
|
|
928
|
+
|
|
929
|
+
| Field | Value |
|
|
930
|
+
| --- | --- |
|
|
931
|
+
| Category | Runtime |
|
|
932
|
+
| Status | implemented |
|
|
933
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
934
|
+
| Safety | none |
|
|
935
|
+
| Aliases | /remind, /reminders |
|
|
936
|
+
| Args | [list\|all] |
|
|
937
|
+
| Subcommands | in |
|
|
938
|
+
|
|
939
|
+
Signatures:
|
|
940
|
+
|
|
941
|
+
- `/reminder [list\|all]` - List scoped TUI reminders
|
|
942
|
+
- `/remind <when> <message>` - Set a scoped minimal reminder; a due time is required
|
|
943
|
+
- `/remind in 30m <message>` - Set a scoped minimal reminder with a relative due time
|
|
944
|
+
- `/reminders` - Alias for /reminder
|
|
945
|
+
|
|
946
|
+
### /scheduler
|
|
947
|
+
|
|
948
|
+
Scheduled tasks control panel (list/kill/toggle)
|
|
949
|
+
|
|
950
|
+
| Field | Value |
|
|
951
|
+
| --- | --- |
|
|
952
|
+
| Category | Runtime |
|
|
953
|
+
| Status | implemented |
|
|
954
|
+
| Surfaces | tui, rest, gateway |
|
|
955
|
+
| Safety | userOnly |
|
|
956
|
+
| Aliases | /cron |
|
|
957
|
+
| Args | - |
|
|
958
|
+
| Subcommands | menu, list, kill |
|
|
959
|
+
|
|
960
|
+
Signatures:
|
|
961
|
+
|
|
962
|
+
- `/scheduler` - Scheduled tasks control panel (list/kill/toggle)
|
|
963
|
+
- `/cron` - Alias for /scheduler
|
|
964
|
+
- `/scheduler menu` - Interactive scheduler menu (toggle/kill)
|
|
965
|
+
- `/scheduler list` - List all scheduled tasks and timers
|
|
966
|
+
- `/scheduler kill` - Kill schedulers + active runs (with escalation if needed)
|
|
967
|
+
|
|
968
|
+
### /selfmodify
|
|
969
|
+
|
|
970
|
+
Toggle agent self-modify mode for natural-language runtime commands
|
|
971
|
+
|
|
972
|
+
| Field | Value |
|
|
973
|
+
| --- | --- |
|
|
974
|
+
| Category | Runtime |
|
|
975
|
+
| Status | implemented |
|
|
976
|
+
| Surfaces | tui, rest, gateway |
|
|
977
|
+
| Safety | userOnly |
|
|
978
|
+
| Aliases | /selfmod, /self-modify |
|
|
979
|
+
| Args | - |
|
|
980
|
+
| Subcommands | on, off, status |
|
|
981
|
+
|
|
982
|
+
Signatures:
|
|
983
|
+
|
|
984
|
+
- `/selfmodify` - Toggle agent self-modify mode for natural-language runtime commands
|
|
985
|
+
- `/selfmodify on` - Allow the agent to decide when to invoke self-modifying slash commands
|
|
986
|
+
- `/selfmodify off` - Disable agent self-modifying slash-command access (default)
|
|
987
|
+
- `/selfmodify status` - Show current self-modify mode
|
|
988
|
+
|
|
989
|
+
### /setup
|
|
990
|
+
|
|
991
|
+
Run the initial setup wizard again
|
|
992
|
+
|
|
993
|
+
| Field | Value |
|
|
994
|
+
| --- | --- |
|
|
995
|
+
| Category | Runtime |
|
|
996
|
+
| Status | implemented |
|
|
997
|
+
| Surfaces | tui, rest, gateway |
|
|
998
|
+
| Safety | userOnly |
|
|
999
|
+
| Aliases | /wizard |
|
|
1000
|
+
| Args | - |
|
|
1001
|
+
| Subcommands | - |
|
|
1002
|
+
|
|
1003
|
+
Signatures:
|
|
1004
|
+
|
|
1005
|
+
- `/setup` - Run the initial setup wizard again
|
|
1006
|
+
- `/wizard` - Alias for /setup
|
|
1007
|
+
|
|
1008
|
+
### /task-type
|
|
1009
|
+
|
|
1010
|
+
Set task type (code, document, analysis, plan, general, auto)
|
|
1011
|
+
|
|
1012
|
+
| Field | Value |
|
|
1013
|
+
| --- | --- |
|
|
1014
|
+
| Category | Runtime |
|
|
1015
|
+
| Status | implemented |
|
|
1016
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1017
|
+
| Safety | none |
|
|
1018
|
+
| Aliases | /tasktype, /tt |
|
|
1019
|
+
| Args | - |
|
|
1020
|
+
| Subcommands | - |
|
|
1021
|
+
|
|
1022
|
+
Signatures:
|
|
1023
|
+
|
|
1024
|
+
- `/task-type` - Set task type (code, document, analysis, plan, general, auto)
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
## Media
|
|
1028
|
+
|
|
1029
|
+
### /call
|
|
1030
|
+
|
|
1031
|
+
Start voice call session (cloudflared tunnel + ASR/TTS)
|
|
1032
|
+
|
|
1033
|
+
| Field | Value |
|
|
1034
|
+
| --- | --- |
|
|
1035
|
+
| Category | Media |
|
|
1036
|
+
| Status | implemented |
|
|
1037
|
+
| Surfaces | tui, rest, gateway |
|
|
1038
|
+
| Safety | userOnly, networked, profileGated |
|
|
1039
|
+
| Aliases | - |
|
|
1040
|
+
| Args | - |
|
|
1041
|
+
| Subcommands | - |
|
|
1042
|
+
|
|
1043
|
+
Signatures:
|
|
1044
|
+
|
|
1045
|
+
- `/call` - Start voice call session (cloudflared tunnel + ASR/TTS)
|
|
1046
|
+
|
|
1047
|
+
### /hangup
|
|
1048
|
+
|
|
1049
|
+
End active call session
|
|
1050
|
+
|
|
1051
|
+
| Field | Value |
|
|
1052
|
+
| --- | --- |
|
|
1053
|
+
| Category | Media |
|
|
1054
|
+
| Status | implemented |
|
|
1055
|
+
| Surfaces | tui, rest, gateway |
|
|
1056
|
+
| Safety | userOnly |
|
|
1057
|
+
| Aliases | - |
|
|
1058
|
+
| Args | - |
|
|
1059
|
+
| Subcommands | - |
|
|
1060
|
+
|
|
1061
|
+
Signatures:
|
|
1062
|
+
|
|
1063
|
+
- `/hangup` - End active call session
|
|
1064
|
+
|
|
1065
|
+
### /image
|
|
1066
|
+
|
|
1067
|
+
Open image-generation model/setup menu
|
|
1068
|
+
|
|
1069
|
+
| Field | Value |
|
|
1070
|
+
| --- | --- |
|
|
1071
|
+
| Category | Media |
|
|
1072
|
+
| Status | implemented |
|
|
1073
|
+
| Surfaces | tui, rest, gateway |
|
|
1074
|
+
| Safety | userOnly, networked |
|
|
1075
|
+
| Aliases | - |
|
|
1076
|
+
| Args | - |
|
|
1077
|
+
| Subcommands | --model, setup, list |
|
|
1078
|
+
|
|
1079
|
+
Signatures:
|
|
1080
|
+
|
|
1081
|
+
- `/image` - Open image-generation model/setup menu
|
|
1082
|
+
- `/image <prompt>` - Generate an image from a prompt and show an ASCII preview
|
|
1083
|
+
- `/image --model <model> <prompt>` - Generate with an explicit image model
|
|
1084
|
+
- `/image setup <ollama\|diffusers\|sdcpp>` - Show setup commands for an image-generation backend
|
|
1085
|
+
- `/image list` - List image models by category, quality, size, and hardware fit
|
|
1086
|
+
|
|
1087
|
+
### /ingest
|
|
1088
|
+
|
|
1089
|
+
Ingest an audio, PDF, or text file into memory
|
|
1090
|
+
|
|
1091
|
+
| Field | Value |
|
|
1092
|
+
| --- | --- |
|
|
1093
|
+
| Category | Media |
|
|
1094
|
+
| Status | implemented |
|
|
1095
|
+
| Surfaces | tui, rest, gateway |
|
|
1096
|
+
| Safety | userOnly |
|
|
1097
|
+
| Aliases | - |
|
|
1098
|
+
| Args | <file> |
|
|
1099
|
+
| Subcommands | - |
|
|
1100
|
+
|
|
1101
|
+
Signatures:
|
|
1102
|
+
|
|
1103
|
+
- `/ingest <file>` - Ingest an audio, PDF, or text file into memory
|
|
1104
|
+
|
|
1105
|
+
### /listen
|
|
1106
|
+
|
|
1107
|
+
Toggle live microphone transcription (Whisper)
|
|
1108
|
+
|
|
1109
|
+
| Field | Value |
|
|
1110
|
+
| --- | --- |
|
|
1111
|
+
| Category | Media |
|
|
1112
|
+
| Status | implemented |
|
|
1113
|
+
| Surfaces | tui, rest, gateway |
|
|
1114
|
+
| Safety | userOnly, networked, profileGated |
|
|
1115
|
+
| Aliases | /mic |
|
|
1116
|
+
| Args | - |
|
|
1117
|
+
| Subcommands | manual, auto, stop |
|
|
1118
|
+
|
|
1119
|
+
Signatures:
|
|
1120
|
+
|
|
1121
|
+
- `/listen` - Toggle live microphone transcription (Whisper)
|
|
1122
|
+
- `/mic` - Alias for /listen
|
|
1123
|
+
- `/listen <model>` - Set model: tiny, base, small, medium, large
|
|
1124
|
+
- `/listen manual` - Manual mode - press Enter to submit (turns off auto)
|
|
1125
|
+
- `/listen auto` - Auto-submit after 3s silence (blinking indicator)
|
|
1126
|
+
- `/listen stop` - Stop listening
|
|
1127
|
+
|
|
1128
|
+
### /paste
|
|
1129
|
+
|
|
1130
|
+
Attach clipboard image content to the current or next prompt
|
|
1131
|
+
|
|
1132
|
+
| Field | Value |
|
|
1133
|
+
| --- | --- |
|
|
1134
|
+
| Category | Media |
|
|
1135
|
+
| Status | implemented |
|
|
1136
|
+
| Surfaces | tui, gateway |
|
|
1137
|
+
| Safety | userOnly |
|
|
1138
|
+
| Aliases | - |
|
|
1139
|
+
| Args | - |
|
|
1140
|
+
| Subcommands | - |
|
|
1141
|
+
|
|
1142
|
+
Signatures:
|
|
1143
|
+
|
|
1144
|
+
- `/paste` - Attach clipboard image content to the current or next prompt
|
|
1145
|
+
|
|
1146
|
+
### /transcribe
|
|
1147
|
+
|
|
1148
|
+
Alias for /ingest <file>
|
|
1149
|
+
|
|
1150
|
+
| Field | Value |
|
|
1151
|
+
| --- | --- |
|
|
1152
|
+
| Category | Media |
|
|
1153
|
+
| Status | implemented |
|
|
1154
|
+
| Surfaces | tui, rest, gateway |
|
|
1155
|
+
| Safety | userOnly |
|
|
1156
|
+
| Aliases | - |
|
|
1157
|
+
| Args | <file> |
|
|
1158
|
+
| Subcommands | - |
|
|
1159
|
+
|
|
1160
|
+
Signatures:
|
|
1161
|
+
|
|
1162
|
+
- `/transcribe <file>` - Alias for /ingest <file>
|
|
1163
|
+
|
|
1164
|
+
### /video
|
|
1165
|
+
|
|
1166
|
+
Open video-generation model/setup menu
|
|
1167
|
+
|
|
1168
|
+
| Field | Value |
|
|
1169
|
+
| --- | --- |
|
|
1170
|
+
| Category | Media |
|
|
1171
|
+
| Status | implemented |
|
|
1172
|
+
| Surfaces | tui, rest, gateway |
|
|
1173
|
+
| Safety | userOnly, networked |
|
|
1174
|
+
| Aliases | - |
|
|
1175
|
+
| Args | - |
|
|
1176
|
+
| Subcommands | --model, --image, setup, list, prewarm |
|
|
1177
|
+
|
|
1178
|
+
Signatures:
|
|
1179
|
+
|
|
1180
|
+
- `/video` - Open video-generation model/setup menu
|
|
1181
|
+
- `/video <prompt>` - Generate a short video from a prompt and show an ASCII thumbnail
|
|
1182
|
+
- `/video --model <model> <prompt>` - Generate video with an explicit model
|
|
1183
|
+
- `/video --image <path\|url> <prompt>` - Image-to-video animation from a still
|
|
1184
|
+
- `/video setup <diffusers\|comfyui>` - Show setup commands for a video-generation backend
|
|
1185
|
+
- `/video list` - List video models by category, quality, size, and hardware fit
|
|
1186
|
+
- `/video prewarm` - Download and warm up the selected video model
|
|
1187
|
+
|
|
1188
|
+
### /voice
|
|
1189
|
+
|
|
1190
|
+
Toggle TTS voice feedback
|
|
1191
|
+
|
|
1192
|
+
| Field | Value |
|
|
1193
|
+
| --- | --- |
|
|
1194
|
+
| Category | Media |
|
|
1195
|
+
| Status | implemented |
|
|
1196
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1197
|
+
| Safety | none |
|
|
1198
|
+
| Aliases | - |
|
|
1199
|
+
| Args | - |
|
|
1200
|
+
| Subcommands | clone |
|
|
1201
|
+
|
|
1202
|
+
Signatures:
|
|
1203
|
+
|
|
1204
|
+
- `/voice` - Toggle TTS voice feedback
|
|
1205
|
+
- `/voice <model>` - Set voice: glados, overwatch, kokoro, luxtts, supertonic
|
|
1206
|
+
- `/voice clone <file>` - Set voice clone reference audio (wav/mp3/ogg/flac)
|
|
1207
|
+
- `/voice clone glados` - Generate clone ref from GLaDOS for LuxTTS
|
|
1208
|
+
- `/voice clone overwatch` - Generate clone ref from Overwatch for LuxTTS
|
|
1209
|
+
|
|
1210
|
+
### /voicechat
|
|
1211
|
+
|
|
1212
|
+
Start voice chat session (async voice conversation)
|
|
1213
|
+
|
|
1214
|
+
| Field | Value |
|
|
1215
|
+
| --- | --- |
|
|
1216
|
+
| Category | Media |
|
|
1217
|
+
| Status | implemented |
|
|
1218
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1219
|
+
| Safety | none |
|
|
1220
|
+
| Aliases | - |
|
|
1221
|
+
| Args | - |
|
|
1222
|
+
| Subcommands | stop |
|
|
1223
|
+
|
|
1224
|
+
Signatures:
|
|
1225
|
+
|
|
1226
|
+
- `/voicechat` - Start voice chat session (async voice conversation)
|
|
1227
|
+
- `/voicechat stop` - Stop voice chat session
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
## Network And P2P
|
|
1231
|
+
|
|
1232
|
+
### /access
|
|
1233
|
+
|
|
1234
|
+
Show access policy and host binding
|
|
1235
|
+
|
|
1236
|
+
| Field | Value |
|
|
1237
|
+
| --- | --- |
|
|
1238
|
+
| Category | Network And P2P |
|
|
1239
|
+
| Status | implemented |
|
|
1240
|
+
| Surfaces | tui, rest, gateway |
|
|
1241
|
+
| Safety | userOnly, networked, profileGated |
|
|
1242
|
+
| Aliases | - |
|
|
1243
|
+
| Args | - |
|
|
1244
|
+
| Subcommands | - |
|
|
1245
|
+
|
|
1246
|
+
Signatures:
|
|
1247
|
+
|
|
1248
|
+
- `/access` - Show access policy and host binding
|
|
1249
|
+
- `/access <loopback\|lan\|any>` - Set access policy (OMNIUS_ACCESS) and restart daemon
|
|
1250
|
+
|
|
1251
|
+
### /cohere
|
|
1252
|
+
|
|
1253
|
+
Toggle COHERE cognitive commons - join distributed memory/identity mesh
|
|
1254
|
+
|
|
1255
|
+
| Field | Value |
|
|
1256
|
+
| --- | --- |
|
|
1257
|
+
| Category | Network And P2P |
|
|
1258
|
+
| Status | implemented |
|
|
1259
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1260
|
+
| Safety | networked |
|
|
1261
|
+
| Aliases | - |
|
|
1262
|
+
| Args | - |
|
|
1263
|
+
| Subcommands | stats, models, allow, deny |
|
|
1264
|
+
|
|
1265
|
+
Signatures:
|
|
1266
|
+
|
|
1267
|
+
- `/cohere` - Toggle COHERE cognitive commons - join distributed memory/identity mesh
|
|
1268
|
+
- `/cohere stats` - Show network stats - queries in/out, model usage, peer transparency
|
|
1269
|
+
- `/cohere models` - List downloaded models with COHERE exposure status
|
|
1270
|
+
- `/cohere allow <model>` - Allow a model for remote COHERE queries
|
|
1271
|
+
- `/cohere deny <model>` - Hide a model from remote COHERE queries
|
|
1272
|
+
|
|
1273
|
+
### /endpoint
|
|
1274
|
+
|
|
1275
|
+
Show current endpoint
|
|
1276
|
+
|
|
1277
|
+
| Field | Value |
|
|
1278
|
+
| --- | --- |
|
|
1279
|
+
| Category | Network And P2P |
|
|
1280
|
+
| Status | implemented |
|
|
1281
|
+
| Surfaces | tui |
|
|
1282
|
+
| Safety | userOnly, networked, secretBearing |
|
|
1283
|
+
| Aliases | /ep |
|
|
1284
|
+
| Args | - |
|
|
1285
|
+
| Subcommands | sponsor |
|
|
1286
|
+
|
|
1287
|
+
Signatures:
|
|
1288
|
+
|
|
1289
|
+
- `/endpoint` - Show current endpoint
|
|
1290
|
+
- `/endpoint <url>` - Set backend URL (auto-detects type)
|
|
1291
|
+
- `/endpoint <url> --auth <t>` - Set endpoint with Bearer auth
|
|
1292
|
+
- `/endpoint sponsor` - Browse and connect to sponsored inference from the nexus mesh
|
|
1293
|
+
|
|
1294
|
+
### /host
|
|
1295
|
+
|
|
1296
|
+
Set bind host:port (OMNIUS_HOST) and restart daemon
|
|
1297
|
+
|
|
1298
|
+
| Field | Value |
|
|
1299
|
+
| --- | --- |
|
|
1300
|
+
| Category | Network And P2P |
|
|
1301
|
+
| Status | implemented |
|
|
1302
|
+
| Surfaces | tui, rest, gateway |
|
|
1303
|
+
| Safety | userOnly, networked, profileGated |
|
|
1304
|
+
| Aliases | - |
|
|
1305
|
+
| Args | <host[:port]> |
|
|
1306
|
+
| Subcommands | - |
|
|
1307
|
+
|
|
1308
|
+
Signatures:
|
|
1309
|
+
|
|
1310
|
+
- `/host <host[:port]>` - Set bind host:port (OMNIUS_HOST) and restart daemon
|
|
1311
|
+
|
|
1312
|
+
### /ipfs
|
|
1313
|
+
|
|
1314
|
+
Show IPFS/Helia status
|
|
1315
|
+
|
|
1316
|
+
| Field | Value |
|
|
1317
|
+
| --- | --- |
|
|
1318
|
+
| Category | Network And P2P |
|
|
1319
|
+
| Status | implemented |
|
|
1320
|
+
| Surfaces | tui, rest, gateway |
|
|
1321
|
+
| Safety | userOnly, networked, profileGated |
|
|
1322
|
+
| Aliases | - |
|
|
1323
|
+
| Args | - |
|
|
1324
|
+
| Subcommands | pin, publish, share, import |
|
|
1325
|
+
|
|
1326
|
+
Signatures:
|
|
1327
|
+
|
|
1328
|
+
- `/ipfs` - Show IPFS/Helia status
|
|
1329
|
+
- `/ipfs pin <cid>` - Pin an IPFS CID
|
|
1330
|
+
- `/ipfs publish` - Publish identity snapshot to IPFS
|
|
1331
|
+
- `/ipfs share <tool\|skill> <name>` - Share a tool or skill through IPFS
|
|
1332
|
+
- `/ipfs import <cid>` - Import a shared IPFS tool or skill reference
|
|
1333
|
+
|
|
1334
|
+
### /network
|
|
1335
|
+
|
|
1336
|
+
Quick network access helper
|
|
1337
|
+
|
|
1338
|
+
| Field | Value |
|
|
1339
|
+
| --- | --- |
|
|
1340
|
+
| Category | Network And P2P |
|
|
1341
|
+
| Status | implemented |
|
|
1342
|
+
| Surfaces | tui, rest, gateway |
|
|
1343
|
+
| Safety | userOnly, networked, profileGated |
|
|
1344
|
+
| Aliases | /k |
|
|
1345
|
+
| Args | <any\|lan\|loopback\|config> |
|
|
1346
|
+
| Subcommands | config |
|
|
1347
|
+
|
|
1348
|
+
Signatures:
|
|
1349
|
+
|
|
1350
|
+
- `/k <any\|lan\|loopback\|config>` - Quick network access helper
|
|
1351
|
+
- `/network config` - Interactive network access menu
|
|
1352
|
+
|
|
1353
|
+
### /nexus
|
|
1354
|
+
|
|
1355
|
+
Show nexus P2P network status
|
|
1356
|
+
|
|
1357
|
+
| Field | Value |
|
|
1358
|
+
| --- | --- |
|
|
1359
|
+
| Category | Network And P2P |
|
|
1360
|
+
| Status | implemented |
|
|
1361
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1362
|
+
| Safety | networked |
|
|
1363
|
+
| Aliases | - |
|
|
1364
|
+
| Args | - |
|
|
1365
|
+
| Subcommands | connect, name, restart, disconnect, wallet |
|
|
1366
|
+
|
|
1367
|
+
Signatures:
|
|
1368
|
+
|
|
1369
|
+
- `/nexus` - Show nexus P2P network status
|
|
1370
|
+
- `/nexus connect` - Connect to the agent mesh network
|
|
1371
|
+
- `/nexus name <name>` - Set custom agent name (persists globally across all Omnius instances)
|
|
1372
|
+
- `/nexus name` - Show current agent name
|
|
1373
|
+
- `/nexus restart` - Kill daemon and reconnect (picks up new version)
|
|
1374
|
+
- `/nexus restart --clean` - Restart + clear metering data for fresh stats
|
|
1375
|
+
- `/nexus disconnect` - Kill daemon without reconnecting
|
|
1376
|
+
- `/nexus wallet` - Show wallet address and x402 payment status
|
|
1377
|
+
|
|
1378
|
+
### /p2p
|
|
1379
|
+
|
|
1380
|
+
Join the P2P agent mesh network
|
|
1381
|
+
|
|
1382
|
+
| Field | Value |
|
|
1383
|
+
| --- | --- |
|
|
1384
|
+
| Category | Network And P2P |
|
|
1385
|
+
| Status | implemented |
|
|
1386
|
+
| Surfaces | tui, rest, gateway |
|
|
1387
|
+
| Safety | userOnly, networked, profileGated |
|
|
1388
|
+
| Aliases | - |
|
|
1389
|
+
| Args | start |
|
|
1390
|
+
| Subcommands | start, status, stop |
|
|
1391
|
+
|
|
1392
|
+
Signatures:
|
|
1393
|
+
|
|
1394
|
+
- `/p2p start` - Join the P2P agent mesh network
|
|
1395
|
+
- `/p2p status` - Show mesh peers and rooms
|
|
1396
|
+
- `/p2p stop` - Leave the mesh network
|
|
1397
|
+
|
|
1398
|
+
### /provider
|
|
1399
|
+
|
|
1400
|
+
Show or select provider profile
|
|
1401
|
+
|
|
1402
|
+
| Field | Value |
|
|
1403
|
+
| --- | --- |
|
|
1404
|
+
| Category | Network And P2P |
|
|
1405
|
+
| Status | planned |
|
|
1406
|
+
| Surfaces | tui |
|
|
1407
|
+
| Safety | none |
|
|
1408
|
+
| Aliases | - |
|
|
1409
|
+
| Args | - |
|
|
1410
|
+
| Subcommands | - |
|
|
1411
|
+
|
|
1412
|
+
Signatures:
|
|
1413
|
+
|
|
1414
|
+
- `/provider` - Show or select provider profile
|
|
1415
|
+
|
|
1416
|
+
### /sponsor
|
|
1417
|
+
|
|
1418
|
+
Sponsor inference - onboarding wizard or dashboard
|
|
1419
|
+
|
|
1420
|
+
| Field | Value |
|
|
1421
|
+
| --- | --- |
|
|
1422
|
+
| Category | Network And P2P |
|
|
1423
|
+
| Status | implemented |
|
|
1424
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1425
|
+
| Safety | networked |
|
|
1426
|
+
| Aliases | - |
|
|
1427
|
+
| Args | - |
|
|
1428
|
+
| Subcommands | status, image, video, sound, music, pause, remove |
|
|
1429
|
+
|
|
1430
|
+
Signatures:
|
|
1431
|
+
|
|
1432
|
+
- `/sponsor` - Sponsor inference - onboarding wizard or dashboard
|
|
1433
|
+
- `/sponsor status` - Show sponsor dashboard with usage metrics
|
|
1434
|
+
- `/sponsor image <prompt>` - Generate an image on a sponsored peer
|
|
1435
|
+
- `/sponsor video <prompt>` - Generate a video on a sponsored peer
|
|
1436
|
+
- `/sponsor sound <prompt>` - Generate a sound effect on a sponsored peer
|
|
1437
|
+
- `/sponsor music <prompt>` - Generate music on a sponsored peer
|
|
1438
|
+
- `/sponsor pause` - Pause active sponsorship
|
|
1439
|
+
- `/sponsor remove` - Remove sponsorship entirely
|
|
1440
|
+
|
|
1441
|
+
|
|
1442
|
+
## Memory And Context
|
|
1443
|
+
|
|
1444
|
+
### /memory
|
|
1445
|
+
|
|
1446
|
+
Toggle memory visualizer - graph/episodes/concepts/timeline
|
|
1447
|
+
|
|
1448
|
+
| Field | Value |
|
|
1449
|
+
| --- | --- |
|
|
1450
|
+
| Category | Memory And Context |
|
|
1451
|
+
| Status | implemented |
|
|
1452
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1453
|
+
| Safety | none |
|
|
1454
|
+
| Aliases | /mem |
|
|
1455
|
+
| Args | - |
|
|
1456
|
+
| Subcommands | graph, episodes, concepts, timeline |
|
|
1457
|
+
|
|
1458
|
+
Signatures:
|
|
1459
|
+
|
|
1460
|
+
- `/memory` - Toggle memory visualizer - graph/episodes/concepts/timeline
|
|
1461
|
+
- `/memory graph` - Show knowledge graph view
|
|
1462
|
+
- `/memory episodes` - Show recent episodes view
|
|
1463
|
+
- `/memory concepts` - Show concept clusters view
|
|
1464
|
+
- `/memory timeline` - Show temporal timeline view
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
## Tools And Skills
|
|
1468
|
+
|
|
1469
|
+
### /codegraph
|
|
1470
|
+
|
|
1471
|
+
Code-graph snapshot: stats, top files, recent activity
|
|
1472
|
+
|
|
1473
|
+
| Field | Value |
|
|
1474
|
+
| --- | --- |
|
|
1475
|
+
| Category | Tools And Skills |
|
|
1476
|
+
| Status | implemented |
|
|
1477
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1478
|
+
| Safety | none |
|
|
1479
|
+
| Aliases | /cg |
|
|
1480
|
+
| Args | - |
|
|
1481
|
+
| Subcommands | watch |
|
|
1482
|
+
|
|
1483
|
+
Signatures:
|
|
1484
|
+
|
|
1485
|
+
- `/codegraph` - Code-graph snapshot: stats, top files, recent activity
|
|
1486
|
+
- `/codegraph watch [N]` - Subscribe to live code-graph events for N seconds (default 30)
|
|
1487
|
+
- `/cg` - Alias for /codegraph
|
|
1488
|
+
|
|
1489
|
+
### /files
|
|
1490
|
+
|
|
1491
|
+
Show searchable working-directory file overview
|
|
1492
|
+
|
|
1493
|
+
| Field | Value |
|
|
1494
|
+
| --- | --- |
|
|
1495
|
+
| Category | Tools And Skills |
|
|
1496
|
+
| Status | implemented |
|
|
1497
|
+
| Surfaces | tui, rest, gateway |
|
|
1498
|
+
| Safety | userOnly |
|
|
1499
|
+
| Aliases | /workspace |
|
|
1500
|
+
| Args | - |
|
|
1501
|
+
| Subcommands | menu |
|
|
1502
|
+
|
|
1503
|
+
Signatures:
|
|
1504
|
+
|
|
1505
|
+
- `/files` - Show searchable working-directory file overview
|
|
1506
|
+
- `/files <query>` - Filter the working-directory file overview
|
|
1507
|
+
- `/files menu` - Open searchable workspace file selector
|
|
1508
|
+
- `/workspace` - Alias for /files
|
|
1509
|
+
- `/workspace <query>` - Alias for /files <query>
|
|
1510
|
+
- `/workspace menu` - Alias for /files menu
|
|
1511
|
+
|
|
1512
|
+
### /mcp
|
|
1513
|
+
|
|
1514
|
+
Show MCP server/tool status and controls
|
|
1515
|
+
|
|
1516
|
+
| Field | Value |
|
|
1517
|
+
| --- | --- |
|
|
1518
|
+
| Category | Tools And Skills |
|
|
1519
|
+
| Status | implemented |
|
|
1520
|
+
| Surfaces | tui, rest, gateway |
|
|
1521
|
+
| Safety | userOnly, networked, profileGated |
|
|
1522
|
+
| Aliases | /mcps |
|
|
1523
|
+
| Args | - |
|
|
1524
|
+
| Subcommands | reload |
|
|
1525
|
+
|
|
1526
|
+
Signatures:
|
|
1527
|
+
|
|
1528
|
+
- `/mcp` - Show MCP server/tool status and controls
|
|
1529
|
+
- `/mcp reload` - Reload MCP servers and tools
|
|
1530
|
+
|
|
1531
|
+
### /skillify
|
|
1532
|
+
|
|
1533
|
+
Extract a reusable skill from the current session
|
|
1534
|
+
|
|
1535
|
+
| Field | Value |
|
|
1536
|
+
| --- | --- |
|
|
1537
|
+
| Category | Tools And Skills |
|
|
1538
|
+
| Status | implemented |
|
|
1539
|
+
| Surfaces | tui, rest, gateway |
|
|
1540
|
+
| Safety | userOnly |
|
|
1541
|
+
| Aliases | - |
|
|
1542
|
+
| Args | [request] |
|
|
1543
|
+
| Subcommands | - |
|
|
1544
|
+
|
|
1545
|
+
Signatures:
|
|
1546
|
+
|
|
1547
|
+
- `/skillify [request]` - Extract a reusable skill from the current session
|
|
1548
|
+
|
|
1549
|
+
### /skills
|
|
1550
|
+
|
|
1551
|
+
List available AIWG skills
|
|
1552
|
+
|
|
1553
|
+
| Field | Value |
|
|
1554
|
+
| --- | --- |
|
|
1555
|
+
| Category | Tools And Skills |
|
|
1556
|
+
| Status | implemented |
|
|
1557
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1558
|
+
| Safety | none |
|
|
1559
|
+
| Aliases | /skill |
|
|
1560
|
+
| Args | - |
|
|
1561
|
+
| Subcommands | - |
|
|
1562
|
+
|
|
1563
|
+
Signatures:
|
|
1564
|
+
|
|
1565
|
+
- `/skills` - List available AIWG skills
|
|
1566
|
+
- `/skill` - Alias for /skills
|
|
1567
|
+
- `/skills <keyword>` - Filter skills by name or trigger
|
|
1568
|
+
|
|
1569
|
+
### /tools
|
|
1570
|
+
|
|
1571
|
+
List agent-created custom tools
|
|
1572
|
+
|
|
1573
|
+
| Field | Value |
|
|
1574
|
+
| --- | --- |
|
|
1575
|
+
| Category | Tools And Skills |
|
|
1576
|
+
| Status | implemented |
|
|
1577
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1578
|
+
| Safety | none |
|
|
1579
|
+
| Aliases | - |
|
|
1580
|
+
| Args | - |
|
|
1581
|
+
| Subcommands | - |
|
|
1582
|
+
|
|
1583
|
+
Signatures:
|
|
1584
|
+
|
|
1585
|
+
- `/tools` - List agent-created custom tools
|
|
1586
|
+
|
|
1587
|
+
|
|
1588
|
+
## External Gateways
|
|
1589
|
+
|
|
1590
|
+
### /expose
|
|
1591
|
+
|
|
1592
|
+
Expose local inference via libp2p (default)
|
|
1593
|
+
|
|
1594
|
+
| Field | Value |
|
|
1595
|
+
| --- | --- |
|
|
1596
|
+
| Category | External Gateways |
|
|
1597
|
+
| Status | implemented |
|
|
1598
|
+
| Surfaces | tui, rest, gateway |
|
|
1599
|
+
| Safety | userOnly, networked, profileGated |
|
|
1600
|
+
| Aliases | - |
|
|
1601
|
+
| Args | <backend> |
|
|
1602
|
+
| Subcommands | passthrough, forward, config, status, stop |
|
|
1603
|
+
|
|
1604
|
+
Signatures:
|
|
1605
|
+
|
|
1606
|
+
- `/expose <backend>` - Expose local inference via libp2p (default)
|
|
1607
|
+
- `/expose <backend> --tunnel` - Expose via cloudflared tunnel
|
|
1608
|
+
- `/expose passthrough` - Forward configured /endpoint through libp2p P2P
|
|
1609
|
+
- `/expose forward --loadbalance` - Passthrough with distributed rate-limit budget
|
|
1610
|
+
- `/expose config` - Interactive expose configuration menu
|
|
1611
|
+
- `/expose status` - Show gateway stats (requests, models, budget)
|
|
1612
|
+
- `/expose stop` - Stop all expose gateways
|
|
1613
|
+
- `/expose stop --tunnel` - Stop tunnel gateway only
|
|
1614
|
+
- `/expose stop --libp2p` - Stop libp2p gateway only
|
|
1615
|
+
|
|
1616
|
+
### /telegram
|
|
1617
|
+
|
|
1618
|
+
Save Telegram bot token (persisted to settings)
|
|
1619
|
+
|
|
1620
|
+
| Field | Value |
|
|
1621
|
+
| --- | --- |
|
|
1622
|
+
| Category | External Gateways |
|
|
1623
|
+
| Status | implemented |
|
|
1624
|
+
| Surfaces | tui |
|
|
1625
|
+
| Safety | userOnly, networked, secretBearing, profileGated |
|
|
1626
|
+
| Aliases | /tg |
|
|
1627
|
+
| Args | --key <token> |
|
|
1628
|
+
| Subcommands | --key, --admin, status, stop, mode, subagents, auth, bot, poll, live-photo, draft, admins, personal, access, tools, delete-message, delete-messages, delete-reaction, delete-reactions |
|
|
1629
|
+
|
|
1630
|
+
Signatures:
|
|
1631
|
+
|
|
1632
|
+
- `/telegram --key <token>` - Save Telegram bot token (persisted to settings)
|
|
1633
|
+
- `/telegram --admin <userid>` - Set admin user filter (only this user can interact)
|
|
1634
|
+
- `/telegram` - Toggle Telegram bridge on/off (uses saved key)
|
|
1635
|
+
- `/telegram status` - Show Telegram bridge status
|
|
1636
|
+
- `/telegram stop` - Disconnect Telegram bridge
|
|
1637
|
+
- `/telegram mode auto\|chat\|action` - Set Telegram interaction routing: auto, fast chat, or action sub-agent
|
|
1638
|
+
- `/telegram subagents <1-5>` - Set global Telegram work-slot limit across all chats/groups
|
|
1639
|
+
- `/telegram auth` - Show a TUI-only one-time code for Telegram admin authentication
|
|
1640
|
+
- `/telegram auth cancel` - Cancel the pending Telegram admin authentication code
|
|
1641
|
+
- `/telegram bot <username> <text>` - Send a Bot API bot-to-bot message by @username
|
|
1642
|
+
- `/telegram poll <chat> <question> \| <option> [\| <option>]` - Send a Telegram poll
|
|
1643
|
+
- `/telegram live-photo <chat> <live_photo> <photo> [caption]` - Send a Telegram live photo
|
|
1644
|
+
- `/telegram draft <chat_id> <draft_id> [text]` - Set or clear a Telegram message draft
|
|
1645
|
+
- `/telegram admins <chat> [--bots]` - List chat administrators, optionally including bots
|
|
1646
|
+
- `/telegram personal <user_id> <limit>` - Fetch last messages from a user's profile personal chat
|
|
1647
|
+
- `/telegram access get <managed_bot_user_id>` - Show managed-bot access restriction settings
|
|
1648
|
+
- `/telegram access set <managed_bot_user_id> <restricted\|open> [added_user_ids]` - Set managed-bot access restrictions
|
|
1649
|
+
- `/telegram tools [group <chat>\|panel <chat> [policy_chat]]` - Show unified Telegram tool policy or send inline admin toggle buttons
|
|
1650
|
+
- `/telegram delete-message <chat> <message> [reason]` - Delete one Telegram message after policy and Bot API rights checks
|
|
1651
|
+
- `/telegram delete-messages <chat> <message,message> [reason]` - Delete multiple Telegram messages after policy and Bot API rights checks
|
|
1652
|
+
- `/telegram delete-reaction <chat> <message> [--user <id>\|--actor <chat>]` - Delete a Telegram message reaction
|
|
1653
|
+
- `/telegram delete-reactions <chat> [--user <id>\|--actor <chat>]` - Delete recent Telegram message reactions by user or chat
|
|
1654
|
+
|
|
1655
|
+
|
|
1656
|
+
## Secrets
|
|
1657
|
+
|
|
1658
|
+
### /apikey
|
|
1659
|
+
|
|
1660
|
+
Show current API key (for pasting into Web UI / clients)
|
|
1661
|
+
|
|
1662
|
+
| Field | Value |
|
|
1663
|
+
| --- | --- |
|
|
1664
|
+
| Category | Secrets |
|
|
1665
|
+
| Status | implemented |
|
|
1666
|
+
| Surfaces | tui |
|
|
1667
|
+
| Safety | userOnly, secretBearing |
|
|
1668
|
+
| Aliases | /key |
|
|
1669
|
+
| Args | - |
|
|
1670
|
+
| Subcommands | copy, new |
|
|
1671
|
+
|
|
1672
|
+
Signatures:
|
|
1673
|
+
|
|
1674
|
+
- `/apikey` - Show current API key (for pasting into Web UI / clients)
|
|
1675
|
+
- `/apikey copy` - Copy the API key to clipboard
|
|
1676
|
+
- `/apikey new` - Rotate to a new API key (regenerate)
|
|
1677
|
+
- `/key` - Alias for /apikey
|
|
1678
|
+
|
|
1679
|
+
### /secrets
|
|
1680
|
+
|
|
1681
|
+
List registered secrets
|
|
1682
|
+
|
|
1683
|
+
| Field | Value |
|
|
1684
|
+
| --- | --- |
|
|
1685
|
+
| Category | Secrets |
|
|
1686
|
+
| Status | implemented |
|
|
1687
|
+
| Surfaces | tui |
|
|
1688
|
+
| Safety | userOnly, secretBearing |
|
|
1689
|
+
| Aliases | /secret, /vault |
|
|
1690
|
+
| Args | - |
|
|
1691
|
+
| Subcommands | set, delete |
|
|
1692
|
+
|
|
1693
|
+
Signatures:
|
|
1694
|
+
|
|
1695
|
+
- `/secrets` - List registered secrets
|
|
1696
|
+
- `/secrets set <name> <value>` - Register a secret for redacted tool use
|
|
1697
|
+
- `/secrets delete <name>` - Remove a registered secret
|
|
1698
|
+
|
|
1699
|
+
|
|
1700
|
+
## Interface
|
|
1701
|
+
|
|
1702
|
+
### /color
|
|
1703
|
+
|
|
1704
|
+
Show or configure terminal colors/theme
|
|
1705
|
+
|
|
1706
|
+
| Field | Value |
|
|
1707
|
+
| --- | --- |
|
|
1708
|
+
| Category | Interface |
|
|
1709
|
+
| Status | implemented |
|
|
1710
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1711
|
+
| Safety | none |
|
|
1712
|
+
| Aliases | /colors, /theme |
|
|
1713
|
+
| Args | - |
|
|
1714
|
+
| Subcommands | - |
|
|
1715
|
+
|
|
1716
|
+
Signatures:
|
|
1717
|
+
|
|
1718
|
+
- `/color` - Show or configure terminal colors/theme
|
|
1719
|
+
- `/theme` - Alias for /color
|
|
1720
|
+
|
|
1721
|
+
### /emojis
|
|
1722
|
+
|
|
1723
|
+
Toggle emoji rendering in TUI messages
|
|
1724
|
+
|
|
1725
|
+
| Field | Value |
|
|
1726
|
+
| --- | --- |
|
|
1727
|
+
| Category | Interface |
|
|
1728
|
+
| Status | implemented |
|
|
1729
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1730
|
+
| Safety | none |
|
|
1731
|
+
| Aliases | /emoji |
|
|
1732
|
+
| Args | - |
|
|
1733
|
+
| Subcommands | - |
|
|
1734
|
+
|
|
1735
|
+
Signatures:
|
|
1736
|
+
|
|
1737
|
+
- `/emojis` - Toggle emoji rendering in TUI messages
|
|
1738
|
+
|
|
1739
|
+
### /mouse
|
|
1740
|
+
|
|
1741
|
+
Toggle terminal mouse tracking
|
|
1742
|
+
|
|
1743
|
+
| Field | Value |
|
|
1744
|
+
| --- | --- |
|
|
1745
|
+
| Category | Interface |
|
|
1746
|
+
| Status | implemented |
|
|
1747
|
+
| Surfaces | tui, rest, gateway |
|
|
1748
|
+
| Safety | userOnly |
|
|
1749
|
+
| Aliases | - |
|
|
1750
|
+
| Args | - |
|
|
1751
|
+
| Subcommands | - |
|
|
1752
|
+
|
|
1753
|
+
Signatures:
|
|
1754
|
+
|
|
1755
|
+
- `/mouse` - Toggle terminal mouse tracking
|
|
1756
|
+
|
|
1757
|
+
### /neovim
|
|
1758
|
+
|
|
1759
|
+
Toggle embedded Neovim editor (Ctrl+N to switch focus)
|
|
1760
|
+
|
|
1761
|
+
| Field | Value |
|
|
1762
|
+
| --- | --- |
|
|
1763
|
+
| Category | Interface |
|
|
1764
|
+
| Status | implemented |
|
|
1765
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1766
|
+
| Safety | none |
|
|
1767
|
+
| Aliases | /nvim, /vim |
|
|
1768
|
+
| Args | - |
|
|
1769
|
+
| Subcommands | - |
|
|
1770
|
+
|
|
1771
|
+
Signatures:
|
|
1772
|
+
|
|
1773
|
+
- `/neovim` - Toggle embedded Neovim editor (Ctrl+N to switch focus)
|
|
1774
|
+
- `/neovim <file>` - Open file in embedded Neovim editor
|
|
1775
|
+
- `/nvim <file>` - Alias for /neovim <file>
|
|
1776
|
+
- `/vim <file>` - Alias for /neovim <file>
|
|
1777
|
+
|
|
1778
|
+
### /personality
|
|
1779
|
+
|
|
1780
|
+
Alias family for response style/personality controls
|
|
1781
|
+
|
|
1782
|
+
| Field | Value |
|
|
1783
|
+
| --- | --- |
|
|
1784
|
+
| Category | Interface |
|
|
1785
|
+
| Status | implemented |
|
|
1786
|
+
| Surfaces | tui, rest, gateway, agentTool |
|
|
1787
|
+
| Safety | none |
|
|
1788
|
+
| Aliases | - |
|
|
1789
|
+
| Args | <preset> |
|
|
1790
|
+
| Subcommands | - |
|
|
1791
|
+
|
|
1792
|
+
Signatures:
|
|
1793
|
+
|
|
1794
|
+
- `/personality <preset>` - Alias family for response style/personality controls
|
|
1795
|
+
|
|
1796
|
+
### /prompt
|
|
1797
|
+
|
|
1798
|
+
Show or edit the active prompt template
|
|
1799
|
+
|
|
1800
|
+
| Field | Value |
|
|
1801
|
+
| --- | --- |
|
|
1802
|
+
| Category | Interface |
|
|
1803
|
+
| Status | planned |
|
|
1804
|
+
| Surfaces | tui |
|
|
1805
|
+
| Safety | none |
|
|
1806
|
+
| Aliases | - |
|
|
1807
|
+
| Args | - |
|
|
1808
|
+
| Subcommands | - |
|
|
1809
|
+
|
|
1810
|
+
Signatures:
|
|
1811
|
+
|
|
1812
|
+
- `/prompt` - Show or edit the active prompt template
|
|
1813
|
+
|
|
1814
|
+
### /reasoning
|
|
1815
|
+
|
|
1816
|
+
Alias family for thinking/reasoning controls
|
|
1817
|
+
|
|
1818
|
+
| Field | Value |
|
|
1819
|
+
| --- | --- |
|
|
1820
|
+
| Category | Interface |
|
|
1821
|
+
| Status | planned |
|
|
1822
|
+
| Surfaces | tui |
|
|
1823
|
+
| Safety | none |
|
|
1824
|
+
| Aliases | - |
|
|
1825
|
+
| Args | - |
|
|
1826
|
+
| Subcommands | - |
|
|
1827
|
+
|
|
1828
|
+
Signatures:
|
|
1829
|
+
|
|
1830
|
+
- `/reasoning` - Alias family for thinking/reasoning controls
|
|
1831
|
+
|
|
1832
|
+
### /skin
|
|
1833
|
+
|
|
1834
|
+
Configure the visual skin/theme bundle
|
|
1835
|
+
|
|
1836
|
+
| Field | Value |
|
|
1837
|
+
| --- | --- |
|
|
1838
|
+
| Category | Interface |
|
|
1839
|
+
| Status | planned |
|
|
1840
|
+
| Surfaces | tui |
|
|
1841
|
+
| Safety | none |
|
|
1842
|
+
| Aliases | - |
|
|
1843
|
+
| Args | - |
|
|
1844
|
+
| Subcommands | - |
|
|
1845
|
+
|
|
1846
|
+
Signatures:
|
|
1847
|
+
|
|
1848
|
+
- `/skin` - Configure the visual skin/theme bundle
|
|
1849
|
+
|
|
1850
|
+
### /statusbar
|
|
1851
|
+
|
|
1852
|
+
Configure the status bar
|
|
1853
|
+
|
|
1854
|
+
| Field | Value |
|
|
1855
|
+
| --- | --- |
|
|
1856
|
+
| Category | Interface |
|
|
1857
|
+
| Status | planned |
|
|
1858
|
+
| Surfaces | tui |
|
|
1859
|
+
| Safety | none |
|
|
1860
|
+
| Aliases | /sb |
|
|
1861
|
+
| Args | - |
|
|
1862
|
+
| Subcommands | - |
|
|
1863
|
+
|
|
1864
|
+
Signatures:
|
|
1865
|
+
|
|
1866
|
+
- `/statusbar` - Configure the status bar
|
|
1867
|
+
- `/sb` - Alias for /statusbar
|
|
1868
|
+
|
|
1869
|
+
|
|
1870
|
+
## Administration
|
|
1871
|
+
|
|
1872
|
+
### /storage
|
|
1873
|
+
|
|
1874
|
+
Show .omnius storage usage and safety summary
|
|
1875
|
+
|
|
1876
|
+
| Field | Value |
|
|
1877
|
+
| --- | --- |
|
|
1878
|
+
| Category | Administration |
|
|
1879
|
+
| Status | implemented |
|
|
1880
|
+
| Surfaces | tui, rest, gateway |
|
|
1881
|
+
| Safety | userOnly |
|
|
1882
|
+
| Aliases | - |
|
|
1883
|
+
| Args | - |
|
|
1884
|
+
| Subcommands | - |
|
|
1885
|
+
|
|
1886
|
+
Signatures:
|
|
1887
|
+
|
|
1888
|
+
- `/storage` - Show .omnius storage usage and safety summary
|
|
1889
|
+
|
|
1890
|
+
### /update
|
|
1891
|
+
|
|
1892
|
+
Check for updates and auto-install
|
|
1893
|
+
|
|
1894
|
+
| Field | Value |
|
|
1895
|
+
| --- | --- |
|
|
1896
|
+
| Category | Administration |
|
|
1897
|
+
| Status | implemented |
|
|
1898
|
+
| Surfaces | tui |
|
|
1899
|
+
| Safety | userOnly, destructive, networked, profileGated |
|
|
1900
|
+
| Aliases | /upgrade |
|
|
1901
|
+
| Args | - |
|
|
1902
|
+
| Subcommands | auto, manual, check, quick, full |
|
|
1903
|
+
|
|
1904
|
+
Signatures:
|
|
1905
|
+
|
|
1906
|
+
- `/update` - Check for updates and auto-install
|
|
1907
|
+
- `/upgrade` - Alias for /update
|
|
1908
|
+
- `/update auto` - Enable auto-update after task completion (default)
|
|
1909
|
+
- `/update manual` - Disable auto-update (only update on /update)
|
|
1910
|
+
- `/update check` - Check for Omnius and Ollama updates without opening the menu
|
|
1911
|
+
- `/update quick` - Install the latest Omnius package non-interactively
|
|
1912
|
+
- `/update full` - Run full non-interactive update: package, deps, rebuild, Python, cloudflared
|
|
1913
|
+
|
|
1914
|
+
|
|
1915
|
+
## Planned
|
|
1916
|
+
|
|
1917
|
+
### /approve
|
|
1918
|
+
|
|
1919
|
+
Approve a pending gateway/admin action
|
|
1920
|
+
|
|
1921
|
+
| Field | Value |
|
|
1922
|
+
| --- | --- |
|
|
1923
|
+
| Category | Planned |
|
|
1924
|
+
| Status | planned |
|
|
1925
|
+
| Surfaces | tui |
|
|
1926
|
+
| Safety | userOnly, profileGated |
|
|
1927
|
+
| Aliases | - |
|
|
1928
|
+
| Args | - |
|
|
1929
|
+
| Subcommands | - |
|
|
1930
|
+
|
|
1931
|
+
Signatures:
|
|
1932
|
+
|
|
1933
|
+
- `/approve` - Approve a pending gateway/admin action
|
|
1934
|
+
|
|
1935
|
+
### /browser
|
|
1936
|
+
|
|
1937
|
+
Manage browser-agent connectivity
|
|
1938
|
+
|
|
1939
|
+
| Field | Value |
|
|
1940
|
+
| --- | --- |
|
|
1941
|
+
| Category | Planned |
|
|
1942
|
+
| Status | planned |
|
|
1943
|
+
| Surfaces | tui |
|
|
1944
|
+
| Safety | networked |
|
|
1945
|
+
| Aliases | - |
|
|
1946
|
+
| Args | connect\|disconnect\|status |
|
|
1947
|
+
| Subcommands | - |
|
|
1948
|
+
|
|
1949
|
+
Signatures:
|
|
1950
|
+
|
|
1951
|
+
- `/browser connect\|disconnect\|status` - Manage browser-agent connectivity
|
|
1952
|
+
|
|
1953
|
+
### /deny
|
|
1954
|
+
|
|
1955
|
+
Deny a pending gateway/admin action
|
|
1956
|
+
|
|
1957
|
+
| Field | Value |
|
|
1958
|
+
| --- | --- |
|
|
1959
|
+
| Category | Planned |
|
|
1960
|
+
| Status | planned |
|
|
1961
|
+
| Surfaces | tui |
|
|
1962
|
+
| Safety | userOnly, destructive, profileGated |
|
|
1963
|
+
| Aliases | - |
|
|
1964
|
+
| Args | - |
|
|
1965
|
+
| Subcommands | - |
|
|
1966
|
+
|
|
1967
|
+
Signatures:
|
|
1968
|
+
|
|
1969
|
+
- `/deny` - Deny a pending gateway/admin action
|
|
1970
|
+
|
|
1971
|
+
### /insights
|
|
1972
|
+
|
|
1973
|
+
Show session insights
|
|
1974
|
+
|
|
1975
|
+
| Field | Value |
|
|
1976
|
+
| --- | --- |
|
|
1977
|
+
| Category | Planned |
|
|
1978
|
+
| Status | planned |
|
|
1979
|
+
| Surfaces | tui |
|
|
1980
|
+
| Safety | none |
|
|
1981
|
+
| Aliases | - |
|
|
1982
|
+
| Args | - |
|
|
1983
|
+
| Subcommands | - |
|
|
1984
|
+
|
|
1985
|
+
Signatures:
|
|
1986
|
+
|
|
1987
|
+
- `/insights` - Show session insights
|
|
1988
|
+
|
|
1989
|
+
### /plugins
|
|
1990
|
+
|
|
1991
|
+
List or manage plugins
|
|
1992
|
+
|
|
1993
|
+
| Field | Value |
|
|
1994
|
+
| --- | --- |
|
|
1995
|
+
| Category | Planned |
|
|
1996
|
+
| Status | planned |
|
|
1997
|
+
| Surfaces | tui |
|
|
1998
|
+
| Safety | networked |
|
|
1999
|
+
| Aliases | - |
|
|
2000
|
+
| Args | - |
|
|
2001
|
+
| Subcommands | - |
|
|
2002
|
+
|
|
2003
|
+
Signatures:
|
|
2004
|
+
|
|
2005
|
+
- `/plugins` - List or manage plugins
|
|
2006
|
+
|
|
2007
|
+
### /reload-mcp
|
|
2008
|
+
|
|
2009
|
+
Reload MCP servers and tools
|
|
2010
|
+
|
|
2011
|
+
| Field | Value |
|
|
2012
|
+
| --- | --- |
|
|
2013
|
+
| Category | Planned |
|
|
2014
|
+
| Status | planned |
|
|
2015
|
+
| Surfaces | tui |
|
|
2016
|
+
| Safety | networked |
|
|
2017
|
+
| Aliases | - |
|
|
2018
|
+
| Args | - |
|
|
2019
|
+
| Subcommands | - |
|
|
2020
|
+
|
|
2021
|
+
Signatures:
|
|
2022
|
+
|
|
2023
|
+
- `/reload-mcp` - Reload MCP servers and tools
|
|
2024
|
+
|
|
2025
|
+
### /sethome
|
|
2026
|
+
|
|
2027
|
+
Set the project home for gateway/session use
|
|
2028
|
+
|
|
2029
|
+
| Field | Value |
|
|
2030
|
+
| --- | --- |
|
|
2031
|
+
| Category | Planned |
|
|
2032
|
+
| Status | planned |
|
|
2033
|
+
| Surfaces | tui |
|
|
2034
|
+
| Safety | userOnly, profileGated |
|
|
2035
|
+
| Aliases | - |
|
|
2036
|
+
| Args | - |
|
|
2037
|
+
| Subcommands | - |
|
|
2038
|
+
|
|
2039
|
+
Signatures:
|
|
2040
|
+
|
|
2041
|
+
- `/sethome` - Set the project home for gateway/session use
|
|
2042
|
+
|
|
2043
|
+
### /status
|
|
2044
|
+
|
|
2045
|
+
Show overall runtime status
|
|
2046
|
+
|
|
2047
|
+
| Field | Value |
|
|
2048
|
+
| --- | --- |
|
|
2049
|
+
| Category | Planned |
|
|
2050
|
+
| Status | planned |
|
|
2051
|
+
| Surfaces | tui |
|
|
2052
|
+
| Safety | none |
|
|
2053
|
+
| Aliases | - |
|
|
2054
|
+
| Args | - |
|
|
2055
|
+
| Subcommands | - |
|
|
2056
|
+
|
|
2057
|
+
Signatures:
|
|
2058
|
+
|
|
2059
|
+
- `/status` - Show overall runtime status
|
|
2060
|
+
|
|
2061
|
+
### /toolsets
|
|
2062
|
+
|
|
2063
|
+
Show or select tool exposure sets
|
|
2064
|
+
|
|
2065
|
+
| Field | Value |
|
|
2066
|
+
| --- | --- |
|
|
2067
|
+
| Category | Planned |
|
|
2068
|
+
| Status | planned |
|
|
2069
|
+
| Surfaces | tui |
|
|
2070
|
+
| Safety | none |
|
|
2071
|
+
| Aliases | - |
|
|
2072
|
+
| Args | - |
|
|
2073
|
+
| Subcommands | - |
|
|
2074
|
+
|
|
2075
|
+
Signatures:
|
|
2076
|
+
|
|
2077
|
+
- `/toolsets` - Show or select tool exposure sets
|
|
2078
|
+
|
|
2079
|
+
### /usage
|
|
2080
|
+
|
|
2081
|
+
Show usage and quota details
|
|
2082
|
+
|
|
2083
|
+
| Field | Value |
|
|
2084
|
+
| --- | --- |
|
|
2085
|
+
| Category | Planned |
|
|
2086
|
+
| Status | planned |
|
|
2087
|
+
| Surfaces | tui |
|
|
2088
|
+
| Safety | none |
|
|
2089
|
+
| Aliases | - |
|
|
2090
|
+
| Args | - |
|
|
2091
|
+
| Subcommands | - |
|
|
2092
|
+
|
|
2093
|
+
Signatures:
|
|
2094
|
+
|
|
2095
|
+
- `/usage` - Show usage and quota details
|