omnius 1.0.608 → 1.0.610
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 +3 -1
- package/.aiwg/addons/omnius-docs/manifest.json +4 -2
- package/.aiwg/addons/omnius-docs/skills/omnius-agent-onboarding/SKILL.md +70 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-docs/SKILL.md +8 -4
- package/.aiwg/addons/omnius-rest-docs/README.md +2 -1
- package/.aiwg/addons/omnius-rest-docs/skills/omnius-rest-docs/SKILL.md +5 -3
- package/README.md +352 -108
- package/dist/discovery.d.ts +55 -2
- package/dist/index.js +8345 -6382
- package/dist/library.d.ts +2 -2
- package/dist/library.js +67 -7
- package/dist/scripts/vibevoice-asr-worker.py +195 -0
- package/dist/update-worker.js +211 -5
- package/docs/.vitepress/config.mts +3 -0
- package/docs/DISCOVERY.json +27446 -6695
- package/docs/DISCOVERY.md +437 -330
- package/docs/architecture/agent-system-map.md +176 -0
- package/docs/architecture/overview.md +5 -0
- package/docs/discovery/agent-map.json +119 -0
- package/docs/getting-started/install.md +1 -1
- package/docs/guides/agent-integration.md +69 -7
- package/docs/guides/dashboard.md +170 -0
- package/docs/guides/system-tray.md +28 -0
- package/docs/index.md +4 -1
- package/docs/reference/configuration.md +10 -0
- package/docs/reference/rest-api.md +161 -8
- package/docs/reference/slash-commands.md +31 -3
- package/docs/rest/INDEX.md +11 -10
- package/docs/rest/QUICKREF.md +39 -0
- package/docs/rest/endpoints/chat.md +24 -1
- package/docs/rest/endpoints/config.md +8 -1
- package/docs/rest/endpoints/discovery.md +21 -3
- package/docs/rest/endpoints/files.md +7 -2
- package/docs/rest/endpoints/memory.md +4 -0
- package/docs/rest/endpoints/run.md +17 -4
- package/docs/rest/endpoints/voice-vision.md +22 -5
- package/npm-shrinkwrap.json +2 -2
- package/package.json +6 -3
- package/templates/OMNIUS.md +29 -5
- package/voices/personaplex/quantize-weights.py +0 -167
package/docs/DISCOVERY.md
CHANGED
|
@@ -1,332 +1,363 @@
|
|
|
1
1
|
# Omnius Discovery Catalog
|
|
2
2
|
|
|
3
|
-
Generated discovery schema: `
|
|
3
|
+
Generated discovery schema: `2.0.0`. This index covers the system layers, runtimes, stores, workflows, modules, providers, tools, APIs, commands, skills, configuration, operations, addons, and bundled documentation.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Agent Bootstrap
|
|
6
6
|
|
|
7
|
-
1.
|
|
8
|
-
2. Expand
|
|
9
|
-
3.
|
|
10
|
-
4.
|
|
7
|
+
1. Identify the caller and intent, then search instead of guessing a command, route, tool, provider, or file.
|
|
8
|
+
2. Expand one stable ID and read its use/avoid conditions, exact interfaces, safety data, workflow, failure recovery, and source of truth.
|
|
9
|
+
3. For live work, compare the installed package and daemon at GET /version, then inspect GET /openapi.json and the relevant live registry.
|
|
10
|
+
4. Choose one execution surface, send X-Omnius-Min-Version for mutating or model-backed requests, and preserve the project/global state boundary.
|
|
11
|
+
5. Verify the observable result described by the entry; do not equate an accepted or queued request with completion.
|
|
12
|
+
|
|
13
|
+
Start with: `overview`, `layer.interface`, `layer.orchestration`, `workflow.choose-entrypoint`, `store.project`, `store.global`, `workflow.debug-runtime`.
|
|
11
14
|
|
|
12
15
|
```bash
|
|
13
|
-
omnius discover "
|
|
14
|
-
omnius show
|
|
15
|
-
omnius show
|
|
16
|
-
omnius show tool.web-search
|
|
16
|
+
omnius discover "run a long coding task through REST"
|
|
17
|
+
omnius show workflow.async-agent-run
|
|
18
|
+
omnius show layer.orchestration
|
|
17
19
|
omnius capabilities --json
|
|
18
20
|
```
|
|
19
21
|
|
|
20
|
-
Daemon equivalents are `GET /v1/discovery?q=<intent
|
|
22
|
+
Daemon equivalents are `GET /v1/discovery/bootstrap`, `GET /v1/discovery?q=<intent>`, and `GET /v1/discovery/{id}`. Treat interfaces and safety fields as authoritative; never infer a REST route from a TUI command or a direct-call route from a tool name.
|
|
23
|
+
|
|
24
|
+
## System Layers
|
|
25
|
+
|
|
26
|
+
| ID | Responsibility |
|
|
27
|
+
| --- | --- |
|
|
28
|
+
| `layer.architecture` | The process, package, dependency, and data-flow map that connects public interfaces to their source owners and runtime boundaries. |
|
|
29
|
+
| `layer.code-intelligence` | Repository indexing, symbol and code graph storage, retrieval, repository context, and evidence-directed navigation used by coding agents. |
|
|
30
|
+
| `layer.context` | System prompts, task templates, context compilation, admission, compaction, dumps, history sanitation, token budgeting, and working-context recovery. |
|
|
31
|
+
| `layer.contracts` | Shared TypeScript schemas, OpenAPI, command/tool/provider registries, version preconditions, and generated documentation that keep surfaces consistent. |
|
|
32
|
+
| `layer.discovery` | Stable IDs, bootstrap profiles, task workflows, generated catalogs, package guidance, and live discovery endpoints that let agents navigate Omnius without prior repository knowledge. |
|
|
33
|
+
| `layer.documentation` | User, operator, integrator, and maintainer explanations linked from the generated discovery graph and deployable AIWG skills. |
|
|
34
|
+
| `layer.execution` | Executable tools, schemas, security classification, direct versus agent-bound exposure, MCP/custom tools, mutation contracts, and shell/file/browser boundaries. |
|
|
35
|
+
| `layer.inference` | Provider descriptors, endpoint protocol selection, model routing, local Ollama/vLLM, hosted APIs, sponsor capacity, and compatibility translation. |
|
|
36
|
+
| `layer.interface` | The TUI, one-shot CLI, REST daemon, dashboard, tray indicator, Telegram gateway, and JavaScript library through which users and agents enter Omnius. |
|
|
37
|
+
| `layer.media` | ASR engine registry and managed weights, TTS/voice cloning, realtime voicechat, live sensors, vision, and image/video/audio generation backed by shared model storage. |
|
|
38
|
+
| `layer.memory` | Project sessions, episodes, temporal graph memory, maintenance, summaries, task continuity, and explicit separation between conversational history and slash-command control input. |
|
|
39
|
+
| `layer.observability` | Action trees, run events, status, metrics, context dumps, logs, evidence and verification ledgers, debug artifacts, and UI projections for proving what happened. |
|
|
40
|
+
| `layer.operations` | Daemon lifecycle and port ownership, tray indicator, update and restart verification, schedulers, installation, runtime dependencies, packaging, and publish staging. |
|
|
41
|
+
| `layer.orchestration` | Long-horizon task intake, planning, agent/tool turns, sub-agents, completion contracts, trajectory checkpoints, recovery, and run lifecycle. |
|
|
42
|
+
| `layer.persistence` | Project-local .omnius state, user-global ~/.omnius state, shared model/runtime caches, configuration precedence, and the rules preventing cross-project leakage. |
|
|
43
|
+
| `layer.security` | Authentication, REST scopes, secret handling, tool risk and mutation policy, remote access, hardware preflight, AIMS controls, and fail-closed execution gates. |
|
|
21
44
|
|
|
22
45
|
## Api
|
|
23
46
|
|
|
24
47
|
| ID | Title | Summary |
|
|
25
48
|
| --- | --- | --- |
|
|
49
|
+
| `api.` | / | HATEOAS API root when the client does not request HTML |
|
|
50
|
+
| `api.asyncapi` | /asyncapi | Compatibility alias for the AsyncAPI contract |
|
|
26
51
|
| `api.discovery` | Discovery API | Search the Omnius capability catalog and expand a stable entry over REST. |
|
|
27
|
-
| `api.health` | /health |
|
|
28
|
-
| `api.health-ready` | /health/ready |
|
|
29
|
-
| `api.health-startup` | /health/startup |
|
|
30
|
-
| `api.
|
|
52
|
+
| `api.health` | /health | Liveness probe |
|
|
53
|
+
| `api.health-ready` | /health/ready | Readiness probe |
|
|
54
|
+
| `api.health-startup` | /health/startup | Startup complete |
|
|
55
|
+
| `api.help` | /help | Compact daemon help and integration entrypoints |
|
|
56
|
+
| `api.metrics` | /metrics | Prometheus metrics |
|
|
31
57
|
| `api.openapi` | OpenAPI contract | The live machine-readable REST contract for the running Omnius daemon. |
|
|
58
|
+
| `api.realtime` | /realtime | Generate one short text reply for a voice-adapter transcript |
|
|
59
|
+
| `api.routes` | /routes | Compatibility alias for the daemon route summary |
|
|
32
60
|
| `api.skills` | Skills API | List and load Omnius and project skills incrementally. |
|
|
33
61
|
| `api.tools` | Tools API | Inspect live tool schemas and invocation metadata, register external tools, and call only tools marked direct-callable. |
|
|
34
|
-
| `api.v1-
|
|
35
|
-
| `api.v1-
|
|
36
|
-
| `api.v1-aims
|
|
37
|
-
| `api.v1-aims-
|
|
38
|
-
| `api.v1-aims-
|
|
39
|
-
| `api.v1-aims-
|
|
40
|
-
| `api.v1-aims-
|
|
41
|
-
| `api.v1-aims-
|
|
42
|
-
| `api.v1-aims-
|
|
43
|
-
| `api.v1-aims-
|
|
44
|
-
| `api.v1-aims-
|
|
45
|
-
| `api.v1-aims-
|
|
46
|
-
| `api.v1-aims-
|
|
47
|
-
| `api.v1-aims-
|
|
48
|
-
| `api.v1-aims-
|
|
49
|
-
| `api.v1-
|
|
50
|
-
| `api.v1-aiwg
|
|
51
|
-
| `api.v1-aiwg-
|
|
52
|
-
| `api.v1-aiwg-agents
|
|
53
|
-
| `api.v1-aiwg-
|
|
54
|
-
| `api.v1-aiwg-
|
|
55
|
-
| `api.v1-aiwg-frameworks
|
|
56
|
-
| `api.v1-aiwg-frameworks-name
|
|
57
|
-
| `api.v1-aiwg-
|
|
58
|
-
| `api.v1-aiwg-skills
|
|
59
|
-
| `api.v1-aiwg-
|
|
60
|
-
| `api.v1-
|
|
61
|
-
| `api.v1-
|
|
62
|
-
| `api.v1-
|
|
63
|
-
| `api.v1-
|
|
64
|
-
| `api.v1-
|
|
65
|
-
| `api.v1-
|
|
66
|
-
| `api.v1-
|
|
67
|
-
| `api.v1-
|
|
68
|
-
| `api.v1-
|
|
69
|
-
| `api.v1-
|
|
70
|
-
| `api.v1-
|
|
71
|
-
| `api.v1-
|
|
72
|
-
| `api.v1-
|
|
73
|
-
| `api.v1-
|
|
74
|
-
| `api.v1-
|
|
75
|
-
| `api.v1-
|
|
76
|
-
| `api.v1-
|
|
77
|
-
| `api.v1-
|
|
78
|
-
| `api.v1-
|
|
79
|
-
| `api.v1-
|
|
80
|
-
| `api.v1-
|
|
81
|
-
| `api.v1-
|
|
82
|
-
| `api.v1-
|
|
83
|
-
| `api.v1-
|
|
84
|
-
| `api.v1-
|
|
85
|
-
| `api.v1-
|
|
86
|
-
| `api.v1-
|
|
87
|
-
| `api.v1-
|
|
88
|
-
| `api.v1-
|
|
89
|
-
| `api.v1-
|
|
90
|
-
| `api.v1-
|
|
91
|
-
| `api.v1-
|
|
92
|
-
| `api.v1-
|
|
93
|
-
| `api.v1-
|
|
94
|
-
| `api.v1-
|
|
95
|
-
| `api.v1-
|
|
96
|
-
| `api.v1-
|
|
97
|
-
| `api.v1-
|
|
98
|
-
| `api.v1-
|
|
99
|
-
| `api.v1-
|
|
100
|
-
| `api.v1-
|
|
101
|
-
| `api.v1-
|
|
102
|
-
| `api.v1-
|
|
103
|
-
| `api.v1-
|
|
104
|
-
| `api.v1-
|
|
105
|
-
| `api.v1-
|
|
106
|
-
| `api.v1-
|
|
107
|
-
| `api.v1-
|
|
108
|
-
| `api.v1-
|
|
109
|
-
| `api.v1-
|
|
110
|
-
| `api.v1-
|
|
111
|
-
| `api.v1-
|
|
112
|
-
| `api.v1-
|
|
113
|
-
| `api.v1-
|
|
114
|
-
| `api.v1-
|
|
115
|
-
| `api.v1-
|
|
116
|
-
| `api.v1-
|
|
117
|
-
| `api.v1-
|
|
118
|
-
| `api.v1-
|
|
119
|
-
| `api.v1-
|
|
120
|
-
| `api.v1-
|
|
121
|
-
| `api.v1-
|
|
122
|
-
| `api.v1-
|
|
123
|
-
| `api.v1-
|
|
124
|
-
| `api.v1-
|
|
125
|
-
| `api.v1-
|
|
126
|
-
| `api.v1-
|
|
127
|
-
| `api.v1-
|
|
128
|
-
| `api.v1-
|
|
129
|
-
| `api.v1-
|
|
130
|
-
| `api.v1-
|
|
131
|
-
| `api.v1-
|
|
132
|
-
| `api.v1-
|
|
133
|
-
| `api.v1-
|
|
134
|
-
| `api.v1-
|
|
135
|
-
| `api.v1-
|
|
136
|
-
| `api.v1-
|
|
137
|
-
| `api.v1-
|
|
138
|
-
| `api.v1-
|
|
139
|
-
| `api.v1-
|
|
140
|
-
| `api.v1-
|
|
141
|
-
| `api.v1-
|
|
142
|
-
| `api.v1-
|
|
143
|
-
| `api.v1-
|
|
144
|
-
| `api.v1-
|
|
145
|
-
| `api.v1-
|
|
146
|
-
| `api.v1-
|
|
147
|
-
| `api.v1-
|
|
148
|
-
| `api.v1-
|
|
149
|
-
| `api.v1-
|
|
150
|
-
| `api.v1-
|
|
151
|
-
| `api.v1-
|
|
152
|
-
| `api.v1-
|
|
153
|
-
| `api.v1-
|
|
154
|
-
| `api.v1-
|
|
155
|
-
| `api.v1-
|
|
156
|
-
| `api.v1-
|
|
157
|
-
| `api.v1-
|
|
158
|
-
| `api.v1-
|
|
159
|
-
| `api.v1-
|
|
160
|
-
| `api.v1-
|
|
161
|
-
| `api.v1-
|
|
162
|
-
| `api.v1-
|
|
163
|
-
| `api.v1-
|
|
164
|
-
| `api.v1-
|
|
165
|
-
| `api.v1-
|
|
166
|
-
| `api.v1-
|
|
167
|
-
| `api.v1-
|
|
168
|
-
| `api.v1-
|
|
169
|
-
| `api.v1-
|
|
170
|
-
| `api.v1-
|
|
171
|
-
| `api.v1-
|
|
172
|
-
| `api.v1-
|
|
173
|
-
| `api.v1-
|
|
174
|
-
| `api.v1-
|
|
175
|
-
| `api.v1-
|
|
176
|
-
| `api.
|
|
62
|
+
| `api.v1-admin-access` | /v1/admin/access | Read the daemon network access mode; Change and persist the daemon network access mode from loopback |
|
|
63
|
+
| `api.v1-agents` | /v1/agents | List agent types |
|
|
64
|
+
| `api.v1-aims` | /v1/aims | AIMS root — control map and endpoint index |
|
|
65
|
+
| `api.v1-aims-config-history` | /v1/aims/config-history | Configuration change history (A.6.2.8) |
|
|
66
|
+
| `api.v1-aims-data-quality` | /v1/aims/data-quality | Data quality controls (A.7.2) |
|
|
67
|
+
| `api.v1-aims-decisions` | /v1/aims/decisions | Consequential decision log (A.9) |
|
|
68
|
+
| `api.v1-aims-impact-assessments` | /v1/aims/impact-assessments | Impact assessment register (A.5); File an impact assessment (A.5) |
|
|
69
|
+
| `api.v1-aims-incidents` | /v1/aims/incidents | Incident register (A.6.2.8); Raise an incident (A.6.2.8) |
|
|
70
|
+
| `api.v1-aims-lifecycle` | /v1/aims/lifecycle | AI system lifecycle state (A.6) |
|
|
71
|
+
| `api.v1-aims-oversight` | /v1/aims/oversight | Human oversight gates (A.6.2.7) |
|
|
72
|
+
| `api.v1-aims-policies` | /v1/aims/policies | AI policies (ISO 42001 A.2); Replace the policy register (ISO 42001 A.2) |
|
|
73
|
+
| `api.v1-aims-resources` | /v1/aims/resources | Resources inventory (A.4) |
|
|
74
|
+
| `api.v1-aims-roles` | /v1/aims/roles | Roles and responsibilities (A.3) |
|
|
75
|
+
| `api.v1-aims-suppliers` | /v1/aims/suppliers | Third-party supplier inventory (A.10) |
|
|
76
|
+
| `api.v1-aims-transparency` | /v1/aims/transparency | Model cards and transparency info (A.8) |
|
|
77
|
+
| `api.v1-aims-usage` | /v1/aims/usage | AI system usage (A.9 alias of /v1/usage) |
|
|
78
|
+
| `api.v1-aiwg` | /v1/aiwg | AIWG installation root + control map |
|
|
79
|
+
| `api.v1-aiwg-addons` | /v1/aiwg/addons | List AIWG addons |
|
|
80
|
+
| `api.v1-aiwg-agents` | /v1/aiwg/agents | List AIWG agents |
|
|
81
|
+
| `api.v1-aiwg-agents-name` | /v1/aiwg/agents/{name} | Agent definition |
|
|
82
|
+
| `api.v1-aiwg-expand` | /v1/aiwg/expand | Sub-agent unpack a specific AIWG skill or agent on demand |
|
|
83
|
+
| `api.v1-aiwg-frameworks` | /v1/aiwg/frameworks | List AIWG frameworks (paginated) |
|
|
84
|
+
| `api.v1-aiwg-frameworks-name` | /v1/aiwg/frameworks/{name} | Framework details + items |
|
|
85
|
+
| `api.v1-aiwg-frameworks-name-content` | /v1/aiwg/frameworks/{name}/content | Framework content (cascade-tier-aware) |
|
|
86
|
+
| `api.v1-aiwg-skills` | /v1/aiwg/skills | List AIWG skills (paginated) |
|
|
87
|
+
| `api.v1-aiwg-skills-name` | /v1/aiwg/skills/{name} | Skill content |
|
|
88
|
+
| `api.v1-aiwg-use` | /v1/aiwg/use | AIWG cascade activation bundle (aiwg use all equivalent, model-tier sized) |
|
|
89
|
+
| `api.v1-asr-activate` | /v1/asr/activate | Activate and persist an exact ASR engine/model |
|
|
90
|
+
| `api.v1-asr-engines` | /v1/asr/engines | List all ASR engines, models, capabilities, resource requirements, readiness, and active selection |
|
|
91
|
+
| `api.v1-asr-engines-engine-id-setup` | /v1/asr/engines/{engineId}/setup | Install a managed ASR runtime and its pinned weights |
|
|
92
|
+
| `api.v1-asr-selection` | /v1/asr/selection | Read the selected ASR engine/model; Persist and activate an exact ASR selection |
|
|
93
|
+
| `api.v1-asr-status` | /v1/asr/status | Read the selected ASR engine/model and runtime status |
|
|
94
|
+
| `api.v1-asr-test` | /v1/asr/test | Test the selected ASR engine using an uploaded audio sample |
|
|
95
|
+
| `api.v1-asr-transcriptions` | /v1/asr/transcriptions | Transcribe audio with the selected ASR engine |
|
|
96
|
+
| `api.v1-audio-embed` | /v1/audio/embed | Create an audio embedding for uploaded or referenced audio |
|
|
97
|
+
| `api.v1-audio-speech` | /v1/audio/speech | OpenAI-compatible alias of /v1/voice/tts (input/voice/response_format names) |
|
|
98
|
+
| `api.v1-audio-transcriptions` | /v1/audio/transcriptions | OpenAI-compatible alias of /v1/asr/transcriptions |
|
|
99
|
+
| `api.v1-audit` | /v1/audit | Query audit log |
|
|
100
|
+
| `api.v1-chat` | /v1/chat | Stateful chat session with full agent tool access (OpenAI-compatible response shape) |
|
|
101
|
+
| `api.v1-chat-attachments` | /v1/chat/attachments | Upload an attachment for a stateful chat |
|
|
102
|
+
| `api.v1-chat-check-in` | /v1/chat/check-in | Send a steering check-in to the active chat session — returns model inference + queued steering_packet |
|
|
103
|
+
| `api.v1-chat-completions` | /v1/chat/completions | OpenAI-compatible chat completion (with optional server-side agent loop) |
|
|
104
|
+
| `api.v1-chat-sessions` | /v1/chat/sessions | List persisted browser chats and importable TUI sessions for a workspace |
|
|
105
|
+
| `api.v1-chat-sessions-id` | /v1/chat/sessions/{id} | Hydrate one chat or imported TUI session with full history and live-run state; Permanently delete a canonical chat or TUI history session |
|
|
106
|
+
| `api.v1-chat-sessions-id-status` | /v1/chat/sessions/{id}/status | Reactive recall: is this session running right now + unseen deltas since ?since=<seq> (running, phase, seq, partial, deltas[]) |
|
|
107
|
+
| `api.v1-chat-sessions-id-summarize` | /v1/chat/sessions/{id}/summarize | Generate + cache an inference-based title/summary for a session — body {force?, root?} |
|
|
108
|
+
| `api.v1-chat-suggest-followup` | /v1/chat/suggest-followup | Suggest one short next-message follow-up for a session (ghost-text input) — body {session_id} |
|
|
109
|
+
| `api.v1-codegraph-events` | /v1/codegraph/events | Code graph live events (SSE) |
|
|
110
|
+
| `api.v1-codegraph-snapshot` | /v1/codegraph/snapshot | Code graph stats + last N events |
|
|
111
|
+
| `api.v1-commands` | /v1/commands | List available slash commands |
|
|
112
|
+
| `api.v1-commands-cmd` | /v1/commands/{cmd} | Execute a slash command (isolated subprocess) |
|
|
113
|
+
| `api.v1-config` | /v1/config | Get daemon configuration and settings; Update configuration (PT-01 full settings surface) |
|
|
114
|
+
| `api.v1-config-endpoint` | /v1/config/endpoint | Current provider endpoint, protocol, and stable provider id; Resolve, persist, and live-reload an inference provider |
|
|
115
|
+
| `api.v1-config-endpoint-test` | /v1/config/endpoint/test | Probe a protocol-resolved provider from the daemon process |
|
|
116
|
+
| `api.v1-config-model` | /v1/config/model | Current model; Switch model |
|
|
117
|
+
| `api.v1-config-model-check` | /v1/config/model/check | Probe configured model readiness |
|
|
118
|
+
| `api.v1-context` | /v1/context | Show current session context |
|
|
119
|
+
| `api.v1-context-compact` | /v1/context/compact | Request context compaction (event-driven) |
|
|
120
|
+
| `api.v1-context-restore` | /v1/context/restore | Build a restore prompt from saved context |
|
|
121
|
+
| `api.v1-context-save` | /v1/context/save | Save a session context entry |
|
|
122
|
+
| `api.v1-context-window-dumps` | /v1/context/window-dumps | List persisted outbound model context-window dumps |
|
|
123
|
+
| `api.v1-context-window-dumps-id` | /v1/context/window-dumps/{id} | Fetch a full outbound model context-window dump |
|
|
124
|
+
| `api.v1-cost` | /v1/cost | Cost tracker (pricing model) |
|
|
125
|
+
| `api.v1-discovery` | /v1/discovery | Discover Omnius layers, workflows, runtimes, modules, stores, capabilities, tools, APIs, commands, skills, and docs |
|
|
126
|
+
| `api.v1-discovery-bootstrap` | /v1/discovery/bootstrap | Get the compact agent bootstrap, profiles, common intents, live checks, and expanded start-here entries |
|
|
127
|
+
| `api.v1-discovery-id` | /v1/discovery/{id} | Expand one Omnius discovery entry and its downstream references |
|
|
128
|
+
| `api.v1-embeddings` | /v1/embeddings | Generate embeddings |
|
|
129
|
+
| `api.v1-engines` | /v1/engines | List long-running engines |
|
|
130
|
+
| `api.v1-evaluate` | /v1/evaluate | Evaluate a run by ID |
|
|
131
|
+
| `api.v1-events` | /v1/events | Subscribe to the event bus (PT-06) |
|
|
132
|
+
| `api.v1-files` | /v1/files | List workspace directory |
|
|
133
|
+
| `api.v1-files-raw` | /v1/files/raw | Stream raw workspace file bytes for browser previews; Inspect raw workspace file response metadata |
|
|
134
|
+
| `api.v1-files-read` | /v1/files/read | Read file content (PT-05) |
|
|
135
|
+
| `api.v1-hooks` | /v1/hooks | List hook types and counts |
|
|
136
|
+
| `api.v1-index` | /v1/index | Trigger repository indexing |
|
|
137
|
+
| `api.v1-keys` | /v1/keys | List runtime API keys (admin scope); Mint a new runtime API key (admin scope) |
|
|
138
|
+
| `api.v1-keys-prefix` | /v1/keys/{prefix} | Revoke a runtime key by prefix (admin scope) |
|
|
139
|
+
| `api.v1-mcps` | /v1/mcps | List MCP servers (PT-03) |
|
|
140
|
+
| `api.v1-mcps-name` | /v1/mcps/{name} | Get MCP server details (PT-03) |
|
|
141
|
+
| `api.v1-mcps-name-call` | /v1/mcps/{name}/call | Invoke a tool on an MCP server (PT-03) |
|
|
142
|
+
| `api.v1-media-audio` | /v1/media/audio | Generate a sound effect — body {prompt, model?, backend?, duration?, seed?} |
|
|
143
|
+
| `api.v1-media-av-analyze` | /v1/media/av/analyze | Analyze a media file into a grounded entity/event/evidence answer (AV entity-comprehension) — body {path\|mediaUri, question?}; reports per-role live-vs-mock adapter status |
|
|
144
|
+
| `api.v1-media-file` | /v1/media/file | Stream one generated media file — query {kind, name} |
|
|
145
|
+
| `api.v1-media-gallery` | /v1/media/gallery | List previously generated media from the global store, newest first |
|
|
146
|
+
| `api.v1-media-image` | /v1/media/image | Generate an image — body {prompt, model?, backend?, width?, height?, steps?, guidance?, seed?, aspect_ratio?} |
|
|
147
|
+
| `api.v1-media-migrate` | /v1/media/migrate | Dedup + migrate legacy per-group media caches into the unified store — body {dryRun?, roots?, maxDepth?} |
|
|
148
|
+
| `api.v1-media-models` | /v1/media/models | List available generative media models per kind (image/video/audio/music) |
|
|
149
|
+
| `api.v1-media-music` | /v1/media/music | Generate music — body {prompt, model?, backend?, duration?, seed?} |
|
|
150
|
+
| `api.v1-media-relocate` | /v1/media/relocate | Relocate the whole media store (weights/venvs/gallery) to a chosen folder — body {newRoot, dryRun?}; streams media.relocate_progress and returns 202 + job_id |
|
|
151
|
+
| `api.v1-media-relocate-status` | /v1/media/relocate/status | Status of the in-flight (or last) media-store relocation job |
|
|
152
|
+
| `api.v1-media-store` | /v1/media/store | Media-store root + disk usage plus any legacy per-group caches still reclaimable |
|
|
153
|
+
| `api.v1-media-video` | /v1/media/video | Generate a video — body {prompt, model?, backend?, num_frames?, fps?, width?, height?, steps?, guidance?, seed?} |
|
|
154
|
+
| `api.v1-memory` | /v1/memory | Memory backends summary (PT-04) |
|
|
155
|
+
| `api.v1-memory-entities` | /v1/memory/entities | List extracted memory entities |
|
|
156
|
+
| `api.v1-memory-episodes` | /v1/memory/episodes | List episodes |
|
|
157
|
+
| `api.v1-memory-failures` | /v1/memory/failures | List failures |
|
|
158
|
+
| `api.v1-memory-feedback` | /v1/memory/feedback | Record relevance or quality feedback for a memory item |
|
|
159
|
+
| `api.v1-memory-ingest` | /v1/memory/ingest | Ingest content or files into Omnius memory |
|
|
160
|
+
| `api.v1-memory-jobs-run` | /v1/memory/jobs/run | Run a named memory maintenance job |
|
|
161
|
+
| `api.v1-memory-search` | /v1/memory/search | Search memory stores (PT-04) |
|
|
162
|
+
| `api.v1-memory-write` | /v1/memory/write | Write a memory entry (PT-04) |
|
|
163
|
+
| `api.v1-models` | /v1/models | List aggregated models |
|
|
164
|
+
| `api.v1-nexus-status` | /v1/nexus/status | Nexus peer state |
|
|
165
|
+
| `api.v1-ollama-pool-cleanup` | /v1/ollama/pool/cleanup | Clean up stale Ollama pool processes |
|
|
166
|
+
| `api.v1-ollama-pool-processes` | /v1/ollama/pool/processes | Scan local Ollama pool processes |
|
|
167
|
+
| `api.v1-profiles` | /v1/profiles | List tool profiles; Create tool profile |
|
|
168
|
+
| `api.v1-profiles-name` | /v1/profiles/{name} | Get profile; Delete profile |
|
|
169
|
+
| `api.v1-projects` | /v1/projects | List registered project workspaces + current selection; Unregister a project — body {root} |
|
|
170
|
+
| `api.v1-projects-current` | /v1/projects/current | Get the active project |
|
|
171
|
+
| `api.v1-projects-preferences` | /v1/projects/preferences | Get per-project UI preferences (model, theme, current chat session id, current agent run id, recent indexes); Patch preferences (server-managed v + updatedAt are stripped from client patches); Reset preferences to default |
|
|
172
|
+
| `api.v1-projects-register` | /v1/projects/register | Register a project root — body {root, pid?} |
|
|
173
|
+
| `api.v1-projects-rename` | /v1/projects/rename | Rename a project — body {root, name} |
|
|
174
|
+
| `api.v1-projects-scan` | /v1/projects/scan | Scan configured roots for discoverable project workspaces |
|
|
175
|
+
| `api.v1-projects-switch` | /v1/projects/switch | Set the active project — body {root, registerIfMissing?} |
|
|
176
|
+
| `api.v1-realtime` | /v1/realtime | Auth-scoped alias for the text-only realtime voice adapter |
|
|
177
|
+
| `api.v1-routes` | /v1/routes | Flat grep-friendly daemon route summary |
|
|
178
|
+
| `api.v1-run` | /v1/run | Submit agentic task |
|
|
179
|
+
| `api.v1-runs` | /v1/runs | List runs |
|
|
180
|
+
| `api.v1-runs-id` | /v1/runs/{id} | Get run details; Abort run |
|
|
181
|
+
| `api.v1-runs-id-output` | /v1/runs/{id}/output | Read the captured output for one agentic run |
|
|
182
|
+
| `api.v1-scheduled` | /v1/scheduled | List scheduled jobs |
|
|
183
|
+
| `api.v1-scheduled-all` | /v1/scheduled/all | Delete all scheduled tasks, timers, cron entries, and persisted sources |
|
|
184
|
+
| `api.v1-scheduled-fixup` | /v1/scheduled/fixup | Reconcile scheduled job state |
|
|
185
|
+
| `api.v1-scheduled-id` | /v1/scheduled/{id} | Enable or disable one scheduled task or user timer; Delete one scheduled task or user timer |
|
|
186
|
+
| `api.v1-scheduled-kill` | /v1/scheduled/kill | Kill a running scheduled job |
|
|
187
|
+
| `api.v1-scheduled-reconcile` | /v1/scheduled/reconcile | Preview reconciliation of persisted and legacy scheduled jobs; Preview or apply scheduled-job reconciliation |
|
|
188
|
+
| `api.v1-scheduled-status` | /v1/scheduled/status | Status of scheduled job runner |
|
|
189
|
+
| `api.v1-services-systemd` | /v1/services/systemd | Systemd service status (where supported) |
|
|
190
|
+
| `api.v1-services-systemd-unit` | /v1/services/systemd/{unit} | Perform an action on one user-level systemd unit |
|
|
191
|
+
| `api.v1-sessions` | /v1/sessions | List Omnius task sessions |
|
|
192
|
+
| `api.v1-sessions-id` | /v1/sessions/{id} | Get session history |
|
|
193
|
+
| `api.v1-skills` | /v1/skills | List AIWG skills (PT-02) |
|
|
194
|
+
| `api.v1-skills-name` | /v1/skills/{name} | Get skill content (PT-02) |
|
|
195
|
+
| `api.v1-sponsors` | /v1/sponsors | Local sponsor directory cache |
|
|
196
|
+
| `api.v1-system` | /v1/system | System info + GPU/RAM/CPU |
|
|
197
|
+
| `api.v1-todos` | /v1/todos | List sessions that have todo lists; Write/replace the todo list for a session |
|
|
198
|
+
| `api.v1-todos-session-id` | /v1/todos/{session_id} | Read the todo list for a session; Delete the todo list for a session |
|
|
199
|
+
| `api.v1-tools` | /v1/tools | List agentic tool registry with security metadata |
|
|
200
|
+
| `api.v1-tools-name` | /v1/tools/{name} | Single tool schema + security policy; Unregister an external tool (run scope) |
|
|
201
|
+
| `api.v1-tools-name-call` | /v1/tools/{name}/call | Execute a single tool directly (MCP-style, no agent loop) |
|
|
202
|
+
| `api.v1-tools-name-eval` | /v1/tools/{name}/eval | Evaluate an external tool against test cases (dev cycle) |
|
|
203
|
+
| `api.v1-tools-register` | /v1/tools/register | Register an application-specific external tool (run scope) |
|
|
204
|
+
| `api.v1-update` | /v1/update | Global Omnius update transaction status; Start an exact-version global Omnius update |
|
|
205
|
+
| `api.v1-usage` | /v1/usage | Token usage and rate limits |
|
|
206
|
+
| `api.v1-vision-describe` | /v1/vision/describe | Vision describe (deferred to PT-07) |
|
|
207
|
+
| `api.v1-vision-embed` | /v1/vision/embed | Create a vision embedding for uploaded or referenced media |
|
|
208
|
+
| `api.v1-voice-asr` | /v1/voice/asr | Legacy alias of /v1/asr/transcriptions |
|
|
209
|
+
| `api.v1-voice-asr-models` | /v1/voice/asr-models | Compatibility alias of GET /v1/asr/engines |
|
|
210
|
+
| `api.v1-voice-asr-models-switch` | /v1/voice/asr-models/switch | Compatibility alias of POST /v1/asr/activate |
|
|
211
|
+
| `api.v1-voice-clone-refs` | /v1/voice/clone-refs | List voice clone references; Upload a voice clone reference (JSON+base64) |
|
|
212
|
+
| `api.v1-voice-clone-refs-filename` | /v1/voice/clone-refs/{filename} | Delete a voice clone reference |
|
|
213
|
+
| `api.v1-voice-clone-refs-filename-activate` | /v1/voice/clone-refs/{filename}/activate | Set this clone reference as the active LuxTTS clone target |
|
|
214
|
+
| `api.v1-voice-clone-refs-filename-rename` | /v1/voice/clone-refs/{filename}/rename | Rename the friendly name (filename unchanged) — body {name} |
|
|
215
|
+
| `api.v1-voice-clone-refs-from-url` | /v1/voice/clone-refs/from-url | Fetch a voice clone reference from a URL |
|
|
216
|
+
| `api.v1-voice-clone-refs-upload` | /v1/voice/clone-refs/upload | Upload a voice clone reference (raw bytes) |
|
|
217
|
+
| `api.v1-voice-models` | /v1/voice/models | List TTS voice models with backend-specific metadata |
|
|
218
|
+
| `api.v1-voice-models-switch` | /v1/voice/models/switch | Switch and enable the active TTS model — body {modelId, enable?} |
|
|
219
|
+
| `api.v1-voice-speak` | /v1/voice/speak | Synthesize text and broadcast to /v1/voicechat/ws clients (no audio in response body) |
|
|
220
|
+
| `api.v1-voice-start` | /v1/voice/start | Enable and warm the daemon voice runtime; optional body {modelId\|model\|voice} |
|
|
221
|
+
| `api.v1-voice-state` | /v1/voice/state | Voice runtime status (engine load state, active model, current clone ref, client count) |
|
|
222
|
+
| `api.v1-voice-stop` | /v1/voice/stop | Pause daemon voice input immediately (TTS models remain warm) |
|
|
223
|
+
| `api.v1-voice-supertonic-settings` | /v1/voice/supertonic-settings | Read Supertonic3 voice style settings and options; Update Supertonic3 voice style settings |
|
|
224
|
+
| `api.v1-voice-transcribe` | /v1/voice/transcribe | Transcribe an uploaded audio file |
|
|
225
|
+
| `api.v1-voice-transcribe-stream` | /v1/voice/transcribe/stream | Isolated final ASR over Server-Sent Events |
|
|
226
|
+
| `api.v1-voice-tts` | /v1/voice/tts | Synthesize text to audio bytes |
|
|
227
|
+
| `api.v1-voicechat-ws` | /v1/voicechat/ws | WebSocket — full-duplex voicechat (binary PCM + JSON control) |
|
|
228
|
+
| `api.version` | /version | Package, API, and discovery contract versions |
|
|
177
229
|
|
|
178
230
|
## Capability
|
|
179
231
|
|
|
180
232
|
| ID | Title | Summary |
|
|
181
233
|
| --- | --- | --- |
|
|
182
|
-
| `addon.omnius-docs` | Omnius Documentation | Project-local Omnius
|
|
234
|
+
| `addon.omnius-docs` | Omnius Documentation | Project-local Omnius agent onboarding, system map, and discover-then-expand documentation bundle. |
|
|
183
235
|
| `addon.omnius-rest-docs` | Omnius REST Documentation | Project-local Omnius REST API documentation bundle for discover-then-expand agent workflows. |
|
|
184
236
|
| `capability.bring-your-own-inference` | Bring your own inference | Connect local runtimes, Claude, Gemini, and registered OpenAI-compatible providers through explicit protocol and credential descriptors. |
|
|
185
237
|
| `capability.osint-research` | Categorized OSINT research | Discover a compact ranked shortlist from the bundled 77-category OSINT4ALL snapshot, expand one exact resource, then deliberately route it through an appropriate web tool with provenance and safety guidance. |
|
|
186
|
-
| `overview` | Omnius
|
|
238
|
+
| `overview` | Omnius agent bootstrap | The canonical first stop for discovering Omnius by intent, choosing the correct surface, locating ownership and state, and verifying live behavior without guessing. |
|
|
187
239
|
|
|
188
240
|
## Command
|
|
189
241
|
|
|
190
242
|
| ID | Title | Summary |
|
|
191
243
|
| --- | --- | --- |
|
|
192
|
-
| `command.access` | /access |
|
|
193
|
-
| `command.apikey` | /apikey |
|
|
244
|
+
| `command.access` | /access | Show access policy and host binding |
|
|
245
|
+
| `command.apikey` | /apikey | Show current API key (for pasting into Web UI / clients) |
|
|
194
246
|
| `command.approve` | /approve | Approve a pending gateway/admin action |
|
|
195
247
|
| `command.background` | /background | Run a prompt in an independent background session |
|
|
196
|
-
| `command.bg` | /bg | Alias for /background <prompt> |
|
|
197
248
|
| `command.bless` | /bless | End blessed mode + DMN |
|
|
198
|
-
| `command.broker` | /broker |
|
|
249
|
+
| `command.broker` | /broker | Show resource broker status — loaded models, in-flight loads, RAM/VRAM headroom |
|
|
199
250
|
| `command.browser` | /browser | Manage browser-agent connectivity |
|
|
200
251
|
| `command.bruteforce` | /bruteforce | Toggle brute-force mode (auto re-engage on turn limit) |
|
|
201
252
|
| `command.call` | /call | Start voice call session (cloudflared tunnel + ASR/TTS) |
|
|
202
|
-
| `command.camera` | /camera |
|
|
253
|
+
| `command.camera` | /camera | Open compact camera preset menu shared with /live |
|
|
203
254
|
| `command.capabilities` | List machine capabilities | Print the complete Omnius discovery catalog for programmatic use. |
|
|
204
|
-
| `command.cg` | /cg | Alias for /codegraph |
|
|
205
255
|
| `command.clear` | /clear | Clear the screen |
|
|
206
|
-
| `command.
|
|
207
|
-
| `command.
|
|
208
|
-
| `command.cohere` | /cohere | Hide a model from remote COHERE queries |
|
|
256
|
+
| `command.codegraph` | /codegraph | Code-graph snapshot: stats, top files, recent activity |
|
|
257
|
+
| `command.cohere` | /cohere | Toggle COHERE cognitive commons - join distributed memory/identity mesh |
|
|
209
258
|
| `command.color` | /color | Show or configure terminal colors/theme |
|
|
210
|
-
| `command.commands` | /commands |
|
|
211
|
-
| `command.compact` | /compact |
|
|
259
|
+
| `command.commands` | /commands | Allow agent to invoke slash commands as tools |
|
|
260
|
+
| `command.compact` | /compact | Force context compaction now (default strategy) |
|
|
212
261
|
| `command.config` | /config | Show current configuration |
|
|
213
|
-
| `command.context` | /context |
|
|
262
|
+
| `command.context` | /context | Force-save session context to .omnius/context/ |
|
|
214
263
|
| `command.cost` | /cost | Show session token cost breakdown |
|
|
215
|
-
| `command.cron` | /cron |
|
|
216
|
-
| `command.daemon` | /daemon |
|
|
217
|
-
| `command.debug` | /debug |
|
|
264
|
+
| `command.cron` | /cron | Cron/scheduled job management |
|
|
265
|
+
| `command.daemon` | /daemon | Show or manage the local API daemon |
|
|
266
|
+
| `command.debug` | /debug | Toggle debug mode — show/hide trust_tier wrappers and REG fires |
|
|
218
267
|
| `command.deep` | /deep | Toggle deep context - relaxes compaction so large models use 85% of context |
|
|
219
268
|
| `command.deny` | /deny | Deny a pending gateway/admin action |
|
|
220
|
-
| `command.destroy` | /destroy |
|
|
269
|
+
| `command.destroy` | /destroy | Find and kill orphaned Omnius child processes (this project) |
|
|
221
270
|
| `command.discover` | Discover capabilities | Rank Omnius capabilities by intent, with optional kind and result limits. |
|
|
222
271
|
| `command.docs` | Open the documentation overview | Print the human-readable Omnius documentation and discovery entrypoints. |
|
|
223
|
-
| `command.dream` | /dream |
|
|
272
|
+
| `command.dream` | /dream | Start dream mode - creative idle exploration (writes to .omnius/dreams/) |
|
|
224
273
|
| `command.emojis` | /emojis | Toggle emoji rendering in TUI messages |
|
|
225
|
-
| `command.endpoint` | /endpoint |
|
|
274
|
+
| `command.endpoint` | /endpoint | Show current endpoint |
|
|
226
275
|
| `command.evaluate` | /evaluate | Evaluate last completed task (LLM quality scoring) |
|
|
227
|
-
| `command.expose` | /expose |
|
|
228
|
-
| `command.files` | /files |
|
|
276
|
+
| `command.expose` | /expose | Expose local inference via libp2p (default) |
|
|
277
|
+
| `command.files` | /files | Show searchable working-directory file overview |
|
|
229
278
|
| `command.flow` | /flow | Toggle FlowState protocol - immediate action, tight loops, goal clarity |
|
|
230
279
|
| `command.fortemi` | /fortemi | Manage Fortemi React bridge integration |
|
|
231
280
|
| `command.full-send-bless` | /full-send-bless | Infinite warm loop - DMN self-reflection chains tasks autonomously |
|
|
232
|
-
| `command.gateway` | /gateway | Alias for /platforms menu |
|
|
233
281
|
| `command.hangup` | /hangup | End active call session |
|
|
234
282
|
| `command.help` | /help | Show this help |
|
|
235
|
-
| `command.hf` | /hf |
|
|
283
|
+
| `command.hf` | /hf | Show HF token status (set / not set) |
|
|
236
284
|
| `command.host` | /host | Set bind host:port (OMNIUS_HOST) and restart daemon |
|
|
237
|
-
| `command.image` | /image |
|
|
238
|
-
| `command.indicator` | /indicator |
|
|
285
|
+
| `command.image` | /image | Open image-generation model/setup menu |
|
|
286
|
+
| `command.indicator` | /indicator | Start the native system indicator and report readiness |
|
|
239
287
|
| `command.ingest` | /ingest | Ingest an audio, PDF, or text file into memory |
|
|
240
288
|
| `command.init` | Initialize agent discovery guidance | Create or update managed Omnius discovery blocks in project guidance while preserving user content. |
|
|
241
289
|
| `command.insights` | /insights | Show historical session insights |
|
|
242
|
-
| `command.ipfs` | /ipfs |
|
|
243
|
-
| `command.
|
|
244
|
-
| `command.
|
|
245
|
-
| `command.listen` | /listen | Stop listening |
|
|
246
|
-
| `command.live` | /live | Disable all live sensor streams |
|
|
290
|
+
| `command.ipfs` | /ipfs | Show IPFS/Helia status |
|
|
291
|
+
| `command.listen` | /listen | Toggle live microphone transcription (Whisper) |
|
|
292
|
+
| `command.live` | /live | Open live sensor stream menu for video/audio context |
|
|
247
293
|
| `command.livechat` | /livechat | Alias for /live chat, used by the top live button |
|
|
248
|
-
| `command.mcp` | /mcp |
|
|
249
|
-
| `command.memory` | /memory |
|
|
294
|
+
| `command.mcp` | /mcp | Show MCP server/tool status and controls |
|
|
295
|
+
| `command.memory` | /memory | Toggle memory visualizer - graph/episodes/concepts/timeline |
|
|
250
296
|
| `command.metabolize` | /metabolize | Run memory maintenance: import deferred memory, prune episodes, compact graph stores |
|
|
251
297
|
| `command.metrics` | /metrics | Show runtime metrics: tokens, context window, throughput, and tool usage |
|
|
252
|
-
| `command.
|
|
253
|
-
| `command.
|
|
254
|
-
| `command.models` | /models | Preview /models cleanup without touching disk |
|
|
298
|
+
| `command.model` | /model | Select from available models |
|
|
299
|
+
| `command.models` | /models | List all available models |
|
|
255
300
|
| `command.mouse` | /mouse | Toggle terminal mouse tracking |
|
|
256
|
-
| `command.music` | /music |
|
|
257
|
-
| `command.neovim` | /neovim |
|
|
258
|
-
| `command.network` | /network |
|
|
259
|
-
| `command.nexus` | /nexus | Show
|
|
260
|
-
| `command.
|
|
261
|
-
| `command.
|
|
262
|
-
| `command.
|
|
263
|
-
| `command.parallel` | /parallel | Set parallel slots (restarts Ollama, max 15) |
|
|
301
|
+
| `command.music` | /music | Open music-generation model/setup menu |
|
|
302
|
+
| `command.neovim` | /neovim | Toggle embedded Neovim editor (Ctrl+N to switch focus) |
|
|
303
|
+
| `command.network` | /network | Quick network access helper |
|
|
304
|
+
| `command.nexus` | /nexus | Show nexus P2P network status |
|
|
305
|
+
| `command.ollama` | /ollama | Dry-run stale Ollama pool process cleanup |
|
|
306
|
+
| `command.p2p` | /p2p | Join the P2P agent mesh network |
|
|
307
|
+
| `command.parallel` | /parallel | Show current Ollama parallel inference slots |
|
|
264
308
|
| `command.paste` | /paste | Attach clipboard image content to the current or next prompt |
|
|
265
309
|
| `command.pause` | /pause | Pause after current turn finishes (gentle halt, /resume to continue) |
|
|
266
|
-
| `command.pcl` | /pcl | Alias for /pointcloud |
|
|
267
310
|
| `command.personality` | /personality | Alias family for response style/personality controls |
|
|
268
|
-
| `command.platforms` | /platforms |
|
|
311
|
+
| `command.platforms` | /platforms | Show gateway platform state |
|
|
269
312
|
| `command.plugins` | /plugins | List or manage plugins |
|
|
270
|
-
| `command.pointcloud` | /pointcloud |
|
|
271
|
-
| `command.points` | /points | Alias for /pointcloud |
|
|
313
|
+
| `command.pointcloud` | /pointcloud | Open point-cloud generation model/setup menu |
|
|
272
314
|
| `command.prompt` | /prompt | Show or edit the active prompt template |
|
|
273
315
|
| `command.provider` | /provider | Show or select provider profile |
|
|
274
|
-
| `command.prune` | /prune | Shrink knowledge.db in the background: evict low-signal graph nodes (archived), then VACUUM.
|
|
275
|
-
| `command.q` | /q | Alias for /queue <prompt> |
|
|
316
|
+
| `command.prune` | /prune | Shrink knowledge.db in the background: evict low-signal graph nodes (archived), then VACUUM. 'infer' = model-guided sleep consolidation. No arg shows stats + usage |
|
|
276
317
|
| `command.queue` | /queue | Queue a prompt for the next turn without interrupting the current run |
|
|
277
318
|
| `command.quit` | /quit | Exit omnius |
|
|
278
|
-
| `command.realtime` | /realtime |
|
|
319
|
+
| `command.realtime` | /realtime | Toggle short spoken-dialogue mode for ASR/TTS-backed chat |
|
|
279
320
|
| `command.reasoning` | /reasoning | Alias family for thinking/reasoning controls |
|
|
280
321
|
| `command.reload-mcp` | /reload-mcp | Reload MCP servers and tools |
|
|
281
|
-
| `command.remind` | /remind | Set a scoped minimal reminder with a relative due time |
|
|
282
322
|
| `command.reminder` | /reminder | List scoped TUI reminders |
|
|
283
|
-
| `command.reminders` | /reminders | Alias for /reminder |
|
|
284
323
|
| `command.resume` | /resume | Resume a paused/stopped task or named saved session when available |
|
|
285
324
|
| `command.retry` | /retry | Retry the last submitted request |
|
|
286
325
|
| `command.rollback` | /rollback | List checkpoints or restore an explicit checkpoint when policy allows |
|
|
287
|
-
| `command.
|
|
288
|
-
| `command.scheduler` | /scheduler | Kill schedulers + active runs (with escalation if needed) |
|
|
326
|
+
| `command.scheduler` | /scheduler | Scheduled tasks control panel (list/kill/toggle) |
|
|
289
327
|
| `command.score` | /score | Show inference capability scorecard (memory, compute, speed, models) |
|
|
290
|
-
| `command.secrets` | /secrets |
|
|
291
|
-
| `command.selfmodify` | /selfmodify |
|
|
328
|
+
| `command.secrets` | /secrets | List registered secrets |
|
|
329
|
+
| `command.selfmodify` | /selfmodify | Toggle agent self-modify mode for natural-language runtime commands |
|
|
292
330
|
| `command.sessions` | /sessions | Browse saved sessions |
|
|
293
331
|
| `command.sethome` | /sethome | Set the project home for gateway/session use |
|
|
294
332
|
| `command.setup` | /setup | Run the initial setup wizard again |
|
|
295
333
|
| `command.show` | Show a capability | Expand one Omnius discovery entry by stable ID. |
|
|
296
|
-
| `command.skill` | /skill | Alias for /skills |
|
|
297
334
|
| `command.skillify` | /skillify | Extract a reusable skill from the current session |
|
|
298
|
-
| `command.skills` | /skills |
|
|
335
|
+
| `command.skills` | /skills | List available AIWG skills |
|
|
299
336
|
| `command.skin` | /skin | Configure the visual skin/theme bundle |
|
|
300
|
-
| `command.sound` | /sound |
|
|
301
|
-
| `command.sponsor` | /sponsor |
|
|
337
|
+
| `command.sound` | /sound | Open sound-effect model/setup menu |
|
|
338
|
+
| `command.sponsor` | /sponsor | Sponsor inference - onboarding wizard or dashboard |
|
|
302
339
|
| `command.stats` | /stats | Show session dashboard (metrics, tool usage, task history) |
|
|
303
340
|
| `command.status` | /status | Show overall runtime status |
|
|
304
341
|
| `command.statusbar` | /statusbar | Configure the status bar |
|
|
305
342
|
| `command.stop` | /stop | Kill current inference immediately and save state (/resume to continue) |
|
|
306
343
|
| `command.storage` | /storage | Show .omnius storage usage and safety summary |
|
|
307
344
|
| `command.stream` | /stream | Toggle real-time token streaming (pastel syntax highlighting) |
|
|
308
|
-
| `command.style` | /style |
|
|
345
|
+
| `command.style` | /style | Show current response style |
|
|
309
346
|
| `command.task-type` | /task-type | Set task type (code, document, analysis, plan, general, auto) |
|
|
310
|
-
| `command.telegram` | /telegram |
|
|
311
|
-
| `command.theme` | /theme | Alias for /color |
|
|
347
|
+
| `command.telegram` | /telegram | Save Telegram bot token (persisted to settings) |
|
|
312
348
|
| `command.think` | /think | Toggle thinking/reasoning mode (Qwen3, DeepSeek-R1, etc.) |
|
|
313
349
|
| `command.title` | /title | Show or set the current session title |
|
|
314
350
|
| `command.tools` | /tools | List agent-created custom tools |
|
|
315
351
|
| `command.toolsets` | /toolsets | Show or select tool exposure sets |
|
|
316
352
|
| `command.transcribe` | /transcribe | Alias for /ingest <file> |
|
|
317
|
-
| `command.
|
|
318
|
-
| `command.tree` | /tree | Show, hide, or inspect the action-tree presentation |
|
|
353
|
+
| `command.tree` | /tree | Switch between the action waterfall and an explorable action tree |
|
|
319
354
|
| `command.undo` | /undo | Undo the last queued or saved exchange when available |
|
|
320
|
-
| `command.update` | /update |
|
|
321
|
-
| `command.upgrade` | /upgrade | Alias for /update |
|
|
355
|
+
| `command.update` | /update | Check for updates and auto-install |
|
|
322
356
|
| `command.usage` | /usage | Show current session token count and cost |
|
|
323
357
|
| `command.verbose` | /verbose | Toggle verbose mode |
|
|
324
|
-
| `command.video` | /video |
|
|
325
|
-
| `command.
|
|
326
|
-
| `command.
|
|
327
|
-
| `command.voicechat` | /voicechat | Stop voice chat session |
|
|
328
|
-
| `command.wizard` | /wizard | Alias for /setup |
|
|
329
|
-
| `command.workspace` | /workspace | Alias for /files menu |
|
|
358
|
+
| `command.video` | /video | Open video-generation model/setup menu |
|
|
359
|
+
| `command.voice` | /voice | Toggle TTS voice feedback |
|
|
360
|
+
| `command.voicechat` | /voicechat | Start voice chat session (async voice conversation) |
|
|
330
361
|
|
|
331
362
|
## Config
|
|
332
363
|
|
|
@@ -340,128 +371,168 @@ Daemon equivalents are `GET /v1/discovery?q=<intent>` and `GET /v1/discovery/{id
|
|
|
340
371
|
|
|
341
372
|
| ID | Title | Summary |
|
|
342
373
|
| --- | --- | --- |
|
|
343
|
-
| `guide.agent-memory-index` | Agent Memory Index |
|
|
344
|
-
| `guide.agent-memory-index-uppercase` | Agent-Explorable Documentation |
|
|
345
|
-
| `guide.architecture-
|
|
346
|
-
| `guide.
|
|
347
|
-
| `guide.
|
|
348
|
-
| `guide.
|
|
374
|
+
| `guide.agent-memory-index` | Agent Memory Index | Use the Omnius docs skills when an agent needs to explore the documentation corpus instead of loading the whole docs tree. |
|
|
375
|
+
| `guide.agent-memory-index-uppercase` | Agent-Explorable Documentation | Omnius documentation is exposed to agents through project-local AIWG-style bundles under .aiwg/addons/. |
|
|
376
|
+
| `guide.architecture-agent-system-map` | Omnius Agent System Map | Use this page when you need to understand how a user-visible behavior travels through Omnius, where its state lives, and which package owns a change. For a specific task recipe, search the generated catalog first: |
|
|
377
|
+
| `guide.architecture-overview` | Architecture Overview | Omnius combines a terminal-first agent loop, REST daemon, model routing layer, tool runtime, persistent context, and peer mesh. |
|
|
378
|
+
| `guide.concept-relational-language` | Concept Relational Language (CRL) — Token-Efficient Concept Communication | > Experimental hyper-compressed symbolic notation for mind-mapped logical flow tracking |
|
|
379
|
+
| `guide.context-management-medium-models-proposal` | Context Management for Medium Models (30-40B) — Implementation Proposal | Date: 2026-04-25 Problem: Medium-tier models (~35B params) exhibit excessive repetition at ~35% context fill despite 256K context windows Root Cause: Monolithic context structure + attention degradation + tool schema bloat |
|
|
380
|
+
| `guide.dedup-false-positive-meta-analysis` | Meta-Analysis: False Positive Duplicate Tool Call Detection | Date: 2026-05-14 Scope: packages/orchestrator/src/agenticRunner.ts — proactivePrune() + buildResourceKey() |
|
|
381
|
+
| `guide.discovery-agent-map` | Agent Map | Bundled Omnius documentation artifact: docs/discovery/agent-map.json. |
|
|
349
382
|
| `guide.discovery-catalog-overrides` | Discovery Catalog Curated Source | Curated aliases, relationships, invocation modes, and conceptual entries merged into the generated catalog. |
|
|
350
383
|
| `guide.discovery-json` | Omnius Machine Discovery Catalog | Generated JSON catalog consumed by the CLI, REST discovery API, JavaScript API, and offline agents. |
|
|
351
384
|
| `guide.discovery-markdown` | Omnius Discovery Catalog | Human-readable generated index of every discoverable Omnius capability and bundled documentation artifact. |
|
|
352
|
-
| `guide.duplicate-calls-root-cause-analysis` | Duplicate Tool Calls — Root Cause Analysis |
|
|
353
|
-
| `guide.duplicate-calls-root-cause-deep` | Duplicate Tool Calls — Deep Root Cause Analysis |
|
|
354
|
-
| `guide.ephemeral-skill-pack-small-context` | Ephemeral Skill Pack Small-Context Plan |
|
|
355
|
-
| `guide.explorations-context-window-todo-association` | Exploration: Associating Context-Window Entries with Todo-Scoped Run Periods |
|
|
385
|
+
| `guide.duplicate-calls-root-cause-analysis` | Duplicate Tool Calls — Root Cause Analysis | The agent repeatedly calls the same tool with the same arguments (e.g., fileread on the same path, grepsearch with the same pattern, shell with the same command). This wastes turns, burns context, and creates visible "looping" behavior. |
|
|
386
|
+
| `guide.duplicate-calls-root-cause-deep` | Duplicate Tool Calls — Deep Root Cause Analysis | The agent repeatedly calls the same tool with the same arguments right after having already called it. This is visible even in this agent's own conversation — fileread and grepsearch calls get duplicated within 1-2 turns. |
|
|
387
|
+
| `guide.ephemeral-skill-pack-small-context` | Ephemeral Skill Pack Small-Context Plan | AIWG and Omnius skills are valuable, but full SKILL.md bodies are too large for small and medium context windows. The main agent should see only a tiny, task-scoped skill manifest, then delegate full skill unpacking to a sub-agent that returns a compact extraction. |
|
|
388
|
+
| `guide.explorations-context-window-todo-association` | Exploration: Associating Context-Window Entries with Todo-Scoped Run Periods | Goal (from user): Understand how granular context-window entries (messages / tool results) are associated with periods of an agentic run, and specifically whether they are tied to a todo item so that, when that todo completes, its context content can be compressed. |
|
|
356
389
|
| `guide.explorations-todo-association-verify` | Todo Association Verify | Bundled Omnius documentation artifact: docs/explorations/todo-association-verify.json. |
|
|
357
390
|
| `guide.explorations-verification-ledger` | Verification Ledger | Bundled Omnius documentation artifact: docs/explorations/verification-ledger.json. |
|
|
358
391
|
| `guide.explorations-verify-todo-association` | Verify Todo Association | Bundled Omnius documentation artifact: docs/explorations/verify-todo-association.sh. |
|
|
359
|
-
| `guide.flowstate` | FLOWSTATE.md |
|
|
360
|
-
| `guide.getting-started-first-run` | First Run And Setup |
|
|
361
|
-
| `guide.getting-started-install` | Install Omnius |
|
|
362
|
-
| `guide.getting-started-model-providers` | Model Providers And Endpoints |
|
|
363
|
-
| `guide.guides-agent-integration` | Agent And Service Integration |
|
|
364
|
-
| `guide.guides-bring-your-own-inference` | Bring Your Own Inference |
|
|
365
|
-
| `guide.guides-
|
|
366
|
-
| `guide.guides-
|
|
367
|
-
| `guide.guides-
|
|
368
|
-
| `guide.guides-
|
|
369
|
-
| `guide.guides-
|
|
370
|
-
| `guide.guides-
|
|
371
|
-
| `guide.guides-
|
|
372
|
-
| `guide.guides-
|
|
373
|
-
| `guide.
|
|
374
|
-
| `guide.
|
|
375
|
-
| `guide.
|
|
376
|
-
| `guide.
|
|
377
|
-
| `guide.
|
|
378
|
-
| `guide.multimodal-
|
|
379
|
-
| `guide.
|
|
380
|
-
| `guide.
|
|
381
|
-
| `guide.
|
|
382
|
-
| `guide.operations-delay-
|
|
383
|
-
| `guide.operations-
|
|
384
|
-
| `guide.operations-
|
|
385
|
-
| `guide.operations-
|
|
386
|
-
| `guide.
|
|
392
|
+
| `guide.flowstate` | FLOWSTATE.md | Derived from 18 articles by Rian Doris (Founder & CEO, FlowState.com) and mapped to the Omnius AI execution framework. This document enables any agent to explore systems optimization through the lens of human peak performance neuroscience. |
|
|
393
|
+
| `guide.getting-started-first-run` | First Run And Setup | The setup flow is responsible for choosing a usable model path without assuming local Ollama is the only option. |
|
|
394
|
+
| `guide.getting-started-install` | Install Omnius | This guide gets a machine ready to run Omnius from npm or from the workspace. |
|
|
395
|
+
| `guide.getting-started-model-providers` | Model Providers And Endpoints | Omnius routes model requests through a provider abstraction instead of treating local Ollama as the only source of models. |
|
|
396
|
+
| `guide.guides-agent-integration` | Agent And Service Integration | An integration should discover Omnius at runtime instead of encoding a partial provider or tool list. |
|
|
397
|
+
| `guide.guides-bring-your-own-inference` | Bring Your Own Inference | Omnius routes local and hosted models through an explicit provider descriptor. The descriptor determines the wire protocol, URL paths, authentication headers, and supported operations. It is the source of truth used by setup, model discovery, TUI runs, REST chat, summaries, voice, Telegram, sponsors, and endpoint probes. |
|
|
398
|
+
| `guide.guides-dashboard` | Web Dashboard | The Omnius daemon serves a zero-build, self-contained dashboard from the same origin as the REST API. Start it with omnius serve, then open http://127.0.0.1:11435/. The interface uses Omnius's compact NOCLIP-derived style kit and shared responsive observability-card grids; the route registry in packages/cli/src/api/web-ui.ts is the source of truth for pages |
|
|
399
|
+
| `guide.guides-media-generation` | Media Generation | Omnius exposes media generation through TUI commands, tools, Telegram creative workflows, and sponsor media endpoints. |
|
|
400
|
+
| `guide.guides-osint-research` | Categorized OSINT research | Omnius ships a local, searchable snapshot of the OSINT4ALL Start.me page. It uses the same compact discovery pattern as AIWG skills: |
|
|
401
|
+
| `guide.guides-realtime` | Realtime Conversations | Realtime mode is for short, natural, back-and-forth spoken conversation behind ASR and TTS. |
|
|
402
|
+
| `guide.guides-sponsor-and-cohere` | Sponsor And COHERE Mesh | Sponsor and COHERE let Omnius share inference capacity across peers. Sponsor mode is explicit provider/consumer sharing. COHERE is a distributed cognitive inference mesh. |
|
|
403
|
+
| `guide.guides-system-tray` | System Tray Indicator | Omnius ships a native per-login tray indicator for Linux, macOS, and Windows on x64 hosts. It is separate from the REST daemon: closing the indicator never stops the daemon, and the daemon remains usable in headless sessions. |
|
|
404
|
+
| `guide.guides-telegram` | Telegram Bridge | The Telegram bridge is a scoped public ingress and egress layer. It supports admin DMs, admin group mode, public group mode, media intake, generated artifact return, scoped memory, and persona documents. |
|
|
405
|
+
| `guide.guides-tools-and-web-search` | Tools And Web Search | Omnius has two related tool surfaces: |
|
|
406
|
+
| `guide.guides-tui-workflows` | TUI Workflows | The TUI is the primary Omnius control surface for interactive use. |
|
|
407
|
+
| `guide.handoff-crl-encoder-decoder-fix-uppercase` | HANDOFF: CRL Encoder/Decoder Bidirectional Fix | Date: 2026-04-22 Status: Needs Implementation Failing Test: packages/memory/tests/crl-converter.test.ts - "should validate roundtrip accuracy" |
|
|
408
|
+
| `guide.index` | Omnius Documentation | Omnius is an autonomous local-first agent runtime with a TUI, REST daemon, P2P sponsor mesh, Telegram bridge, realtime conversation mode, media generation routes, and AIWG-compatible documentation skills. |
|
|
409
|
+
| `guide.longhaul-35b-workorders` | Work Orders — Long-Haul Implementation on a 35B-Class Model | Origin: Root-cause review of the myactuator ESP32/PlatformIO session (35B ornith-vision) plus a 2026-literature sweep of surprising remedies. See companion analysis in docs/context-management-medium-models-proposal.md and docs/duplicate-calls-root-cause-analysis.md. |
|
|
410
|
+
| `guide.memory-integration-analysis` | Memory Integration Analysis — Parallel Systems Gap Assessment | Date: 2026-04-23 Status: ✅ INTEGRATED — All P0 gaps closed Context: Review of literature on memory compression + integration testing of Omnius parallel memory systems |
|
|
411
|
+
| `guide.model-capability-awareness-and-multimodal-memory-root-fix` | Model Capability Awareness And Multimodal Identity Memory Root Fix | Status: planning and integration tracker |
|
|
412
|
+
| `guide.multimodal-identity-memory-implementation` | Multimodal Identity Memory Implementation Tracker | Goal: make voice, text, image, Telegram reply context, CLIP-like embeddings, zettelkasten links, and social profiles converge on one evidence-based identity substrate. |
|
|
413
|
+
| `guide.omnius-self-edit-eval-2026-06-10` | Omnius Self-Edit Evaluation — Uncommitted Changes & Duplicate-Tool-Call Failure Mode | > Eval of the working-tree changes against docs/opencode-agentic-loop-comparison.md. > Subject: an Omnius instance editing its own orchestrator to implement the P0–P10 > learnings. Generated 2026-06-10. |
|
|
414
|
+
| `guide.opencode-agentic-loop-comparison` | OpenCode → Omnius: Agentic Loop & Sub-Agent Delegation Comparison | > Exhaustive comparison between https://github.com/anomalyco/opencode/tree/dev and > packages/orchestrator/src/agenticRunner.ts (omnius). > Generated 2026-06-10. |
|
|
415
|
+
| `guide.operations-delay-analysis` | Unnecessary Causes of Delays Between Agent Actions | Analysis of packages/orchestrator/src/ (95 files) — identified delay sources ranked by impact. |
|
|
416
|
+
| `guide.operations-delay-fix-review` | Delay Fix Review — Commits Since Delay Analysis | Date: 2026-06-10 Reference: /docs/operations/delay-analysis.md (15 delay sources documented) |
|
|
417
|
+
| `guide.operations-runtime-hygiene` | Runtime Hygiene | Runtime hygiene keeps long-running Omnius instances from accumulating stale state, stuck child processes, or leaked project artifacts. |
|
|
418
|
+
| `guide.operations-security-and-remote-access` | Security And Remote Access | Omnius is local-first by default. Remote access should be explicit, authenticated, and scoped. |
|
|
419
|
+
| `guide.operations-version-compatibility` | Service Version Compatibility | A client may be newer than the long-running Omnius daemon it reaches. The runtime version gate prevents a stale service from quietly accepting work whose provider, tool, or request contract it does not understand. |
|
|
420
|
+
| `guide.proposals-git-progress-tracking-strategy` | Git Progress Tracking Strategy | Use Git as an optional runtime evidence layer for Omnius agent sessions. When a project already has Git, Omnius should track its own mutations with the same discipline a careful implementer uses manually: baseline status, scoped diffs, changed-file summaries, verifier results after changes, and recovery artifacts. |
|
|
387
421
|
| `guide.proposals-opencode-modules-backend-adapter-uppercase` | Backend Adapter | Bundled Omnius documentation artifact: docs/proposals/opencode-modules/backendAdapter.ts. |
|
|
388
422
|
| `guide.proposals-opencode-modules-child-session-uppercase` | Child Session | Bundled Omnius documentation artifact: docs/proposals/opencode-modules/childSession.ts. |
|
|
389
423
|
| `guide.proposals-opencode-modules-compaction-agent-uppercase` | Compaction Agent | Bundled Omnius documentation artifact: docs/proposals/opencode-modules/compactionAgent.ts. |
|
|
390
424
|
| `guide.proposals-opencode-modules-orchestrator` | Orchestrator | Bundled Omnius documentation artifact: docs/proposals/opencode-modules/orchestrator.ts. |
|
|
391
425
|
| `guide.proposals-opencode-modules-runner` | Runner | Bundled Omnius documentation artifact: docs/proposals/opencode-modules/runner.ts. |
|
|
392
|
-
| `guide.reference-auth-map` | Authentication And Authorization Map |
|
|
393
|
-
| `guide.reference-configuration` | Configuration Reference |
|
|
394
|
-
| `guide.reference-rest-api` | REST API Reference |
|
|
395
|
-
| `guide.reference-slash-commands` | Slash Commands |
|
|
426
|
+
| `guide.reference-auth-map` | Authentication And Authorization Map | Omnius has two separate credential boundaries: |
|
|
427
|
+
| `guide.reference-configuration` | Configuration Reference | Configuration is layered from environment, global user settings, project settings, and active TUI state. |
|
|
428
|
+
| `guide.reference-rest-api` | REST API Reference | This is the maintained human inventory for the supported Omnius daemon API. The machine contract is generated by packages/cli/src/api/openapi.ts and served at /openapi.json; every operation in that contract must appear here, and the generated REST block in the root README must match this file byte-for-byte after heading normalization. Browser HTML routes and |
|
|
429
|
+
| `guide.reference-slash-commands` | Slash Commands | This file is generated from packages/cli/src/tui/command-registry.ts. |
|
|
396
430
|
| `guide.research-archived-context-window-attention-model` | Context Window Attention Model | Bundled Omnius documentation artifact: docs/research/_archived/context_window_attention_model.py. |
|
|
397
|
-
| `guide.research-archived-context-window-attention-spec` | Context Window Attention-Weighted Optimization Spec |
|
|
431
|
+
| `guide.research-archived-context-window-attention-spec` | Context Window Attention-Weighted Optimization Spec | The context window treats all items (system prompt, memory cards, chat history, voice transcriptions, reflection notes) at roughly equal attention weight (~1.0). This causes: |
|
|
398
432
|
| `guide.research-archived-context-window-attention-weights` | Context Window Attention Weights | Bundled Omnius documentation artifact: docs/research/_archived/context_window_attention_weights.json. |
|
|
399
|
-
| `guide.research-archived-readme-uppercase` | Archived design notes — unwired |
|
|
433
|
+
| `guide.research-archived-readme-uppercase` | Archived design notes — unwired | Documents in this directory describe design proposals that were never wired into the runtime. They are kept for historical context only. |
|
|
400
434
|
| `guide.research-k-splanifolds` | K Splanifolds | Bundled Omnius documentation artifact: docs/research/k-splanifolds.pdf. |
|
|
401
|
-
| `guide.research-personality-verbosity-control` | LLM Personality Guidance & Verbosity Control: Research Synthesis |
|
|
402
|
-
| `guide.rest-auth-and-scopes` | Auth And Scopes |
|
|
403
|
-
| `guide.rest-endpoints-aims` | AIMS Governance Endpoints |
|
|
404
|
-
| `guide.rest-endpoints-aiwg` | AIWG Cascade Endpoints |
|
|
405
|
-
| `guide.rest-endpoints-chat` | Chat And Inference Endpoints |
|
|
406
|
-
| `guide.rest-endpoints-config` | Config, Endpoints, Keys, Profiles, And Projects |
|
|
407
|
-
| `guide.rest-endpoints-discovery` | Discovery |
|
|
408
|
-
| `guide.rest-endpoints-events` | Events, Metrics, Usage, Audit, System, Nexus, And Ollama Pool |
|
|
409
|
-
| `guide.rest-endpoints-files` | Files |
|
|
410
|
-
| `guide.rest-endpoints-memory` | Memory, Sessions, And Context |
|
|
411
|
-
| `guide.rest-endpoints-run` | Runs, Jobs, Todos, And Scheduled Work |
|
|
412
|
-
| `guide.rest-endpoints-skills` | Skills And Commands |
|
|
413
|
-
| `guide.rest-endpoints-tools` | Tools, MCP, Hooks, Agents, And Code Graph |
|
|
414
|
-
| `guide.rest-endpoints-voice-vision` | Voice, Audio, Vision, And Voicechat |
|
|
415
|
-
| `guide.rest-errors-pagination-etags` | Errors, Pagination, ETags, And Request IDs |
|
|
416
|
-
| `guide.rest-examples-curl` | Curl Examples |
|
|
417
|
-
| `guide.rest-examples-openai-sdk` | OpenAI SDK Examples |
|
|
418
|
-
| `guide.rest-index-uppercase` | Omnius REST API Docs |
|
|
419
|
-
| `guide.rest-openapi-source` | OpenAPI Source And Renderers |
|
|
420
|
-
| `guide.rest-quickref-uppercase` | Omnius REST Quick Reference |
|
|
435
|
+
| `guide.research-personality-verbosity-control` | LLM Personality Guidance & Verbosity Control: Research Synthesis | Date: 2026-03-13 Purpose: Literature review and integration strategy for transient personality/verbosity steering in the Omnius framework |
|
|
436
|
+
| `guide.rest-auth-and-scopes` | Auth And Scopes | Omnius can run without auth for local development, but shared deployments should use bearer keys. |
|
|
437
|
+
| `guide.rest-endpoints-aims` | AIMS Governance Endpoints | Omnius exposes an ISO/IEC 42001-oriented AI Management System surface for audit-aligned deployments. |
|
|
438
|
+
| `guide.rest-endpoints-aiwg` | AIWG Cascade Endpoints | AIWG endpoints expose a discover-then-expand documentation and workflow model for small and large context agents. |
|
|
439
|
+
| `guide.rest-endpoints-chat` | Chat And Inference Endpoints | Returns an OpenAI-style model list aggregated from enabled endpoints. Model discovery should include local Ollama, configured external endpoints, sponsor endpoints, and COHERE/passthrough models where enabled. |
|
|
440
|
+
| `guide.rest-endpoints-config` | Config, Endpoints, Keys, Profiles, And Projects | Endpoint switching uses the same normalization as the TUI. Use /v1/config/endpoint/test before switching a remote endpoint in automation. |
|
|
441
|
+
| `guide.rest-endpoints-discovery` | Discovery | The discovery API exposes the same catalog shipped in docs/DISCOVERY.json and used by omnius discover / omnius show. |
|
|
442
|
+
| `guide.rest-endpoints-events` | Events, Metrics, Usage, Audit, System, Nexus, And Ollama Pool | GET /v1/events is an SSE stream. Filter by exact type or prefix: |
|
|
443
|
+
| `guide.rest-endpoints-files` | Files | GET /v1/files?path=<relative-or-absolute> returns directory entries for the active or requested workspace. |
|
|
444
|
+
| `guide.rest-endpoints-memory` | Memory, Sessions, And Context | Use memory search for persistent knowledge, failures, prior decisions, and scoped context. Public connector surfaces such as Telegram should keep scope explicit so one chat does not pollute another. |
|
|
445
|
+
| `guide.rest-endpoints-run` | Runs, Jobs, Todos, And Scheduled Work | Submits a long-running task to the daemon and returns an accepted job record. Runs are tracked under .omnius/jobs/. |
|
|
446
|
+
| `guide.rest-endpoints-skills` | Skills And Commands | The REST docs bundle is available as: |
|
|
447
|
+
| `guide.rest-endpoints-tools` | Tools, MCP, Hooks, Agents, And Code Graph | GET /v1/tools and POST /v1/tools/{name}/call use the same direct-call registry, built from the @omnius/execution tool manifest plus virtual lifecycle tools such as taskcomplete. If a tool appears in /v1/tools with directcallable: true, the same name is callable at /v1/tools/{name}/call. |
|
|
448
|
+
| `guide.rest-endpoints-voice-vision` | Voice, Audio, Vision, And Voicechat | POST /v1/voice/tts returns audio bytes. format can be wav or pcm. X-Sample-Rate reports the sample rate. |
|
|
449
|
+
| `guide.rest-errors-pagination-etags` | Errors, Pagination, ETags, And Request IDs | The OpenAPI contract documents RFC 7807 Problem Details for common errors: |
|
|
450
|
+
| `guide.rest-examples-curl` | Curl Examples | curl -s "$BASE/openapi.json" \| jq '.info.title, .info.version' |
|
|
451
|
+
| `guide.rest-examples-openai-sdk` | OpenAI SDK Examples | Omnius exposes an OpenAI-compatible chat-completions endpoint at /v1/chat/completions. |
|
|
452
|
+
| `guide.rest-index-uppercase` | Omnius REST API Docs | This directory is the human-readable REST API reference for Omnius. It is meant to be explored incrementally by agents and humans. |
|
|
453
|
+
| `guide.rest-openapi-source` | OpenAPI Source And Renderers | The canonical REST contract is generated by: |
|
|
454
|
+
| `guide.rest-quickref-uppercase` | Omnius REST Quick Reference | GET /docs GET /api/docs GET /openapi.json GET /openapi.yaml GET /redoc |
|
|
421
455
|
| `guide.rest-rest-docs-manifest-uppercase` | Rest Docs Manifest | Bundled Omnius documentation artifact: docs/rest/REST-DOCS-MANIFEST.json. |
|
|
422
|
-
| `guide.reviews-adversary-system-review` | Adversary System Review |
|
|
423
|
-
| `guide.sana-and-video-generation-integration-plan` | Sana (Image) + `/video` (Video Generation) Integration Plan |
|
|
424
|
-
| `guide.session-diary-llm-training-analysis` | Session Diary: LLM Training Alignment Analysis |
|
|
425
|
-
| `guide.telegram-dmn-curiosity-outreach-scaffold` | Telegram DMN Curiosity Outreach Scaffold |
|
|
426
|
-
| `guide.telegram-mid-horizon-download-loop-handoff` | Telegram Mid-Horizon Download Loop Handoff |
|
|
427
|
-
| `guide.telegram-reflection-corpus-integration-plan` | Telegram Reflection Corpus Integration Plan |
|
|
428
|
-
| `guide.telegram-unified-tooling-architecture` | Telegram Unified Tooling Architecture |
|
|
429
|
-
| `guide.threat-model` | Omnius Threat Model |
|
|
430
|
-
| `guide.trajectory-grounding` | Trajectory Grounding |
|
|
456
|
+
| `guide.reviews-adversary-system-review` | Adversary System Review | Date: 2026-06-28 Scope: Read-only pass Files reviewed: |
|
|
457
|
+
| `guide.sana-and-video-generation-integration-plan` | Sana (Image) + `/video` (Video Generation) Integration Plan | > Status: Plan only. Builds a complete, anchored handoff for a downstream implementation agent. > Goal: (A) Promote NVIDIA Sana to the primary image-generation model for /image and the image-generation tool, (B) ship an entirely new /video pipeline modeled exactly on the existing /image and /sound-/music patterns, including its agent tool, Telegram public/pr |
|
|
458
|
+
| `guide.session-diary-llm-training-analysis` | Session Diary: LLM Training Alignment Analysis | Is the session diary format what LLMs are trained on, such that it helps system handling? |
|
|
459
|
+
| `guide.telegram-dmn-curiosity-outreach-scaffold` | Telegram DMN Curiosity Outreach Scaffold | This document tracks the root design for idle Telegram channel "daydream" behavior: private meta-analysis while a public group is idle, curiosity-driven exploration, scoped tool awareness, same-group follow-up planning, private DM follow-up planning, and persona document steering. It is intentionally a scaffold: artifacts describe possible actions and tool a |
|
|
460
|
+
| `guide.telegram-mid-horizon-download-loop-handoff` | Telegram Mid-Horizon Download Loop Handoff | A Telegram admin-DM action run for "can you please get me the pdf for Snow Crash" burned 60+ turns trying Archive.org, browser clicks, repeated curl downloads, and third-party PDF mirrors. It eventually sent visible self-talk to Telegram: |
|
|
461
|
+
| `guide.telegram-reflection-corpus-integration-plan` | Telegram Reflection Corpus Integration Plan | Status: planning and implementation tracker |
|
|
462
|
+
| `guide.telegram-unified-tooling-architecture` | Telegram Unified Tooling Architecture | Goal: give Telegram-sourced agent runs one scoped telegram tool that covers Telegram Bot API operations behind explicit Omnius policy, Telegram bot rights, and admin-controlled toggles. This replaces the current drift where some Telegram powers exist as private helpers, some exist as TUI slash commands, and only telegramsendfile is model-facing. |
|
|
463
|
+
| `guide.threat-model` | Omnius Threat Model | > Version: 1.0.0 > Last Updated: 2026-03-26 > Classification: Internal Security Review > Status: Phase 1 - Initial Assessment |
|
|
464
|
+
| `guide.trajectory-grounding` | Trajectory Grounding | Trajectory Grounding gives a running agent a compact, evidence-bound account of where a project stands, what changed, what remains uncertain, and the safest next action. Before the first main-agent request, Omnius asks the selected model to form a specific, structured orientation from that evidence. This is a control-plane checkpoint, not free-form self-talk |
|
|
431
465
|
| `guide.vitepress-config` | Config | Bundled Omnius documentation artifact: docs/.vitepress/config.mts. |
|
|
432
|
-
| `guide.voice-flow-architecture` | Voice TTS Flow — Architecture & Implementation Guide |
|
|
433
|
-
| `guide.work-orders-daemon-hud-ui-overhaul` | Daemon HUD UI Overhaul Work Order |
|
|
466
|
+
| `guide.voice-flow-architecture` | Voice TTS Flow — Architecture & Implementation Guide | This document describes the voice synthesis system in omnius: how it's built, how all the pieces connect, and how to add new voice features following the same patterns. |
|
|
467
|
+
| `guide.work-orders-daemon-hud-ui-overhaul` | Daemon HUD UI Overhaul Work Order | Overhaul the daemon web interface using /home/roko/Desktop/hud-ui-style-kit(6)/hud-ui-style-kit as the source of truth. Preserve current daemon behavior while replacing the OpenWebUI-like rounded dashboard styling with the cold tactical HUD visual system. |
|
|
434
468
|
| `guide.work-orders-hermes-architecture-deltas-01-public-scrutiny-provenance-control-index-uppercase` | Public Scrutiny Provenance Control Index | Bundled Omnius documentation artifact: docs/work-orders/hermes-architecture-deltas/01-public-scrutiny-provenance-control/INDEX.md. |
|
|
435
|
-
| `guide.work-orders-hermes-architecture-deltas-01-public-scrutiny-provenance-control-workorder-uppercase` | Workorder: Public Scrutiny Provenance Control |
|
|
469
|
+
| `guide.work-orders-hermes-architecture-deltas-01-public-scrutiny-provenance-control-workorder-uppercase` | Workorder: Public Scrutiny Provenance Control | Add a public Telegram scrutiny control plane that can elevate completion provenance checks when public accuracy risk rises, without hard-coded scenario phrases or shortcut wording that teaches the model to satisfy the gate without evidence. |
|
|
436
470
|
| `guide.work-orders-hermes-architecture-deltas-02-context-engine-plugin-boundary-index-uppercase` | Context Engine Plugin Boundary Index | Bundled Omnius documentation artifact: docs/work-orders/hermes-architecture-deltas/02-context-engine-plugin-boundary/INDEX.md. |
|
|
437
|
-
| `guide.work-orders-hermes-architecture-deltas-02-context-engine-plugin-boundary-workorder-uppercase` | Workorder: Context Engine Plugin Boundary |
|
|
471
|
+
| `guide.work-orders-hermes-architecture-deltas-02-context-engine-plugin-boundary-workorder-uppercase` | Workorder: Context Engine Plugin Boundary | Extract context assembly, compaction, memory stitching, and completion framing behind a small orchestrator-owned interface. The current runner should remain behaviorally compatible, but future context strategies should be swappable without editing the main AgenticRunner loop. |
|
|
438
472
|
| `guide.work-orders-hermes-architecture-deltas-03-typed-gateway-event-stream-index-uppercase` | Typed Gateway Event Stream Index | Bundled Omnius documentation artifact: docs/work-orders/hermes-architecture-deltas/03-typed-gateway-event-stream/INDEX.md. |
|
|
439
|
-
| `guide.work-orders-hermes-architecture-deltas-03-typed-gateway-event-stream-workorder-uppercase` | Workorder: Typed Gateway Event Stream |
|
|
473
|
+
| `guide.work-orders-hermes-architecture-deltas-03-typed-gateway-event-stream-workorder-uppercase` | Workorder: Typed Gateway Event Stream | Replace fragile renderer-facing string events with a typed event stream that separates what happened in the runner from how each gateway renders it. |
|
|
440
474
|
| `guide.work-orders-hermes-architecture-deltas-04-task-local-gateway-context-index-uppercase` | Task-Local Gateway Context Index | Bundled Omnius documentation artifact: docs/work-orders/hermes-architecture-deltas/04-task-local-gateway-context/INDEX.md. |
|
|
441
|
-
| `guide.work-orders-hermes-architecture-deltas-04-task-local-gateway-context-workorder-uppercase` | Workorder: Task-Local Gateway Context |
|
|
475
|
+
| `guide.work-orders-hermes-architecture-deltas-04-task-local-gateway-context-workorder-uppercase` | Workorder: Task-Local Gateway Context | Introduce a task-local gateway context based on Node AsyncLocalStorage so Telegram, REST, TUI, scheduler, and background runs can share a common current-session context without mutable cross-run leakage. |
|
|
442
476
|
| `guide.work-orders-hermes-architecture-deltas-05-process-lifecycle-monitoring-notifications-index-uppercase` | Process Lifecycle Monitoring Notifications Index | Bundled Omnius documentation artifact: docs/work-orders/hermes-architecture-deltas/05-process-lifecycle-monitoring-notifications/INDEX.md. |
|
|
443
|
-
| `guide.work-orders-hermes-architecture-deltas-05-process-lifecycle-monitoring-notifications-workorder-uppercase` | Workorder: Process Lifecycle Monitoring Notifications |
|
|
477
|
+
| `guide.work-orders-hermes-architecture-deltas-05-process-lifecycle-monitoring-notifications-workorder-uppercase` | Workorder: Process Lifecycle Monitoring Notifications | Extend Omnius's registry-based process lifecycle architecture with active monitoring, user-visible diagnostics, and cleanup of remaining direct legacy kill paths. Keep the lease registry as the only authority for automatic stale process termination. |
|
|
444
478
|
| `guide.work-orders-hermes-architecture-deltas-06-vision-evidence-routing-ladder-index-uppercase` | Vision Evidence Routing Ladder Index | Bundled Omnius documentation artifact: docs/work-orders/hermes-architecture-deltas/06-vision-evidence-routing-ladder/INDEX.md. |
|
|
445
|
-
| `guide.work-orders-hermes-architecture-deltas-06-vision-evidence-routing-ladder-workorder-uppercase` | Workorder: Vision Evidence Routing Ladder |
|
|
479
|
+
| `guide.work-orders-hermes-architecture-deltas-06-vision-evidence-routing-ladder-workorder-uppercase` | Workorder: Vision Evidence Routing Ladder | Build a generic visual evidence router that resolves scoped media reliably and chooses an analysis ladder based on the current request's information need: |
|
|
446
480
|
| `guide.work-orders-hermes-architecture-deltas-07-durable-multi-agent-kanban-index-uppercase` | Durable Multi-Agent Kanban Index | Bundled Omnius documentation artifact: docs/work-orders/hermes-architecture-deltas/07-durable-multi-agent-kanban/INDEX.md. |
|
|
447
|
-
| `guide.work-orders-hermes-architecture-deltas-07-durable-multi-agent-kanban-workorder-uppercase` | Workorder: Durable Multi-Agent Kanban |
|
|
481
|
+
| `guide.work-orders-hermes-architecture-deltas-07-durable-multi-agent-kanban-workorder-uppercase` | Workorder: Durable Multi-Agent Kanban | Add a durable multi-agent work board for long-running admin tasks and public disputed factual work. The board should support decomposition, worker assignment, verification, synthesis, diagnostics, and completion evidence without relying on one runner's transient todo list. |
|
|
448
482
|
| `guide.work-orders-hermes-architecture-deltas-08-completion-critic-reconciliation-ledger-index-uppercase` | Completion Critic Reconciliation Ledger Index | Bundled Omnius documentation artifact: docs/work-orders/hermes-architecture-deltas/08-completion-critic-reconciliation-ledger/INDEX.md. |
|
|
449
|
-
| `guide.work-orders-hermes-architecture-deltas-08-completion-critic-reconciliation-ledger-workorder-uppercase` | Workorder: Completion Critic Reconciliation Ledger |
|
|
450
|
-
| `guide.work-orders-hermes-architecture-deltas-index-uppercase` | Hermes Architecture Deltas Workorder Index |
|
|
451
|
-
| `guide.work-orders-omnius-context-engineering-behavior-fixes` | Omnius Context Engineering Behavior Fixes |
|
|
452
|
-
| `guide.work-orders-telegram-dropbear-context-rca-workorder` | Telegram Dropbear Context Engineering RCA Work Order |
|
|
453
|
-
| `guide.work-orders-wo-am-gaps-uppercase` | Associative Memory Gap Work Orders |
|
|
454
|
-
| `guide.work-orders-world-class-memory-compiler-readme-uppercase` | World-Class Memory Compiler Program |
|
|
455
|
-
| `guide.work-orders-world-class-memory-compiler-tracker-uppercase` | Memory Compiler Implementation Tracker |
|
|
456
|
-
| `guide.work-orders-world-class-memory-compiler-wo-01-exact-request-budget-uppercase` | WO-01 — Exact Request and Budget Compiler |
|
|
457
|
-
| `guide.work-orders-world-class-memory-compiler-wo-02-typed-memory-fabric-uppercase` | WO-02 — Typed Memory Fabric and Immutable Event Ledger |
|
|
458
|
-
| `guide.work-orders-world-class-memory-compiler-wo-03-dependency-working-set-uppercase` | WO-03 — Dependency Graph and Working-Set Materializer |
|
|
459
|
-
| `guide.work-orders-world-class-memory-compiler-wo-04-inference-memory-compiler-uppercase` | WO-04 — Inference-Driven Memory Compiler |
|
|
460
|
-
| `guide.work-orders-world-class-memory-compiler-wo-05-artifact-fidelity-materialization-uppercase` | WO-05 — Artifact Fidelity and Explicit Materialization |
|
|
461
|
-
| `guide.work-orders-world-class-memory-compiler-wo-06-temporal-hybrid-retrieval-uppercase` | WO-06 — Temporal Hybrid Retrieval |
|
|
462
|
-
| `guide.work-orders-world-class-memory-compiler-wo-07-evaluation-harness-uppercase` | WO-07 — Replay Evaluation and Adversarial Harness |
|
|
463
|
-
| `guide.work-orders-world-class-memory-compiler-wo-08-rollout-legacy-removal-uppercase` | WO-08 — Shadow Rollout, Migration, and Legacy Removal |
|
|
464
|
-
| `guide.x402-remote-inference-plan` | x402 Remote Inference Integration — Security Audit & Comprehensive Plan |
|
|
483
|
+
| `guide.work-orders-hermes-architecture-deltas-08-completion-critic-reconciliation-ledger-workorder-uppercase` | Workorder: Completion Critic Reconciliation Ledger | Convert completion verification into a durable claim/evidence ledger. The critic must receive: |
|
|
484
|
+
| `guide.work-orders-hermes-architecture-deltas-index-uppercase` | Hermes Architecture Deltas Workorder Index | Status: ready for implementation planning. These documents are workorders only; they do not claim the features are implemented. |
|
|
485
|
+
| `guide.work-orders-omnius-context-engineering-behavior-fixes` | Omnius Context Engineering Behavior Fixes | Source observation: current Omnius behavior while supervising a noclip/earth sidebar cleanup task. The observed run mixed internal cognitive-agent artifacts with user-task artifacts, repeated stale edit attempts after the file had changed, and overclaimed completion despite stale or missing verification. |
|
|
486
|
+
| `guide.work-orders-telegram-dropbear-context-rca-workorder` | Telegram Dropbear Context Engineering RCA Work Order | Observed run: /home/roko/Documents/Projects/Adjacent/telegramtest/.omnius, run id 1782873796963-i5r7mv. |
|
|
487
|
+
| `guide.work-orders-wo-am-gaps-uppercase` | Associative Memory Gap Work Orders | Generated: 2026-04-13 Source: Deep audit of multimodal associative memory systems Status: READY FOR IMPLEMENTATION |
|
|
488
|
+
| `guide.work-orders-world-class-memory-compiler-readme-uppercase` | World-Class Memory Compiler Program | Status: active implementation program Owner: Omnius orchestration and memory packages Last updated: 2026-07-13 |
|
|
489
|
+
| `guide.work-orders-world-class-memory-compiler-tracker-uppercase` | Memory Compiler Implementation Tracker | Last reconciled: 2026-07-13 Authority: This file is the granular program tracker. The work-order documents define the contract and acceptance criteria; neither test output nor a model claim may check an item without the named evidence. |
|
|
490
|
+
| `guide.work-orders-world-class-memory-compiler-wo-01-exact-request-budget-uppercase` | WO-01 — Exact Request and Budget Compiler | Status: in progress Primary modules: packages/orchestrator/src/agenticRunner.ts, contextWindowDump.ts, context-compiler.ts, context-fabric.ts Depends on: none |
|
|
491
|
+
| `guide.work-orders-world-class-memory-compiler-wo-02-typed-memory-fabric-uppercase` | WO-02 — Typed Memory Fabric and Immutable Event Ledger | Status: in progress Primary modules: packages/memory/src/, packages/schemas/src/memory.ts, packages/orchestrator/src/evidenceLedger.ts, runEvents.ts Depends on: WO-01 |
|
|
492
|
+
| `guide.work-orders-world-class-memory-compiler-wo-03-dependency-working-set-uppercase` | WO-03 — Dependency Graph and Working-Set Materializer | Status: in progress Primary modules: packages/memory/src/memoryGraph.ts, temporalGraph.ts, packages/orchestrator/src/evidenceLedger.ts, agenticRunner.ts Depends on: WO-02 |
|
|
493
|
+
| `guide.work-orders-world-class-memory-compiler-wo-04-inference-memory-compiler-uppercase` | WO-04 — Inference-Driven Memory Compiler | Status: in progress Primary modules: packages/orchestrator/src/compaction-analyst.ts, agenticRunner.ts, contextWindowDump.ts Depends on: WO-01, WO-03 |
|
|
494
|
+
| `guide.work-orders-world-class-memory-compiler-wo-05-artifact-fidelity-materialization-uppercase` | WO-05 — Artifact Fidelity and Explicit Materialization | Status: in progress Primary modules: packages/execution/src/tools/file-read.ts, packages/orchestrator/src/evidenceBranch.ts, evidenceLedger.ts, artifactContract.ts Depends on: WO-02, WO-03 |
|
|
495
|
+
| `guide.work-orders-world-class-memory-compiler-wo-06-temporal-hybrid-retrieval-uppercase` | WO-06 — Temporal Hybrid Retrieval | Status: in progress Primary modules: packages/memory/src/hybridMemoryRetriever.ts, pprRetrieval.ts, temporalGraph.ts, memoryGraph.ts Depends on: WO-02, WO-03, WO-05 |
|
|
496
|
+
| `guide.work-orders-world-class-memory-compiler-wo-07-evaluation-harness-uppercase` | WO-07 — Replay Evaluation and Adversarial Harness | Status: in progress Primary modules: packages/orchestrator/scripts/, test fixtures, context audit/log serializers Depends on: WO-01 through WO-06 |
|
|
497
|
+
| `guide.work-orders-world-class-memory-compiler-wo-08-rollout-legacy-removal-uppercase` | WO-08 — Shadow Rollout, Migration, and Legacy Removal | Status: in progress Primary modules: orchestrator configuration, telemetry, TUI audit display, legacy compaction/rehydration paths Depends on: WO-07 |
|
|
498
|
+
| `guide.x402-remote-inference-plan` | x402 Remote Inference Integration — Security Audit & Comprehensive Plan | C1: Private key not truly zeroed (nexus.ts L1455, L1901) privKeyHex = "0".repeat(64) only rebinds the JS variable — the original string lives on the heap until GC. JavaScript strings are immutable. |
|
|
499
|
+
|
|
500
|
+
## Layer
|
|
501
|
+
|
|
502
|
+
| ID | Title | Summary |
|
|
503
|
+
| --- | --- | --- |
|
|
504
|
+
| `layer.architecture` | Architecture and ownership | The process, package, dependency, and data-flow map that connects public interfaces to their source owners and runtime boundaries. |
|
|
505
|
+
| `layer.code-intelligence` | Code intelligence | Repository indexing, symbol and code graph storage, retrieval, repository context, and evidence-directed navigation used by coding agents. |
|
|
506
|
+
| `layer.context` | Prompts and context engineering | System prompts, task templates, context compilation, admission, compaction, dumps, history sanitation, token budgeting, and working-context recovery. |
|
|
507
|
+
| `layer.contracts` | Contracts and schemas | Shared TypeScript schemas, OpenAPI, command/tool/provider registries, version preconditions, and generated documentation that keep surfaces consistent. |
|
|
508
|
+
| `layer.discovery` | Discovery and onboarding | Stable IDs, bootstrap profiles, task workflows, generated catalogs, package guidance, and live discovery endpoints that let agents navigate Omnius without prior repository knowledge. |
|
|
509
|
+
| `layer.documentation` | Documentation | User, operator, integrator, and maintainer explanations linked from the generated discovery graph and deployable AIWG skills. |
|
|
510
|
+
| `layer.execution` | Tool execution and policy | Executable tools, schemas, security classification, direct versus agent-bound exposure, MCP/custom tools, mutation contracts, and shell/file/browser boundaries. |
|
|
511
|
+
| `layer.inference` | Inference and provider routing | Provider descriptors, endpoint protocol selection, model routing, local Ollama/vLLM, hosted APIs, sponsor capacity, and compatibility translation. |
|
|
512
|
+
| `layer.interface` | Interfaces | The TUI, one-shot CLI, REST daemon, dashboard, tray indicator, Telegram gateway, and JavaScript library through which users and agents enter Omnius. |
|
|
513
|
+
| `layer.media` | Voice, ASR, TTS, vision, and media | ASR engine registry and managed weights, TTS/voice cloning, realtime voicechat, live sensors, vision, and image/video/audio generation backed by shared model storage. |
|
|
514
|
+
| `layer.memory` | Memory and sessions | Project sessions, episodes, temporal graph memory, maintenance, summaries, task continuity, and explicit separation between conversational history and slash-command control input. |
|
|
515
|
+
| `layer.observability` | Observability and evidence | Action trees, run events, status, metrics, context dumps, logs, evidence and verification ledgers, debug artifacts, and UI projections for proving what happened. |
|
|
516
|
+
| `layer.operations` | Runtime operations | Daemon lifecycle and port ownership, tray indicator, update and restart verification, schedulers, installation, runtime dependencies, packaging, and publish staging. |
|
|
517
|
+
| `layer.orchestration` | Agent orchestration | Long-horizon task intake, planning, agent/tool turns, sub-agents, completion contracts, trajectory checkpoints, recovery, and run lifecycle. |
|
|
518
|
+
| `layer.persistence` | Persistence and state scopes | Project-local .omnius state, user-global ~/.omnius state, shared model/runtime caches, configuration precedence, and the rules preventing cross-project leakage. |
|
|
519
|
+
| `layer.security` | Security and trust boundaries | Authentication, REST scopes, secret handling, tool risk and mutation policy, remote access, hardware preflight, AIMS controls, and fail-closed execution gates. |
|
|
520
|
+
|
|
521
|
+
## Module
|
|
522
|
+
|
|
523
|
+
| ID | Title | Summary |
|
|
524
|
+
| --- | --- | --- |
|
|
525
|
+
| `module.app-api` | @omnius/api | Express-based API server for the omnius coding framework |
|
|
526
|
+
| `module.app-worker` | @omnius/worker | Background worker for async agent task processing |
|
|
527
|
+
| `module.backend-vllm` | @omnius/backend-vllm | vLLM backend client for model inference |
|
|
528
|
+
| `module.cli` | omnius | Command-line interface for the omnius coding framework |
|
|
529
|
+
| `module.execution` | @omnius/execution | Execution and validation tools for the omnius coding framework |
|
|
530
|
+
| `module.indexer` | @omnius/indexer | Codebase indexing and file tree analysis |
|
|
531
|
+
| `module.memory` | @omnius/memory | Durable SQLite-backed memory stores for the omnius coding agent |
|
|
532
|
+
| `module.orchestrator` | @omnius/orchestrator | RALPH loop orchestrator - central brain of the coding agent |
|
|
533
|
+
| `module.prompts` | @omnius/prompts | Prompt templates and loader for the omnius coding framework |
|
|
534
|
+
| `module.retrieval` | @omnius/retrieval | Code retrieval and semantic search for agent context |
|
|
535
|
+
| `module.schemas` | @omnius/schemas | Shared TypeScript schemas and type definitions for the omnius framework |
|
|
465
536
|
|
|
466
537
|
## Operation
|
|
467
538
|
|
|
@@ -494,6 +565,18 @@ Daemon equivalents are `GET /v1/discovery?q=<intent>` and `GET /v1/discovery/{id
|
|
|
494
565
|
| `provider.together` | Together AI | Together hosted inference through its OpenAI-compatible API. |
|
|
495
566
|
| `provider.vllm` | vLLM | A self-hosted OpenAI-compatible vLLM server, normally on port 8000. |
|
|
496
567
|
|
|
568
|
+
## Runtime
|
|
569
|
+
|
|
570
|
+
| ID | Title | Summary |
|
|
571
|
+
| --- | --- | --- |
|
|
572
|
+
| `runtime.daemon` | REST daemon | Long-running HTTP/WebSocket service, normally on 127.0.0.1:11435, that owns automation, dashboard, chat/run, tool, voice, media, update, and health routes. |
|
|
573
|
+
| `runtime.dashboard` | Dashboard | Browser UI served by the daemon for projects, chats, runs, activity, voice/media, settings, updates, and observability. |
|
|
574
|
+
| `runtime.model-workers` | Model and media workers | External local processes and managed Python environments used for inference, ASR, TTS, and generated media; their real hardware placement must be verified before live inference. |
|
|
575
|
+
| `runtime.one-shot` | One-shot CLI task | Foreground single-task agent execution from a shell, suitable when the caller can wait for completion and consume terminal output. |
|
|
576
|
+
| `runtime.telegram` | Telegram gateway | Scoped external chat/control bridge with its own authentication, command exposure, persona/session state, and observability. |
|
|
577
|
+
| `runtime.tray` | System tray indicator | Desktop status and update control registered through the host tray implementation, focused on Ubuntu/Linux and linked to daemon readiness. |
|
|
578
|
+
| `runtime.tui` | Interactive TUI | Foreground terminal control plane for chat, tasks, slash commands, action trees, media, setup, and operator confirmation. |
|
|
579
|
+
|
|
497
580
|
## Skill
|
|
498
581
|
|
|
499
582
|
| ID | Title | Summary |
|
|
@@ -502,6 +585,7 @@ Daemon equivalents are `GET /v1/discovery?q=<intent>` and `GET /v1/discovery/{id
|
|
|
502
585
|
| `skill.browser-interaction-validation` | Browser interaction validation | Validate a user-facing browser flow with canonical Playwright interactions, explicit postconditions, and honest blocked or inconclusive evidence. |
|
|
503
586
|
| `skill.evidence-directed-delivery` | Evidence-directed delivery | Use claim-and-evidence, anti-reward-hacking, bounded recovery, and feedback-only completion rules for non-trivial work. |
|
|
504
587
|
| `skill.hardware-evidence-audit` | Hardware evidence audit | Classify static, simulation, integration, and physical-device evidence without overstating hardware proof. |
|
|
588
|
+
| `skill.omnius-agent-onboarding` | omnius-agent-onboarding | Bootstrap any agent into Omnius, choose the correct entrypoint, locate layer/module/state ownership, and verify live behavior without guessing. |
|
|
505
589
|
| `skill.omnius-docs` | Omnius documentation router | Find the smallest Omnius documentation artifact needed for a question. |
|
|
506
590
|
| `skill.omnius-inference-docs` | Omnius inference documentation | Route provider, protocol, credential, Claude, Gemini, and custom endpoint questions. |
|
|
507
591
|
| `skill.omnius-integration-docs` | Omnius integration documentation | Route agent and service integration through discovery, OpenAPI, provider, tool, auth, and version contracts. |
|
|
@@ -517,6 +601,13 @@ Daemon equivalents are `GET /v1/discovery?q=<intent>` and `GET /v1/discovery/{id
|
|
|
517
601
|
| `skill.test-surface-audit` | Test surface audit | Map canonical tests to claims and expose placeholder, mock-only, copied-logic, and unwired verification gaps. |
|
|
518
602
|
| `skill.workspace-reality-audit` | Workspace reality audit | Audit repository truth, generated artifacts, documentation drift, and delivery ownership before claiming progress. |
|
|
519
603
|
|
|
604
|
+
## Store
|
|
605
|
+
|
|
606
|
+
| ID | Title | Summary |
|
|
607
|
+
| --- | --- | --- |
|
|
608
|
+
| `store.global` | User-global state | Machine/user-scoped Omnius state under ~/.omnius for daemon identity, global configuration and credentials, shared managed environments, model weights, media store, updates, and cross-project registries. |
|
|
609
|
+
| `store.project` | Project-local state | State scoped to one workspace under <project>/.omnius, including sessions, task/run artifacts, project context, indexes, memories, skills, and UI preferences where applicable. |
|
|
610
|
+
|
|
520
611
|
## Tool
|
|
521
612
|
|
|
522
613
|
| ID | Title | Summary |
|
|
@@ -656,3 +747,19 @@ Daemon equivalents are `GET /v1/discovery?q=<intent>` and `GET /v1/discovery/{id
|
|
|
656
747
|
| `tool.working-notes` | Working Notes | working_notes is a directly callable Omnius tool. |
|
|
657
748
|
| `tool.youtube-download` | Youtube Download | youtube_download is an agent-bound Omnius tool available through chat/run tool exposure. |
|
|
658
749
|
|
|
750
|
+
## Workflow
|
|
751
|
+
|
|
752
|
+
| ID | Title | Summary |
|
|
753
|
+
| --- | --- | --- |
|
|
754
|
+
| `workflow.agent-bound-tools` | Use agent-bound tools such as web_search | Offer a non-direct tool to an Omnius agent loop through run/chat instead of inventing a direct REST call. |
|
|
755
|
+
| `workflow.async-agent-run` | Run a long-horizon task through REST | Create an asynchronous agent run, retain its ID, stream or poll evidence, steer/cancel when needed, and verify terminal completion. |
|
|
756
|
+
| `workflow.choose-entrypoint` | Choose the correct Omnius entrypoint | Select TUI, one-shot CLI, REST chat, asynchronous run, OpenAI-compatible completion, or direct tool execution from the caller's lifecycle and state requirements. |
|
|
757
|
+
| `workflow.daemon-tray-update` | Operate daemon, tray, and updates | Ensure one current daemon owns the service port, start the tray against it, install updates through the real global npm flow, stream progress, restart components, and verify the target runtime. |
|
|
758
|
+
| `workflow.debug-runtime` | Debug an Omnius runtime failure | Diagnose from identity and ownership outward: version, health, port/process, live contract, status/events, state scope, logs/evidence, then the owning module. |
|
|
759
|
+
| `workflow.direct-tool-call` | Call a directly exposed tool | Inspect live metadata, confirm direct-call exposure and safety, submit the exact schema, and verify the tool result. |
|
|
760
|
+
| `workflow.extend-omnius` | Extend or modify Omnius safely | Locate the owning layer/module and canonical registry, change the smallest source boundary, update discovery/docs/contracts, and run targeted plus freshness tests. |
|
|
761
|
+
| `workflow.provider-selection` | Select an inference provider and model | Resolve an explicit provider protocol, credentials, endpoint, and model; verify live reachability and hardware placement for local inference. |
|
|
762
|
+
| `workflow.publish-package` | Build and publish the Omnius package | Follow the repository Minimal Publish SOP: clean all workspaces, rebuild, bundle publish/, inspect a local-cache tarball, patch-bump, publish only from publish/, and verify npm metadata. |
|
|
763
|
+
| `workflow.stateful-chat` | Use stateful daemon chat | Create or select a real chat session, send conversational turns, and load its history without treating control commands such as /quit as chats. |
|
|
764
|
+
| `workflow.voice-asr-tts` | Select and use ASR/TTS engines | Discover installed and supported ASR/TTS systems, perform managed setup when needed, activate one exact engine/model/device, and use the documented REST or TUI surface. |
|
|
765
|
+
|