open-multi-agent-kit 0.78.6 → 0.78.7
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/AGENTS.md +1 -1
- package/CHANGELOG.md +26 -0
- package/MATURITY.md +2 -2
- package/README.md +19 -4
- package/dist/brand/night-city.theme.json +80 -0
- package/dist/brand/palette.d.ts +73 -177
- package/dist/brand/palette.js +115 -39
- package/dist/brand/rust-forge.theme.json +216 -0
- package/dist/brand/theme-compiled.d.ts +61 -0
- package/dist/brand/theme-compiled.js +241 -0
- package/dist/brand/theme.js +50 -37
- package/dist/cli/release-promotion-gate.d.ts +8 -1
- package/dist/cli/release-promotion-gate.js +20 -9
- package/dist/cli/root.d.ts +1 -0
- package/dist/cli/root.js +2 -1
- package/dist/cli/theme/index.d.ts +11 -2
- package/dist/cli/theme/index.js +6 -1
- package/dist/cli/theme/oklab-quantize.d.ts +29 -0
- package/dist/cli/theme/oklab-quantize.js +105 -0
- package/dist/cli/theme/render-table.d.ts +59 -0
- package/dist/cli/theme/render-table.js +112 -0
- package/dist/cli/theme/status-frame.d.ts +10 -0
- package/dist/cli/theme/status-frame.js +22 -0
- package/dist/cli/theme/terminal-capability.d.ts +6 -1
- package/dist/cli/theme/terminal-capability.js +20 -4
- package/dist/cli/theme/theme-doc.d.ts +22 -0
- package/dist/cli/theme/theme-doc.js +97 -0
- package/dist/cli/theme/theme-registry.js +39 -18
- package/dist/cli/theme/tier-explain.d.ts +21 -0
- package/dist/cli/theme/tier-explain.js +60 -0
- package/dist/cli/ui/green-rain-renderer.js +3 -2
- package/dist/cli/ui/neon-grid-renderer.js +4 -3
- package/dist/cli/ui/rust-forge-renderer.js +17 -3
- package/dist/cli/ui/system24-renderer.d.ts +18 -1
- package/dist/cli/ui/system24-renderer.js +39 -16
- package/dist/cli/v2/chat-repl.js +3 -1
- package/dist/cli/v2/cli-v2-skeleton.d.ts +6 -0
- package/dist/cli/v2/cli-v2-skeleton.js +121 -9
- package/dist/cli/v2/interactive-prompt.d.ts +1 -0
- package/dist/cli/v2/interactive-prompt.js +6 -2
- package/dist/commands/chat/core.js +2 -2
- package/dist/commands/chat/runtime.js +2 -0
- package/dist/commands/chat/utils.js +12 -4
- package/dist/commands/cockpit/render.js +102 -64
- package/dist/commands/cockpit/utils.d.ts +2 -0
- package/dist/commands/design.js +18 -16
- package/dist/commands/doctor/checks.d.ts +0 -1
- package/dist/commands/doctor/checks.js +1 -36
- package/dist/commands/doctor/report.js +0 -11
- package/dist/commands/init/content.d.ts +1 -1
- package/dist/commands/init/content.js +3 -11
- package/dist/commands/init.js +2 -2
- package/dist/commands/mcp/config.d.ts +32 -0
- package/dist/commands/mcp/config.js +264 -0
- package/dist/commands/mcp/doctor-fix.d.ts +12 -0
- package/dist/commands/mcp/doctor-fix.js +261 -0
- package/dist/commands/mcp/doctor.d.ts +55 -0
- package/dist/commands/mcp/doctor.js +401 -0
- package/dist/commands/mcp/list.d.ts +1 -0
- package/dist/commands/mcp/list.js +56 -0
- package/dist/commands/mcp/shared.d.ts +47 -0
- package/dist/commands/mcp/shared.js +192 -0
- package/dist/commands/mcp/test.d.ts +5 -0
- package/dist/commands/mcp/test.js +457 -0
- package/dist/commands/mcp.d.ts +8 -104
- package/dist/commands/mcp.js +5 -1603
- package/dist/contracts/proof.d.ts +1 -1
- package/dist/goal/control-loop.d.ts +15 -0
- package/dist/goal/control-loop.js +39 -5
- package/dist/hud/render.d.ts +2 -0
- package/dist/hud/render.js +7 -1
- package/dist/mcp/secret-scanner.d.ts +6 -0
- package/dist/mcp/secret-scanner.js +44 -11
- package/dist/memory/graph-delta-log.d.ts +137 -0
- package/dist/memory/graph-delta-log.js +650 -0
- package/dist/memory/graph-viewer.js +13 -32
- package/dist/memory/local-graph-memory-store.d.ts +36 -3
- package/dist/memory/local-graph-memory-store.js +255 -10
- package/dist/orchestration/log-streamer.js +13 -8
- package/dist/orchestration/routing.d.ts +4 -0
- package/dist/orchestration/routing.js +28 -3
- package/dist/orchestration/state-persister.js +8 -1
- package/dist/providers/anthropic-messages-runner.d.ts +17 -0
- package/dist/providers/anthropic-messages-runner.js +197 -0
- package/dist/providers/model-registry.d.ts +1 -1
- package/dist/providers/model-registry.js +37 -3
- package/dist/providers/provider-runtime.js +27 -11
- package/dist/providers/thinking-levels.js +4 -1
- package/dist/providers/types.d.ts +3 -3
- package/dist/runtime/contracts/weakness-remediation.d.ts +9 -1
- package/dist/runtime/contracts/weakness-remediation.js +9 -1
- package/dist/runtime/router-v2-scoring.d.ts +8 -3
- package/dist/runtime/router-v2-scoring.js +27 -22
- package/dist/runtime/runtime-router.d.ts +5 -0
- package/dist/runtime/runtime-router.js +40 -8
- package/dist/runtime/sandbox-profile.d.ts +29 -0
- package/dist/runtime/sandbox-profile.js +101 -0
- package/dist/runtime/slash-commands.js +300 -2
- package/dist/runtime/tool-dispatch-contracts.d.ts +15 -0
- package/dist/runtime/tool-dispatch-contracts.js +12 -0
- package/dist/runtime/weights-config.d.ts +90 -0
- package/dist/runtime/weights-config.js +249 -0
- package/dist/schema/envelope.schema.d.ts +18 -18
- package/dist/schema/evidence.schema.d.ts +2 -2
- package/dist/schema/proof-bundle.schema.d.ts +6 -6
- package/dist/schema/proof-bundle.schema.js +0 -1
- package/dist/schema/provider.schema.d.ts +2 -2
- package/dist/schema/run-manifest.schema.d.ts +16 -16
- package/dist/theme/ansi.js +9 -2
- package/dist/theme/extended-palette.d.ts +85 -0
- package/dist/theme/extended-palette.js +108 -0
- package/dist/theme/layout.js +29 -8
- package/dist/theme/metrics.js +5 -5
- package/dist/theme/parallel.js +25 -15
- package/dist/ui/omk-sigil.js +5 -14
- package/dist/ui/omk-working-sweep.js +5 -15
- package/dist/util/chat-agent-mode.d.ts +11 -0
- package/dist/util/chat-agent-mode.js +41 -8
- package/dist/util/chat-cockpit.d.ts +9 -0
- package/dist/util/chat-cockpit.js +77 -20
- package/dist/util/fs/core.d.ts +5 -0
- package/dist/util/fs/core.js +35 -0
- package/dist/util/fs/internal.d.ts +14 -0
- package/dist/util/fs/internal.js +169 -0
- package/dist/util/fs/kimi-sync.d.ts +41 -0
- package/dist/util/fs/kimi-sync.js +495 -0
- package/dist/util/fs/logo.d.ts +2 -0
- package/dist/util/fs/logo.js +78 -0
- package/dist/util/fs/manifest.d.ts +6 -0
- package/dist/util/fs/manifest.js +40 -0
- package/dist/util/fs/mcp-diagnose.d.ts +15 -0
- package/dist/util/fs/mcp-diagnose.js +204 -0
- package/dist/util/fs/mcp-runtime-config.d.ts +23 -0
- package/dist/util/fs/mcp-runtime-config.js +412 -0
- package/dist/util/fs/paths.d.ts +13 -0
- package/dist/util/fs/paths.js +82 -0
- package/dist/util/fs/preflight.d.ts +27 -0
- package/dist/util/fs/preflight.js +271 -0
- package/dist/util/fs.d.ts +8 -128
- package/dist/util/fs.js +8 -1757
- package/dist/util/terminal-layout.js +5 -1
- package/dist/util/version.js +2 -1
- package/docs/2026-06-11/critical-issues.md +20 -0
- package/docs/2026-06-11/improvements.md +14 -0
- package/docs/2026-06-11/init-checklist.md +25 -0
- package/docs/2026-06-11/plan.md +20 -0
- package/docs/ARCHITECTURE_ANALYSIS_CODEGRAPH.md +223 -0
- package/docs/adr/0001-no-native-rust-lane.md +52 -0
- package/docs/codex-oauth-setup.md +14 -0
- package/docs/decisions/2026-06-10-git-history-bloat.md +61 -0
- package/docs/decisions/ADR-theme-dark-only-assets.md +43 -0
- package/docs/getting-started.md +1 -1
- package/docs/headroom-omk-final-summary.md +188 -0
- package/docs/headroom-omk-integration.md +394 -0
- package/docs/headroom-omk-setup-guide.md +422 -0
- package/docs/headroom-omk-usage-examples.md +371 -0
- package/docs/provider-maturity.md +1 -1
- package/docs/versioning.md +3 -3
- package/package.json +10 -10
- package/readmeasset/.npmignore +2 -0
- package/readmeasset/ASSET_INDEX.md +7 -5
- package/readmeasset/ASSET_PROVENANCE.md +21 -5
- package/readmeasset/omk-control-surfaces.svg +55 -0
- package/readmeasset/omk-core-loop.svg +1 -0
- package/readmeasset/omk-logo-mark.svg +1 -0
- package/readmeasset/omk-release-assertions.svg +51 -0
- package/dist/native/linux-x64/omk-safety +0 -0
- package/dist/util/native-safety.d.ts +0 -28
- package/dist/util/native-safety.js +0 -118
package/dist/commands/mcp.d.ts
CHANGED
|
@@ -1,104 +1,8 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export
|
|
9
|
-
severity: McpDoctorSeverity;
|
|
10
|
-
kind: string;
|
|
11
|
-
message: string;
|
|
12
|
-
}
|
|
13
|
-
export interface McpDoctorSourceReport {
|
|
14
|
-
path: string;
|
|
15
|
-
exists: boolean;
|
|
16
|
-
active: boolean;
|
|
17
|
-
parsed: boolean;
|
|
18
|
-
status: "ok" | "empty" | "error";
|
|
19
|
-
serverCount: number;
|
|
20
|
-
error?: string;
|
|
21
|
-
}
|
|
22
|
-
export interface McpDoctorServerReport {
|
|
23
|
-
name: string;
|
|
24
|
-
status: "ok" | "warn" | "error";
|
|
25
|
-
active: boolean;
|
|
26
|
-
sources: string[];
|
|
27
|
-
activeSources: string[];
|
|
28
|
-
transport: "remote" | "stdio" | "invalid";
|
|
29
|
-
url?: string;
|
|
30
|
-
command?: string;
|
|
31
|
-
resolvedCommand?: string;
|
|
32
|
-
timeoutSec?: number;
|
|
33
|
-
checks: McpDoctorCheck[];
|
|
34
|
-
}
|
|
35
|
-
export interface McpDoctorReport {
|
|
36
|
-
ok: boolean;
|
|
37
|
-
command: "mcp doctor";
|
|
38
|
-
checkedAt: string;
|
|
39
|
-
activeScope: string;
|
|
40
|
-
issueCount: number;
|
|
41
|
-
errors: string[];
|
|
42
|
-
warnings: string[];
|
|
43
|
-
fixes?: McpDoctorFixReport;
|
|
44
|
-
sources: McpDoctorSourceReport[];
|
|
45
|
-
servers: McpDoctorServerReport[];
|
|
46
|
-
data: {
|
|
47
|
-
activeScope: string;
|
|
48
|
-
sourceCount: number;
|
|
49
|
-
serverCount: number;
|
|
50
|
-
};
|
|
51
|
-
}
|
|
52
|
-
export interface McpDoctorFixReport {
|
|
53
|
-
changed: boolean;
|
|
54
|
-
dryRun: boolean;
|
|
55
|
-
global: boolean;
|
|
56
|
-
actions: string[];
|
|
57
|
-
skipped: string[];
|
|
58
|
-
backups: string[];
|
|
59
|
-
}
|
|
60
|
-
export declare function mcpListCommand(): Promise<void>;
|
|
61
|
-
export declare function mcpDoctorCommand(options?: McpDoctorOptions): Promise<void>;
|
|
62
|
-
export declare function repairMcpDoctorIssues(options?: {
|
|
63
|
-
dryRun?: boolean;
|
|
64
|
-
global?: boolean;
|
|
65
|
-
}): Promise<McpDoctorFixReport>;
|
|
66
|
-
export declare function buildMcpDoctorReport(): Promise<McpDoctorReport>;
|
|
67
|
-
export declare function mcpTestCommand(serverName: string): Promise<void>;
|
|
68
|
-
export declare function mcpPrewarmCommand(serverName: string | undefined, options?: {
|
|
69
|
-
all?: boolean;
|
|
70
|
-
label?: "prewarm" | "check";
|
|
71
|
-
}): Promise<void>;
|
|
72
|
-
export declare function mcpRemoveCommand(serverName: string, options?: {
|
|
73
|
-
global?: boolean;
|
|
74
|
-
}): Promise<void>;
|
|
75
|
-
export declare function mcpAddCommand(serverName: string): Promise<void>;
|
|
76
|
-
export declare function mcpInstallCommand(name: string, command: string, args: string[], options?: {
|
|
77
|
-
env?: string[];
|
|
78
|
-
startupTimeoutSec?: number;
|
|
79
|
-
}): Promise<void>;
|
|
80
|
-
export interface BulkInstallEntry {
|
|
81
|
-
name: string;
|
|
82
|
-
command: string;
|
|
83
|
-
args: string[];
|
|
84
|
-
env?: string[] | Record<string, string>;
|
|
85
|
-
startupTimeoutSec?: number;
|
|
86
|
-
}
|
|
87
|
-
export interface BulkInstallResult {
|
|
88
|
-
installed: string[];
|
|
89
|
-
failed: Array<{
|
|
90
|
-
name: string;
|
|
91
|
-
error: string;
|
|
92
|
-
}>;
|
|
93
|
-
skipped: string[];
|
|
94
|
-
}
|
|
95
|
-
export declare function mcpBulkInstallCommand(entries: BulkInstallEntry[]): Promise<BulkInstallResult>;
|
|
96
|
-
export declare function mcpSyncGlobalCommand(options: {
|
|
97
|
-
overwrite?: boolean;
|
|
98
|
-
omk?: boolean;
|
|
99
|
-
}): Promise<void>;
|
|
100
|
-
export declare function mcpMigrateCommand(options?: {
|
|
101
|
-
global?: boolean;
|
|
102
|
-
dryRun?: boolean;
|
|
103
|
-
}): Promise<void>;
|
|
104
|
-
export {};
|
|
1
|
+
export { mcpListCommand } from "./mcp/list.js";
|
|
2
|
+
export { mcpDoctorCommand, buildMcpDoctorReport } from "./mcp/doctor.js";
|
|
3
|
+
export type { McpDoctorOptions, McpDoctorCheck, McpDoctorSourceReport, McpDoctorServerReport, McpDoctorReport, } from "./mcp/doctor.js";
|
|
4
|
+
export { repairMcpDoctorIssues } from "./mcp/doctor-fix.js";
|
|
5
|
+
export type { McpDoctorFixReport } from "./mcp/doctor-fix.js";
|
|
6
|
+
export { mcpTestCommand, mcpPrewarmCommand } from "./mcp/test.js";
|
|
7
|
+
export { mcpRemoveCommand, mcpAddCommand, mcpInstallCommand, mcpBulkInstallCommand, mcpSyncGlobalCommand, mcpMigrateCommand, } from "./mcp/config.js";
|
|
8
|
+
export type { BulkInstallEntry, BulkInstallResult } from "./mcp/config.js";
|