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.
Files changed (40) hide show
  1. package/.aiwg/addons/omnius-docs/README.md +3 -1
  2. package/.aiwg/addons/omnius-docs/manifest.json +4 -2
  3. package/.aiwg/addons/omnius-docs/skills/omnius-agent-onboarding/SKILL.md +70 -0
  4. package/.aiwg/addons/omnius-docs/skills/omnius-docs/SKILL.md +8 -4
  5. package/.aiwg/addons/omnius-rest-docs/README.md +2 -1
  6. package/.aiwg/addons/omnius-rest-docs/skills/omnius-rest-docs/SKILL.md +5 -3
  7. package/README.md +352 -108
  8. package/dist/discovery.d.ts +55 -2
  9. package/dist/index.js +8345 -6382
  10. package/dist/library.d.ts +2 -2
  11. package/dist/library.js +67 -7
  12. package/dist/scripts/vibevoice-asr-worker.py +195 -0
  13. package/dist/update-worker.js +211 -5
  14. package/docs/.vitepress/config.mts +3 -0
  15. package/docs/DISCOVERY.json +27446 -6695
  16. package/docs/DISCOVERY.md +437 -330
  17. package/docs/architecture/agent-system-map.md +176 -0
  18. package/docs/architecture/overview.md +5 -0
  19. package/docs/discovery/agent-map.json +119 -0
  20. package/docs/getting-started/install.md +1 -1
  21. package/docs/guides/agent-integration.md +69 -7
  22. package/docs/guides/dashboard.md +170 -0
  23. package/docs/guides/system-tray.md +28 -0
  24. package/docs/index.md +4 -1
  25. package/docs/reference/configuration.md +10 -0
  26. package/docs/reference/rest-api.md +161 -8
  27. package/docs/reference/slash-commands.md +31 -3
  28. package/docs/rest/INDEX.md +11 -10
  29. package/docs/rest/QUICKREF.md +39 -0
  30. package/docs/rest/endpoints/chat.md +24 -1
  31. package/docs/rest/endpoints/config.md +8 -1
  32. package/docs/rest/endpoints/discovery.md +21 -3
  33. package/docs/rest/endpoints/files.md +7 -2
  34. package/docs/rest/endpoints/memory.md +4 -0
  35. package/docs/rest/endpoints/run.md +17 -4
  36. package/docs/rest/endpoints/voice-vision.md +22 -5
  37. package/npm-shrinkwrap.json +2 -2
  38. package/package.json +6 -3
  39. package/templates/OMNIUS.md +29 -5
  40. package/voices/personaplex/quantize-weights.py +0 -167
@@ -1,4 +1,5 @@
1
- export type DiscoveryKind = "capability" | "provider" | "tool" | "api" | "command" | "skill" | "guide" | "config" | "operation";
1
+ export type DiscoveryKind = "capability" | "layer" | "module" | "workflow" | "runtime" | "store" | "provider" | "tool" | "api" | "command" | "skill" | "guide" | "config" | "operation";
2
+ export declare const DISCOVERY_KINDS: readonly ["capability", "layer", "module", "workflow", "runtime", "store", "provider", "tool", "api", "command", "skill", "guide", "config", "operation"];
2
3
  export interface DiscoveryInterface {
3
4
  type: string;
4
5
  target: string;
@@ -9,6 +10,40 @@ export interface DiscoveryReference {
9
10
  target: string;
10
11
  relation?: string;
11
12
  }
13
+ export interface DiscoveryStep {
14
+ step: string;
15
+ action: string;
16
+ interface?: string;
17
+ expected?: string;
18
+ on_failure?: string;
19
+ }
20
+ export interface DiscoveryExample {
21
+ title?: string;
22
+ command?: string;
23
+ request?: Record<string, unknown>;
24
+ notes?: string;
25
+ }
26
+ export interface DiscoveryFailureMode {
27
+ symptom: string;
28
+ likely_cause: string;
29
+ recovery: string;
30
+ }
31
+ export interface DiscoveryVerification {
32
+ check: string;
33
+ expected: string;
34
+ }
35
+ export interface DiscoveryBootstrap {
36
+ strategy: string[];
37
+ start_here: string[];
38
+ agent_profiles?: Record<string, string[]>;
39
+ common_intents?: Array<{
40
+ intent: string;
41
+ query: string;
42
+ expand?: string;
43
+ }>;
44
+ live_checks?: string[];
45
+ safety_rules?: string[];
46
+ }
12
47
  export interface DiscoveryEntry {
13
48
  id: string;
14
49
  kind: DiscoveryKind;
@@ -17,16 +52,30 @@ export interface DiscoveryEntry {
17
52
  aliases?: string[];
18
53
  keywords?: string[];
19
54
  maturity?: string;
55
+ layer?: string;
56
+ audiences?: string[];
57
+ use_when?: string[];
58
+ avoid_when?: string[];
59
+ inputs?: string[];
60
+ outputs?: string[];
61
+ source_of_truth?: string[];
20
62
  prerequisites?: string[];
21
63
  interfaces?: DiscoveryInterface[];
22
64
  references?: DiscoveryReference[];
23
65
  related?: string[];
66
+ workflow?: DiscoveryStep[];
67
+ examples?: DiscoveryExample[];
68
+ verification?: DiscoveryVerification[];
69
+ failure_modes?: DiscoveryFailureMode[];
70
+ state?: Record<string, unknown>;
71
+ safety?: Record<string, unknown>;
24
72
  [key: string]: unknown;
25
73
  }
26
74
  export interface DiscoveryCatalog {
27
75
  schema_version: string;
28
76
  generated_at?: string;
29
77
  package_version?: string;
78
+ bootstrap?: DiscoveryBootstrap;
30
79
  entries: DiscoveryEntry[];
31
80
  [key: string]: unknown;
32
81
  }
@@ -34,6 +83,9 @@ export interface DiscoveryQueryOptions {
34
83
  kind?: DiscoveryKind;
35
84
  limit?: number;
36
85
  offset?: number;
86
+ audience?: string;
87
+ layer?: string;
88
+ includeInternal?: boolean;
37
89
  }
38
90
  export interface DiscoveryResult {
39
91
  score: number;
@@ -42,9 +94,10 @@ export interface DiscoveryResult {
42
94
  export declare function findDiscoveryCatalogPath(): string | null;
43
95
  export declare function loadDiscoveryCatalog(): DiscoveryCatalog;
44
96
  export declare function discoverCapabilities(query?: string, options?: DiscoveryQueryOptions, catalog?: DiscoveryCatalog): DiscoveryResult[];
45
- export declare function rankCapabilities(query?: string, kind?: DiscoveryKind, catalog?: DiscoveryCatalog): DiscoveryResult[];
97
+ export declare function rankCapabilities(query?: string, kind?: DiscoveryKind, catalog?: DiscoveryCatalog, options?: Pick<DiscoveryQueryOptions, "audience" | "layer" | "includeInternal">): DiscoveryResult[];
46
98
  export declare function showCapability(id: string, catalog?: DiscoveryCatalog): DiscoveryEntry | undefined;
47
99
  export declare function renderDiscoveryEntry(entry: DiscoveryEntry): string;
100
+ export declare function discoveryBootstrap(catalog?: DiscoveryCatalog): DiscoveryBootstrap;
48
101
  export declare function discoverySchemaVersion(): string;
49
102
  export declare function discoveryDocsRoot(): string | null;
50
103
  //# sourceMappingURL=discovery.d.ts.map