omnius 1.0.592 → 1.0.595
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 +5 -1
- package/dist/index.js +45940 -90
- package/docs/.vitepress/config.mts +1 -0
- package/docs/DISCOVERY.json +187 -0
- package/docs/DISCOVERY.md +4 -0
- package/docs/discovery/catalog-overrides.json +60 -0
- package/docs/guides/osint-research.md +90 -0
- package/docs/index.md +1 -0
- package/npm-shrinkwrap.json +19 -19
- package/package.json +2 -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
package/README.md
CHANGED
|
@@ -41,6 +41,8 @@ omnius discover "bring your own inference"
|
|
|
41
41
|
omnius show provider.anthropic
|
|
42
42
|
omnius show provider.gemini
|
|
43
43
|
omnius show tool.web-search
|
|
44
|
+
omnius discover "osint research"
|
|
45
|
+
omnius show capability.osint-research
|
|
44
46
|
omnius capabilities --json
|
|
45
47
|
```
|
|
46
48
|
|
|
@@ -53,7 +55,9 @@ With the daemon running, the same discovery cascade is available at
|
|
|
53
55
|
Start with [the discovery guide](docs/DISCOVERY.md) when integrating another
|
|
54
56
|
agent or service. Use [bring-your-own inference](docs/guides/bring-your-own-inference.md)
|
|
55
57
|
for provider protocols and keys, and [tools and web search](docs/guides/tools-and-web-search.md)
|
|
56
|
-
for the distinction between direct tools and agent-bound tools.
|
|
58
|
+
for the distinction between direct tools and agent-bound tools. The
|
|
59
|
+
[categorized OSINT research guide](docs/guides/osint-research.md) documents
|
|
60
|
+
the local discover → exact expansion → explicit web-tool workflow.
|
|
57
61
|
|
|
58
62
|
## What Omnius Does
|
|
59
63
|
|