omnius 1.0.595 → 1.0.596
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/README.md +12 -0
- package/assets/tray/omnius-checking.ico +0 -0
- package/assets/tray/omnius-checking.png +0 -0
- package/assets/tray/omnius-checking.svg +5 -0
- package/assets/tray/omnius-offline.ico +0 -0
- package/assets/tray/omnius-offline.png +0 -0
- package/assets/tray/omnius-offline.svg +5 -0
- package/assets/tray/omnius-online.ico +0 -0
- package/assets/tray/omnius-online.png +0 -0
- package/assets/tray/omnius-online.svg +5 -0
- package/dist/index.js +5163 -4318
- package/docs/.vitepress/config.mts +1 -0
- package/docs/DISCOVERY.json +26 -0
- package/docs/DISCOVERY.md +1 -0
- package/docs/guides/system-tray.md +85 -0
- package/docs/index.md +1 -0
- package/npm-shrinkwrap.json +123 -70
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -30,6 +30,17 @@ omnius serve
|
|
|
30
30
|
|
|
31
31
|
The daemon defaults to `http://127.0.0.1:11435`. Open the interactive API docs at `http://127.0.0.1:11435/docs`.
|
|
32
32
|
|
|
33
|
+
Register the native system tray indicator (Linux, macOS, and Windows x64):
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
omnius tray install
|
|
37
|
+
omnius tray status
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
The per-login indicator observes the daemon over loopback and provides health,
|
|
41
|
+
dashboard, logs, and explicit daemon controls. See the
|
|
42
|
+
[system tray guide](docs/guides/system-tray.md), including Ubuntu/GNOME setup.
|
|
43
|
+
|
|
33
44
|
## Agent Discovery
|
|
34
45
|
|
|
35
46
|
The npm package ships its complete documentation and a machine-readable
|
|
@@ -101,6 +112,7 @@ omnius serve
|
|
|
101
112
|
| Tools and web search | [Tool discovery and invocation](docs/guides/tools-and-web-search.md) |
|
|
102
113
|
| Terminal workflows | [TUI workflows](docs/guides/tui-workflows.md), [Slash commands](docs/reference/slash-commands.md) |
|
|
103
114
|
| REST daemon | [REST reference](docs/reference/rest-api.md), [REST quickref](docs/rest/QUICKREF.md), [OpenAPI source](docs/rest/openapi-source.md) |
|
|
115
|
+
| System tray | [Cross-platform tray and Ubuntu setup](docs/guides/system-tray.md) |
|
|
104
116
|
| Realtime voice chat | [Realtime guide](docs/guides/realtime.md) |
|
|
105
117
|
| Sponsor and COHERE mesh | [Sponsor and COHERE guide](docs/guides/sponsor-and-cohere.md) |
|
|
106
118
|
| Telegram bridge | [Telegram guide](docs/guides/telegram.md) |
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
|
2
|
+
<circle cx="32" cy="32" r="29" fill="#111827" stroke="#38bdf8" stroke-width="4"/>
|
|
3
|
+
<path d="M14 32c6-12 12-12 18 0s12 12 18 0-12-12-18 0-12 12-18 0Z" fill="none" stroke="#e0f2fe" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
|
|
4
|
+
<circle cx="51" cy="51" r="9" fill="#f59e0b" stroke="#111827" stroke-width="4"/>
|
|
5
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
|
2
|
+
<circle cx="32" cy="32" r="29" fill="#111827" stroke="#64748b" stroke-width="4"/>
|
|
3
|
+
<path d="M14 32c6-12 12-12 18 0s12 12 18 0-12-12-18 0-12 12-18 0Z" fill="none" stroke="#cbd5e1" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
|
|
4
|
+
<circle cx="51" cy="51" r="9" fill="#64748b" stroke="#111827" stroke-width="4"/>
|
|
5
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
|
2
|
+
<circle cx="32" cy="32" r="29" fill="#111827" stroke="#22d3ee" stroke-width="4"/>
|
|
3
|
+
<path d="M14 32c6-12 12-12 18 0s12 12 18 0-12-12-18 0-12 12-18 0Z" fill="none" stroke="#e0f2fe" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
|
|
4
|
+
<circle cx="51" cy="51" r="9" fill="#22c55e" stroke="#111827" stroke-width="4"/>
|
|
5
|
+
</svg>
|