omnius 1.0.594 → 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 +17 -1
- 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 +52943 -6255
- package/docs/.vitepress/config.mts +2 -0
- package/docs/DISCOVERY.json +213 -0
- package/docs/DISCOVERY.md +5 -0
- package/docs/discovery/catalog-overrides.json +60 -0
- package/docs/guides/osint-research.md +90 -0
- package/docs/guides/system-tray.md +85 -0
- package/docs/index.md +2 -0
- package/npm-shrinkwrap.json +129 -76
- package/package.json +4 -2
- package/prompts/agentic/system-large.md +1 -0
- package/prompts/agentic/system-medium.md +1 -0
- package/prompts/agentic/system-small.md +1 -0
- package/prompts/templates/analysis.md +7 -1
|
@@ -53,12 +53,14 @@ export default defineConfig({
|
|
|
53
53
|
items: [
|
|
54
54
|
{ text: "Bring Your Own Inference", link: "/guides/bring-your-own-inference" },
|
|
55
55
|
{ text: "Tools And Web Search", link: "/guides/tools-and-web-search" },
|
|
56
|
+
{ text: "Categorized OSINT Research", link: "/guides/osint-research" },
|
|
56
57
|
{ text: "Agent Integration", link: "/guides/agent-integration" },
|
|
57
58
|
{ text: "TUI Workflows", link: "/guides/tui-workflows" },
|
|
58
59
|
{ text: "Sponsor And COHERE", link: "/guides/sponsor-and-cohere" },
|
|
59
60
|
{ text: "Realtime Conversation", link: "/guides/realtime" },
|
|
60
61
|
{ text: "Telegram", link: "/guides/telegram" },
|
|
61
62
|
{ text: "Media Generation", link: "/guides/media-generation" },
|
|
63
|
+
{ text: "System Tray Indicator", link: "/guides/system-tray" },
|
|
62
64
|
],
|
|
63
65
|
},
|
|
64
66
|
{
|
package/docs/DISCOVERY.json
CHANGED
|
@@ -5771,6 +5771,65 @@
|
|
|
5771
5771
|
"operation.version-compatibility"
|
|
5772
5772
|
]
|
|
5773
5773
|
},
|
|
5774
|
+
{
|
|
5775
|
+
"id": "capability.osint-research",
|
|
5776
|
+
"kind": "capability",
|
|
5777
|
+
"title": "Categorized OSINT research",
|
|
5778
|
+
"summary": "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.",
|
|
5779
|
+
"aliases": [
|
|
5780
|
+
"OSINT",
|
|
5781
|
+
"OSINT4ALL",
|
|
5782
|
+
"long-haul research",
|
|
5783
|
+
"open source intelligence"
|
|
5784
|
+
],
|
|
5785
|
+
"keywords": [
|
|
5786
|
+
"research",
|
|
5787
|
+
"catalog",
|
|
5788
|
+
"search",
|
|
5789
|
+
"provenance",
|
|
5790
|
+
"corroboration",
|
|
5791
|
+
"identity",
|
|
5792
|
+
"social",
|
|
5793
|
+
"network",
|
|
5794
|
+
"geospatial"
|
|
5795
|
+
],
|
|
5796
|
+
"maturity": "stable",
|
|
5797
|
+
"prerequisites": [
|
|
5798
|
+
"Legitimate research purpose",
|
|
5799
|
+
"Authorization for active or sensitive target interaction"
|
|
5800
|
+
],
|
|
5801
|
+
"interfaces": [
|
|
5802
|
+
{
|
|
5803
|
+
"type": "agent-tool",
|
|
5804
|
+
"target": "osint_search",
|
|
5805
|
+
"description": "Compact deterministic local discovery"
|
|
5806
|
+
},
|
|
5807
|
+
{
|
|
5808
|
+
"type": "agent-tool",
|
|
5809
|
+
"target": "osint_show",
|
|
5810
|
+
"description": "Exact resource expansion"
|
|
5811
|
+
}
|
|
5812
|
+
],
|
|
5813
|
+
"references": [
|
|
5814
|
+
{
|
|
5815
|
+
"type": "guide",
|
|
5816
|
+
"target": "docs/guides/osint-research.md",
|
|
5817
|
+
"relation": "canonical-guide"
|
|
5818
|
+
},
|
|
5819
|
+
{
|
|
5820
|
+
"type": "source",
|
|
5821
|
+
"target": "packages/execution/src/tools/osint-catalog-data.ts",
|
|
5822
|
+
"relation": "generated-catalog"
|
|
5823
|
+
}
|
|
5824
|
+
],
|
|
5825
|
+
"related": [
|
|
5826
|
+
"tool.osint-search",
|
|
5827
|
+
"tool.osint-show",
|
|
5828
|
+
"tool.web-search",
|
|
5829
|
+
"tool.web-fetch",
|
|
5830
|
+
"tool.web-crawl"
|
|
5831
|
+
]
|
|
5832
|
+
},
|
|
5774
5833
|
{
|
|
5775
5834
|
"id": "command.access",
|
|
5776
5835
|
"kind": "command",
|
|
@@ -10866,6 +10925,32 @@
|
|
|
10866
10925
|
}
|
|
10867
10926
|
]
|
|
10868
10927
|
},
|
|
10928
|
+
{
|
|
10929
|
+
"id": "guide.guides-osint-research",
|
|
10930
|
+
"kind": "guide",
|
|
10931
|
+
"title": "Categorized OSINT research",
|
|
10932
|
+
"summary": "Bundled Omnius documentation artifact: docs/guides/osint-research.md.",
|
|
10933
|
+
"keywords": [
|
|
10934
|
+
"guides",
|
|
10935
|
+
"osint",
|
|
10936
|
+
"research",
|
|
10937
|
+
"md"
|
|
10938
|
+
],
|
|
10939
|
+
"maturity": "stable",
|
|
10940
|
+
"interfaces": [
|
|
10941
|
+
{
|
|
10942
|
+
"type": "file",
|
|
10943
|
+
"target": "docs/guides/osint-research.md"
|
|
10944
|
+
}
|
|
10945
|
+
],
|
|
10946
|
+
"references": [
|
|
10947
|
+
{
|
|
10948
|
+
"type": "documentation",
|
|
10949
|
+
"target": "docs/guides/osint-research.md",
|
|
10950
|
+
"relation": "canonical-artifact"
|
|
10951
|
+
}
|
|
10952
|
+
]
|
|
10953
|
+
},
|
|
10869
10954
|
{
|
|
10870
10955
|
"id": "guide.guides-realtime",
|
|
10871
10956
|
"kind": "guide",
|
|
@@ -10918,6 +11003,32 @@
|
|
|
10918
11003
|
}
|
|
10919
11004
|
]
|
|
10920
11005
|
},
|
|
11006
|
+
{
|
|
11007
|
+
"id": "guide.guides-system-tray",
|
|
11008
|
+
"kind": "guide",
|
|
11009
|
+
"title": "System Tray Indicator",
|
|
11010
|
+
"summary": "Bundled Omnius documentation artifact: docs/guides/system-tray.md.",
|
|
11011
|
+
"keywords": [
|
|
11012
|
+
"guides",
|
|
11013
|
+
"system",
|
|
11014
|
+
"tray",
|
|
11015
|
+
"md"
|
|
11016
|
+
],
|
|
11017
|
+
"maturity": "stable",
|
|
11018
|
+
"interfaces": [
|
|
11019
|
+
{
|
|
11020
|
+
"type": "file",
|
|
11021
|
+
"target": "docs/guides/system-tray.md"
|
|
11022
|
+
}
|
|
11023
|
+
],
|
|
11024
|
+
"references": [
|
|
11025
|
+
{
|
|
11026
|
+
"type": "documentation",
|
|
11027
|
+
"target": "docs/guides/system-tray.md",
|
|
11028
|
+
"relation": "canonical-artifact"
|
|
11029
|
+
}
|
|
11030
|
+
]
|
|
11031
|
+
},
|
|
10921
11032
|
{
|
|
10922
11033
|
"id": "guide.guides-telegram",
|
|
10923
11034
|
"kind": "guide",
|
|
@@ -13807,6 +13918,7 @@
|
|
|
13807
13918
|
],
|
|
13808
13919
|
"related": [
|
|
13809
13920
|
"capability.bring-your-own-inference",
|
|
13921
|
+
"capability.osint-research",
|
|
13810
13922
|
"api.discovery",
|
|
13811
13923
|
"api.tools",
|
|
13812
13924
|
"operation.version-compatibility"
|
|
@@ -18273,6 +18385,107 @@
|
|
|
18273
18385
|
],
|
|
18274
18386
|
"direct_callable": false
|
|
18275
18387
|
},
|
|
18388
|
+
{
|
|
18389
|
+
"id": "tool.osint-search",
|
|
18390
|
+
"kind": "tool",
|
|
18391
|
+
"title": "OSINT Search",
|
|
18392
|
+
"summary": "Search the bundled OSINT4ALL snapshot locally and return a bounded ranked shortlist with category, archived-health, interaction, and risk metadata; no cataloged service is contacted.",
|
|
18393
|
+
"aliases": [
|
|
18394
|
+
"osint_search",
|
|
18395
|
+
"OSINT catalog search"
|
|
18396
|
+
],
|
|
18397
|
+
"keywords": [
|
|
18398
|
+
"OSINT4ALL",
|
|
18399
|
+
"local index",
|
|
18400
|
+
"top-k",
|
|
18401
|
+
"77 categories",
|
|
18402
|
+
"1446 resources",
|
|
18403
|
+
"1456 placements"
|
|
18404
|
+
],
|
|
18405
|
+
"interfaces": [
|
|
18406
|
+
{
|
|
18407
|
+
"type": "rest-schema",
|
|
18408
|
+
"target": "/v1/tools/osint_search"
|
|
18409
|
+
},
|
|
18410
|
+
{
|
|
18411
|
+
"type": "agent-run",
|
|
18412
|
+
"target": "/v1/run"
|
|
18413
|
+
},
|
|
18414
|
+
{
|
|
18415
|
+
"type": "agent-chat",
|
|
18416
|
+
"target": "/v1/chat/completions"
|
|
18417
|
+
}
|
|
18418
|
+
],
|
|
18419
|
+
"references": [
|
|
18420
|
+
{
|
|
18421
|
+
"type": "source",
|
|
18422
|
+
"target": "packages/execution/src/tools/osint-catalog.ts",
|
|
18423
|
+
"relation": "implementation"
|
|
18424
|
+
},
|
|
18425
|
+
{
|
|
18426
|
+
"type": "guide",
|
|
18427
|
+
"target": "docs/guides/osint-research.md",
|
|
18428
|
+
"relation": "usage"
|
|
18429
|
+
}
|
|
18430
|
+
],
|
|
18431
|
+
"direct_callable": false,
|
|
18432
|
+
"maturity": "stable",
|
|
18433
|
+
"related": [
|
|
18434
|
+
"capability.osint-research",
|
|
18435
|
+
"tool.osint-show"
|
|
18436
|
+
]
|
|
18437
|
+
},
|
|
18438
|
+
{
|
|
18439
|
+
"id": "tool.osint-show",
|
|
18440
|
+
"kind": "tool",
|
|
18441
|
+
"title": "OSINT Show",
|
|
18442
|
+
"summary": "Expand one exact local OSINT resource ID into its URL, aliases, original category placements, archived health, and safe next-tool route; no cataloged service is contacted.",
|
|
18443
|
+
"aliases": [
|
|
18444
|
+
"osint_show",
|
|
18445
|
+
"OSINT resource expansion"
|
|
18446
|
+
],
|
|
18447
|
+
"keywords": [
|
|
18448
|
+
"OSINT4ALL",
|
|
18449
|
+
"exact lookup",
|
|
18450
|
+
"provenance",
|
|
18451
|
+
"risk",
|
|
18452
|
+
"archived health"
|
|
18453
|
+
],
|
|
18454
|
+
"interfaces": [
|
|
18455
|
+
{
|
|
18456
|
+
"type": "rest-schema",
|
|
18457
|
+
"target": "/v1/tools/osint_show"
|
|
18458
|
+
},
|
|
18459
|
+
{
|
|
18460
|
+
"type": "agent-run",
|
|
18461
|
+
"target": "/v1/run"
|
|
18462
|
+
},
|
|
18463
|
+
{
|
|
18464
|
+
"type": "agent-chat",
|
|
18465
|
+
"target": "/v1/chat/completions"
|
|
18466
|
+
}
|
|
18467
|
+
],
|
|
18468
|
+
"references": [
|
|
18469
|
+
{
|
|
18470
|
+
"type": "source",
|
|
18471
|
+
"target": "packages/execution/src/tools/osint-catalog.ts",
|
|
18472
|
+
"relation": "implementation"
|
|
18473
|
+
},
|
|
18474
|
+
{
|
|
18475
|
+
"type": "guide",
|
|
18476
|
+
"target": "docs/guides/osint-research.md",
|
|
18477
|
+
"relation": "usage"
|
|
18478
|
+
}
|
|
18479
|
+
],
|
|
18480
|
+
"direct_callable": false,
|
|
18481
|
+
"maturity": "stable",
|
|
18482
|
+
"related": [
|
|
18483
|
+
"capability.osint-research",
|
|
18484
|
+
"tool.osint-search",
|
|
18485
|
+
"tool.web-fetch",
|
|
18486
|
+
"tool.web-crawl"
|
|
18487
|
+
]
|
|
18488
|
+
},
|
|
18276
18489
|
{
|
|
18277
18490
|
"id": "tool.pdf-to-text",
|
|
18278
18491
|
"kind": "tool",
|
package/docs/DISCOVERY.md
CHANGED
|
@@ -179,6 +179,7 @@ Daemon equivalents are `GET /v1/discovery?q=<intent>` and `GET /v1/discovery/{id
|
|
|
179
179
|
| `addon.omnius-docs` | Omnius Documentation | Project-local Omnius documentation bundle for discover-then-expand agent workflows. |
|
|
180
180
|
| `addon.omnius-rest-docs` | Omnius REST Documentation | Project-local Omnius REST API documentation bundle for discover-then-expand agent workflows. |
|
|
181
181
|
| `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. |
|
|
182
|
+
| `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. |
|
|
182
183
|
| `overview` | Omnius capability overview | Start here to discover Omnius providers, tools, APIs, commands, skills, configuration, operations, and shipped documentation. |
|
|
183
184
|
|
|
184
185
|
## Command
|
|
@@ -357,8 +358,10 @@ Daemon equivalents are `GET /v1/discovery?q=<intent>` and `GET /v1/discovery/{id
|
|
|
357
358
|
| `guide.guides-agent-integration` | Agent And Service Integration | Bundled Omnius documentation artifact: docs/guides/agent-integration.md. |
|
|
358
359
|
| `guide.guides-bring-your-own-inference` | Bring Your Own Inference | Bundled Omnius documentation artifact: docs/guides/bring-your-own-inference.md. |
|
|
359
360
|
| `guide.guides-media-generation` | Media Generation | Bundled Omnius documentation artifact: docs/guides/media-generation.md. |
|
|
361
|
+
| `guide.guides-osint-research` | Categorized OSINT research | Bundled Omnius documentation artifact: docs/guides/osint-research.md. |
|
|
360
362
|
| `guide.guides-realtime` | Realtime Conversations | Bundled Omnius documentation artifact: docs/guides/realtime.md. |
|
|
361
363
|
| `guide.guides-sponsor-and-cohere` | Sponsor And COHERE Mesh | Bundled Omnius documentation artifact: docs/guides/sponsor-and-cohere.md. |
|
|
364
|
+
| `guide.guides-system-tray` | System Tray Indicator | Bundled Omnius documentation artifact: docs/guides/system-tray.md. |
|
|
362
365
|
| `guide.guides-telegram` | Telegram Bridge | Bundled Omnius documentation artifact: docs/guides/telegram.md. |
|
|
363
366
|
| `guide.guides-tools-and-web-search` | Tools And Web Search | Bundled Omnius documentation artifact: docs/guides/tools-and-web-search.md. |
|
|
364
367
|
| `guide.guides-tui-workflows` | TUI Workflows | Bundled Omnius documentation artifact: docs/guides/tui-workflows.md. |
|
|
@@ -591,6 +594,8 @@ Daemon equivalents are `GET /v1/discovery?q=<intent>` and `GET /v1/discovery/{id
|
|
|
591
594
|
| `tool.ocr-image-advanced` | Ocr Image Advanced | ocr_image_advanced is an agent-bound Omnius tool available through chat/run tool exposure. |
|
|
592
595
|
| `tool.ocr-pdf` | Ocr Pdf | ocr_pdf is an agent-bound Omnius tool available through chat/run tool exposure. |
|
|
593
596
|
| `tool.opencode` | Opencode | opencode is an agent-bound Omnius tool available through chat/run tool exposure. |
|
|
597
|
+
| `tool.osint-search` | OSINT Search | Search the bundled OSINT4ALL snapshot locally and return a bounded ranked shortlist with category, archived-health, interaction, and risk metadata; no cataloged service is contacted. |
|
|
598
|
+
| `tool.osint-show` | OSINT Show | Expand one exact local OSINT resource ID into its URL, aliases, original category placements, archived health, and safe next-tool route; no cataloged service is contacted. |
|
|
594
599
|
| `tool.pdf-to-text` | Pdf To Text | pdf_to_text is an agent-bound Omnius tool available through chat/run tool exposure. |
|
|
595
600
|
| `tool.pdf-visual-markdown` | Pdf Visual Markdown | pdf_visual_markdown is an agent-bound Omnius tool available through chat/run tool exposure. |
|
|
596
601
|
| `tool.phase-recall` | Phase Recall | phase_recall is an agent-bound Omnius tool available through chat/run tool exposure. |
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"related": [
|
|
22
22
|
"capability.bring-your-own-inference",
|
|
23
|
+
"capability.osint-research",
|
|
23
24
|
"api.discovery",
|
|
24
25
|
"api.tools",
|
|
25
26
|
"operation.version-compatibility"
|
|
@@ -87,6 +88,65 @@
|
|
|
87
88
|
"operation.version-compatibility"
|
|
88
89
|
]
|
|
89
90
|
},
|
|
91
|
+
{
|
|
92
|
+
"id": "capability.osint-research",
|
|
93
|
+
"kind": "capability",
|
|
94
|
+
"title": "Categorized OSINT research",
|
|
95
|
+
"summary": "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.",
|
|
96
|
+
"aliases": ["OSINT", "OSINT4ALL", "long-haul research", "open source intelligence"],
|
|
97
|
+
"keywords": ["research", "catalog", "search", "provenance", "corroboration", "identity", "social", "network", "geospatial"],
|
|
98
|
+
"maturity": "stable",
|
|
99
|
+
"prerequisites": ["Legitimate research purpose", "Authorization for active or sensitive target interaction"],
|
|
100
|
+
"interfaces": [
|
|
101
|
+
{"type": "agent-tool", "target": "osint_search", "description": "Compact deterministic local discovery"},
|
|
102
|
+
{"type": "agent-tool", "target": "osint_show", "description": "Exact resource expansion"}
|
|
103
|
+
],
|
|
104
|
+
"references": [
|
|
105
|
+
{"type": "guide", "target": "docs/guides/osint-research.md", "relation": "canonical-guide"},
|
|
106
|
+
{"type": "source", "target": "packages/execution/src/tools/osint-catalog-data.ts", "relation": "generated-catalog"}
|
|
107
|
+
],
|
|
108
|
+
"related": ["tool.osint-search", "tool.osint-show", "tool.web-search", "tool.web-fetch", "tool.web-crawl"]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "tool.osint-search",
|
|
112
|
+
"kind": "tool",
|
|
113
|
+
"title": "OSINT Search",
|
|
114
|
+
"summary": "Search the bundled OSINT4ALL snapshot locally and return a bounded ranked shortlist with category, archived-health, interaction, and risk metadata; no cataloged service is contacted.",
|
|
115
|
+
"aliases": ["osint_search", "OSINT catalog search"],
|
|
116
|
+
"keywords": ["OSINT4ALL", "local index", "top-k", "77 categories", "1446 resources", "1456 placements"],
|
|
117
|
+
"maturity": "stable",
|
|
118
|
+
"interfaces": [
|
|
119
|
+
{"type": "rest-schema", "target": "/v1/tools/osint_search"},
|
|
120
|
+
{"type": "agent-run", "target": "/v1/run"},
|
|
121
|
+
{"type": "agent-chat", "target": "/v1/chat/completions"}
|
|
122
|
+
],
|
|
123
|
+
"references": [
|
|
124
|
+
{"type": "source", "target": "packages/execution/src/tools/osint-catalog.ts", "relation": "implementation"},
|
|
125
|
+
{"type": "guide", "target": "docs/guides/osint-research.md", "relation": "usage"}
|
|
126
|
+
],
|
|
127
|
+
"related": ["capability.osint-research", "tool.osint-show"],
|
|
128
|
+
"direct_callable": false
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"id": "tool.osint-show",
|
|
132
|
+
"kind": "tool",
|
|
133
|
+
"title": "OSINT Show",
|
|
134
|
+
"summary": "Expand one exact local OSINT resource ID into its URL, aliases, original category placements, archived health, and safe next-tool route; no cataloged service is contacted.",
|
|
135
|
+
"aliases": ["osint_show", "OSINT resource expansion"],
|
|
136
|
+
"keywords": ["OSINT4ALL", "exact lookup", "provenance", "risk", "archived health"],
|
|
137
|
+
"maturity": "stable",
|
|
138
|
+
"interfaces": [
|
|
139
|
+
{"type": "rest-schema", "target": "/v1/tools/osint_show"},
|
|
140
|
+
{"type": "agent-run", "target": "/v1/run"},
|
|
141
|
+
{"type": "agent-chat", "target": "/v1/chat/completions"}
|
|
142
|
+
],
|
|
143
|
+
"references": [
|
|
144
|
+
{"type": "source", "target": "packages/execution/src/tools/osint-catalog.ts", "relation": "implementation"},
|
|
145
|
+
{"type": "guide", "target": "docs/guides/osint-research.md", "relation": "usage"}
|
|
146
|
+
],
|
|
147
|
+
"related": ["capability.osint-research", "tool.osint-search", "tool.web-fetch", "tool.web-crawl"],
|
|
148
|
+
"direct_callable": false
|
|
149
|
+
},
|
|
90
150
|
{
|
|
91
151
|
"id": "provider.ollama",
|
|
92
152
|
"kind": "provider",
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# Categorized OSINT research
|
|
2
|
+
|
|
3
|
+
Omnius ships a local, searchable snapshot of the
|
|
4
|
+
[OSINT4ALL Start.me page](https://start.me/p/L1rEYQ/osint4all). It uses the
|
|
5
|
+
same compact discovery pattern as AIWG skills:
|
|
6
|
+
|
|
7
|
+
1. `osint_search` ranks a small candidate set from local metadata.
|
|
8
|
+
2. `osint_show` expands one exact resource.
|
|
9
|
+
3. The agent explicitly selects `web_fetch`, `web_crawl`,
|
|
10
|
+
`playwright_browser`, or another appropriate tool.
|
|
11
|
+
4. Research findings keep their fetched-source provenance and are
|
|
12
|
+
corroborated independently.
|
|
13
|
+
|
|
14
|
+
The full catalog is never injected into the model prompt.
|
|
15
|
+
|
|
16
|
+
## Catalog coverage
|
|
17
|
+
|
|
18
|
+
The bundled snapshot contains:
|
|
19
|
+
|
|
20
|
+
- 77 Start.me bookmark categories
|
|
21
|
+
- 1,456 source placements
|
|
22
|
+
- 1,446 normalized canonical resources
|
|
23
|
+
- every original Start.me bookmark item ID, category, position, title, and URL
|
|
24
|
+
- duplicate placements retained as provenance on the canonical resource
|
|
25
|
+
- Start.me's archived HTTP result code for each resource
|
|
26
|
+
|
|
27
|
+
Transient RSS stories and the world-clock widget are not bookmarks and are not
|
|
28
|
+
part of the tool catalog.
|
|
29
|
+
|
|
30
|
+
The generated data records the source hash and a placement hash. Tests assert
|
|
31
|
+
the exact counts, contiguous source ordinals, unique bookmark IDs, duplicate
|
|
32
|
+
mapping, category totals, and deterministic search behavior.
|
|
33
|
+
|
|
34
|
+
## Agent usage
|
|
35
|
+
|
|
36
|
+
Search by need, entity type, service, category, family, domain, or URL
|
|
37
|
+
fragment:
|
|
38
|
+
|
|
39
|
+
```json
|
|
40
|
+
{
|
|
41
|
+
"query": "reverse image face search",
|
|
42
|
+
"family": "media",
|
|
43
|
+
"health": "live",
|
|
44
|
+
"limit": 5
|
|
45
|
+
}
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
`osint_search` returns compact IDs such as `osint.268396782`. Expand only the
|
|
49
|
+
candidate you intend to use:
|
|
50
|
+
|
|
51
|
+
```json
|
|
52
|
+
{
|
|
53
|
+
"id": "osint.268396782"
|
|
54
|
+
}
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
`osint_show` returns the resource URL, aliases, category placements, access
|
|
58
|
+
mode, interaction/risk guidance, and a recommended next-tool route. Both
|
|
59
|
+
catalog tools are local read-only operations and make no network requests.
|
|
60
|
+
|
|
61
|
+
## Health and safety semantics
|
|
62
|
+
|
|
63
|
+
Catalog health is an archived Start.me link-check result. It is useful for
|
|
64
|
+
routing, but it is not proof that a resource works now:
|
|
65
|
+
|
|
66
|
+
- `live`: archived 2xx/3xx response
|
|
67
|
+
- `restricted`: archived authentication, bot-protection, rate-limit, or
|
|
68
|
+
method-friction response
|
|
69
|
+
- `dead`: archived 404/410 response
|
|
70
|
+
- `unknown`: timeout, server error, nonstandard failure, or missing result
|
|
71
|
+
|
|
72
|
+
The index contains public links to sensitive and dual-use resources. Discovery
|
|
73
|
+
does not authorize target interaction. Active or sensitive records are labeled
|
|
74
|
+
so the agent can require a legitimate purpose, applicable authorization, and
|
|
75
|
+
terms/legal review before choosing a network or browser tool.
|
|
76
|
+
|
|
77
|
+
## Rebuilding the snapshot
|
|
78
|
+
|
|
79
|
+
Fetch or restore the Start.me page-data JSON. The bundled provenance points to
|
|
80
|
+
the exact
|
|
81
|
+
[2026-07-21 archived page-data snapshot](https://web.archive.org/web/20260721182214id_/https://start.me/p/L1rEYQ.json?xpv=1)
|
|
82
|
+
used for this build. Then run:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
node scripts/build-osint-catalog.mjs --source /path/to/L1rEYQ.json
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
The source must contain exactly 77 URL-list categories and all 1,456 source
|
|
89
|
+
placements. The generator refuses partial or structurally changed inputs
|
|
90
|
+
instead of silently publishing an incomplete index.
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# System Tray Indicator
|
|
2
|
+
|
|
3
|
+
Omnius ships a native per-login tray indicator for Linux, macOS, and Windows
|
|
4
|
+
on x64 hosts. It is separate from the REST daemon: closing the indicator never
|
|
5
|
+
stops the daemon, and the daemon remains usable in headless sessions.
|
|
6
|
+
|
|
7
|
+
## Install And Control
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
omnius tray install # register login startup and start now
|
|
11
|
+
omnius tray status # indicator, health, endpoint, registration
|
|
12
|
+
omnius tray restart
|
|
13
|
+
omnius tray stop # stop only the indicator
|
|
14
|
+
omnius tray uninstall # stop it and remove login startup
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
The indicator polls the daemon's loopback-only `GET /health` route. It does not
|
|
18
|
+
load a model or contact the configured inference backend. If the daemon uses a
|
|
19
|
+
non-default port, Omnius discovers `OMNIUS_HOST`/`OMNIUS_PORT` from the current
|
|
20
|
+
environment and, on Linux, from the installed user service. Override it
|
|
21
|
+
explicitly when needed:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
omnius tray install --endpoint http://127.0.0.1:11535
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Non-loopback endpoints are rejected. The menu provides the current health and
|
|
28
|
+
version, dashboard and log shortcuts, service-manager-aware daemon controls,
|
|
29
|
+
login-startup control, and **Quit indicator**. Daemon stop is a separate,
|
|
30
|
+
explicit menu action.
|
|
31
|
+
|
|
32
|
+
## Linux / Ubuntu
|
|
33
|
+
|
|
34
|
+
GNOME needs a StatusNotifier/AppIndicator host. Ubuntu Desktop normally ships
|
|
35
|
+
the `gnome-shell-extension-appindicator` extension; the native helper uses
|
|
36
|
+
Ayatana AppIndicator when available. On a minimal installation:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
sudo apt install gnome-shell-extension-appindicator libayatana-appindicator3-1
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Verify the desktop host without touching the daemon:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
gdbus call --session \
|
|
46
|
+
--dest org.kde.StatusNotifierWatcher \
|
|
47
|
+
--object-path /StatusNotifierWatcher \
|
|
48
|
+
--method org.freedesktop.DBus.Properties.Get \
|
|
49
|
+
org.kde.StatusNotifierWatcher IsStatusNotifierHostRegistered
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Login registration is written to
|
|
53
|
+
`~/.config/autostart/omnius-tray.desktop`. Runtime PID/state stays under
|
|
54
|
+
`$XDG_RUNTIME_DIR/omnius`; logs are under
|
|
55
|
+
`$XDG_STATE_HOME/omnius` (usually `~/.local/state/omnius`). This avoids tying a
|
|
56
|
+
desktop process to the daemon's persistent `~/.omnius` data directory.
|
|
57
|
+
|
|
58
|
+
## Platform Registration
|
|
59
|
+
|
|
60
|
+
| Platform | Login registration |
|
|
61
|
+
| --- | --- |
|
|
62
|
+
| Linux | XDG autostart desktop entry |
|
|
63
|
+
| macOS | `~/Library/LaunchAgents/ai.omnius.tray.plist` |
|
|
64
|
+
| Windows | per-user Startup-folder command |
|
|
65
|
+
|
|
66
|
+
The optional native helper is exact-pinned and its platform executable is
|
|
67
|
+
checked against a release SHA-256 before execution. Omnius remains usable when
|
|
68
|
+
optional dependencies are disabled; only the tray command reports the missing
|
|
69
|
+
helper. The current helper release targets x64. Other architectures fail with
|
|
70
|
+
an explicit diagnostic instead of falling back to a headless or emulated tray.
|
|
71
|
+
|
|
72
|
+
## Troubleshooting
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
omnius tray status --json
|
|
76
|
+
tail -f ~/.local/state/omnius/tray.err.log # Linux default
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
- **No icon on GNOME:** confirm the AppIndicator extension is active and the
|
|
80
|
+
session watcher reports a registered host.
|
|
81
|
+
- **Offline despite a running daemon:** pass the daemon's loopback endpoint
|
|
82
|
+
with `--endpoint`; avoid `0.0.0.0` in client URLs.
|
|
83
|
+
- **No graphical session:** run `omnius tray start` from the logged-in desktop
|
|
84
|
+
session so `DISPLAY`/`WAYLAND_DISPLAY` and the session D-Bus address exist.
|
|
85
|
+
|
package/docs/index.md
CHANGED
|
@@ -27,7 +27,9 @@ current task.
|
|
|
27
27
|
- [Realtime Conversation](./guides/realtime.md)
|
|
28
28
|
- [Telegram](./guides/telegram.md)
|
|
29
29
|
- [Media Generation](./guides/media-generation.md)
|
|
30
|
+
- [System Tray Indicator](./guides/system-tray.md)
|
|
30
31
|
- [Tools And Web Search](./guides/tools-and-web-search.md)
|
|
32
|
+
- [Categorized OSINT Research](./guides/osint-research.md)
|
|
31
33
|
|
|
32
34
|
## Reference
|
|
33
35
|
|