open-multi-agent-kit 0.78.8 → 0.79.3
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 +131 -2
- package/CHANGELOG.md +32 -0
- package/CLAUDE.md +105 -3
- package/DESIGN.md +141 -117
- package/MATURITY.md +7 -12
- package/README.md +66 -347
- package/ROADMAP.md +33 -47
- package/dist/adapters/kimi/runner.js +2 -2
- package/dist/brand/theme.js +2 -2
- package/dist/cli/register-basic-commands.js +3 -2
- package/dist/cli/register-mcp-dag-cron-screenshot-commands.js +1 -1
- package/dist/cli/root.d.ts +1 -0
- package/dist/cli/root.js +2 -0
- package/dist/cli/runtime/command-bus.js +14 -1
- package/dist/cli/theme/terminal-capability.js +1 -1
- package/dist/cli/theme/theme-registry.js +90 -2
- package/dist/cli/ui/event.d.ts +1 -0
- package/dist/cli/ui/neon-grid-renderer.d.ts +8 -0
- package/dist/cli/ui/neon-grid-renderer.js +84 -14
- package/dist/cli/ui/plain-renderer.js +3 -1
- package/dist/cli/ui/system24-renderer.js +3 -1
- package/dist/cli/v2/chat-repl.d.ts +2 -1
- package/dist/cli/v2/chat-repl.js +58 -2
- package/dist/cli/v2/cli-v2-skeleton.js +7 -4
- package/dist/cli/v2/interactive-prompt.js +4 -3
- package/dist/commands/auth.js +2 -0
- package/dist/commands/chat/native-root-loop.d.ts +1 -0
- package/dist/commands/chat/native-root-loop.js +162 -13
- package/dist/commands/chat/runtime.js +9 -0
- package/dist/commands/chat/slash/commands/routing.js +31 -1
- package/dist/commands/chat/utils.js +3 -1
- package/dist/commands/cockpit/render.js +2 -1
- package/dist/commands/doctor/checks.js +2 -2
- package/dist/commands/init/core.js +2 -2
- package/dist/commands/init.js +2 -2
- package/dist/commands/mcp/config.js +38 -16
- package/dist/commands/mcp/doctor.js +7 -8
- package/dist/commands/mcp/list.js +4 -3
- package/dist/commands/mcp/shared.d.ts +4 -1
- package/dist/commands/mcp/shared.js +21 -3
- package/dist/commands/mcp/test.js +13 -12
- package/dist/commands/model.js +4 -0
- package/dist/commands/provider.js +5 -1
- package/dist/commands/version.d.ts +1 -0
- package/dist/commands/version.js +18 -0
- package/dist/contracts/command.d.ts +25 -0
- package/dist/contracts/command.js +1 -0
- package/dist/contracts/evidence-bundle.d.ts +52 -0
- package/dist/contracts/evidence-bundle.js +1 -0
- package/dist/contracts/index.d.ts +2 -0
- package/dist/contracts/index.js +2 -0
- package/dist/contracts/web-bridge.d.ts +1 -1
- package/dist/contracts/web-bridge.js +1 -1
- package/dist/evidence/bundle-validator.d.ts +7 -0
- package/dist/evidence/bundle-validator.js +103 -0
- package/dist/evidence/index.d.ts +5 -0
- package/dist/evidence/index.js +2 -0
- package/dist/evidence/proof-trust.js +2 -10
- package/dist/evidence/trust-calibration.d.ts +25 -0
- package/dist/evidence/trust-calibration.js +151 -0
- package/dist/mcp/omk-project-server.js +1 -1
- package/dist/metrics/provenance-ratio.d.ts +16 -0
- package/dist/metrics/provenance-ratio.js +33 -0
- package/dist/orchestration/dag.d.ts +17 -0
- package/dist/orchestration/ensemble-decision.d.ts +2 -0
- package/dist/orchestration/ensemble-decision.js +4 -0
- package/dist/orchestration/hedge-persona-weights.d.ts +25 -0
- package/dist/orchestration/hedge-persona-weights.js +43 -0
- package/dist/orchestration/parallel-ui.d.ts +1 -0
- package/dist/orchestration/parallel-ui.js +12 -3
- package/dist/orchestration/route-calibration.d.ts +27 -0
- package/dist/orchestration/route-calibration.js +123 -0
- package/dist/orchestration/routing/mcp-config.js +5 -1
- package/dist/orchestration/routing/types.d.ts +21 -0
- package/dist/orchestration/routing.d.ts +10 -0
- package/dist/orchestration/routing.js +89 -3
- package/dist/providers/model-registry.d.ts +2 -1
- package/dist/providers/model-registry.js +76 -4
- package/dist/providers/provider-runtime.js +9 -1
- package/dist/providers/thinking-levels.js +2 -0
- package/dist/providers/types.d.ts +1 -1
- package/dist/runtime/glm-api-runtime.d.ts +4 -0
- package/dist/runtime/glm-api-runtime.js +15 -0
- package/dist/runtime/index.d.ts +1 -0
- package/dist/runtime/index.js +1 -0
- package/dist/runtime/kimi-api-runtime.d.ts +6 -1
- package/dist/runtime/kimi-api-runtime.js +10 -4
- package/dist/runtime/recovery-artifact-store.d.ts +39 -0
- package/dist/runtime/recovery-artifact-store.js +111 -0
- package/dist/runtime/runtime-backed-task-runner.js +10 -0
- package/dist/runtime/runtime-bootstrap.js +17 -1
- package/dist/runtime/slash-commands.js +38 -5
- package/dist/schema/command.schema.d.ts +121 -0
- package/dist/schema/command.schema.js +25 -0
- package/dist/schema/envelope.schema.d.ts +2 -2
- package/dist/schema/evidence-bundle.schema.d.ts +196 -0
- package/dist/schema/evidence-bundle.schema.js +38 -0
- package/dist/schema/index.d.ts +2 -0
- package/dist/schema/index.js +2 -0
- package/dist/schema/proof-bundle.schema.d.ts +2 -2
- package/dist/theme/external-theme-adapters.d.ts +27 -0
- package/dist/theme/external-theme-adapters.js +52 -0
- package/dist/theme/library-effects.d.ts +12 -0
- package/dist/theme/library-effects.js +47 -0
- package/dist/theme/parallel.js +3 -2
- package/dist/tui/terminal-frame-renderer.d.ts +9 -1
- package/dist/tui/terminal-frame-renderer.js +77 -7
- package/dist/util/chat-cockpit.d.ts +3 -1
- package/dist/util/chat-cockpit.js +44 -5
- package/dist/util/command-envelope.d.ts +19 -0
- package/dist/util/command-envelope.js +31 -0
- package/dist/util/events-logger.d.ts +1 -1
- package/dist/util/events-logger.js +23 -16
- package/dist/util/fs/mcp-diagnose.js +2 -1
- package/dist/util/fs/mcp-runtime-config.js +14 -2
- package/dist/util/i18n.js +2 -2
- package/dist/util/screenshot-store.d.ts +7 -0
- package/dist/util/screenshot-store.js +30 -0
- package/dist/util/terminal-kit-bridge.d.ts +24 -0
- package/dist/util/terminal-kit-bridge.js +60 -0
- package/dist/util/terminal-owner.d.ts +1 -0
- package/dist/util/terminal-owner.js +31 -0
- package/dist/version.d.ts +3 -1
- package/dist/version.js +4 -0
- package/docs/2026-05-18-project-direction.md +1 -1
- package/docs/2026-06-14/critical-issues.md +19 -0
- package/docs/2026-06-14/improvements.md +15 -0
- package/docs/2026-06-14/init-checklist.md +25 -0
- package/docs/2026-06-14/plan.md +20 -0
- package/docs/2026-06-15/critical-issues.md +19 -0
- package/docs/2026-06-15/improvements.md +15 -0
- package/docs/2026-06-15/init-checklist.md +25 -0
- package/docs/2026-06-15/plan.md +20 -0
- package/docs/claims.md +85 -0
- package/docs/comparisons/omk-vs-claude-code.md +31 -0
- package/docs/comparisons/omk-vs-codex.md +33 -0
- package/docs/comparisons/omk-vs-mcp-agent.md +33 -0
- package/docs/comparisons/omk-vs-opencode.md +32 -0
- package/docs/decision-layer-calibration.md +20 -0
- package/docs/geo-eval-prompts.md +53 -0
- package/docs/getting-started.md +3 -31
- package/docs/headroom-omk-setup-guide.md +2 -2
- package/docs/integrations/adaptorch.md +46 -0
- package/docs/native-root-runtime-algorithms.md +2 -303
- package/docs/native-root-runtime-hardening.md +1 -1
- package/docs/provider-maturity.md +1 -1
- package/docs/use-cases/evidence-gated-coding-agents.md +52 -0
- package/docs/use-cases/no-kimi-mode.md +38 -0
- package/docs/use-cases/provider-routing-for-ai-coding.md +36 -0
- package/docs/use-cases/replayable-agent-runs.md +40 -0
- package/docs/use-cases/scoped-mcp-for-coding-agents.md +34 -0
- package/docs/versioning.md +9 -3
- package/docs/what-is-omk.md +64 -0
- package/llms.txt +28 -18
- package/package.json +7 -2
- package/readmeasset/.npmignore +3 -0
- package/readmeasset/ASSET_INDEX.md +3 -0
- package/readmeasset/ASSET_PROVENANCE.md +6 -0
- package/readmeasset/omk-adaptorch-ouroboros-supermemory.svg +95 -0
- package/readmeasset/omk-init-control-loop.svg +118 -0
- package/readmeasset/omk-parallel-subagents.svg +97 -0
- package/templates/web-bridge/chrome-extension/background.js +1 -1
package/README.md
CHANGED
|
@@ -1,392 +1,111 @@
|
|
|
1
|
-
|
|
2
|
-
<img src="readmeasset/omk-control.webp" alt="OMK//CONTROL Night City Ops Console for routing agents, evidence gates, telemetry, MCP scope, and operator control" width="100%" />
|
|
3
|
-
</p>
|
|
1
|
+
# OMK
|
|
4
2
|
|
|
5
|
-
|
|
3
|
+
Run multiple coding agents safely in one repo.
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
<strong>OMK//CONTROL — provider-neutral multi-agent control plane for coding workflows.</strong>
|
|
9
|
-
</p>
|
|
5
|
+
OMK turns a coding task into a scoped DAG run: it routes the right model, limits tool access, requires evidence, and saves replayable artifacts before claiming success.
|
|
10
6
|
|
|
11
|
-
|
|
12
|
-
Models execute. OMK routes, verifies, measures, and controls.
|
|
13
|
-
</p>
|
|
7
|
+
Use it when one agent is too loose, too risky, or too hard to audit.
|
|
14
8
|
|
|
15
|
-
<p
|
|
9
|
+
<p>
|
|
16
10
|
<a href="https://www.npmjs.com/package/open-multi-agent-kit"><img alt="npm version" src="https://img.shields.io/npm/v/open-multi-agent-kit?color=00D6FF"></a>
|
|
17
|
-
<a href="https://www.npmjs.com/package/open-multi-agent-kit"><img alt="npm package" src="https://img.shields.io/badge/package-open--multi--agent--kit-FF47B2"></a>
|
|
18
|
-
<a href="docs/versioning.md"><img alt="runtime contract" src="https://img.shields.io/badge/contract-v1.2_pre--1.0-9D4EDD"></a>
|
|
19
|
-
<a href="https://github.com/dmae97/open-multi-agent-kit/blob/main/proof/PROOF_INDEX.md"><img alt="proof check" src="https://img.shields.io/badge/proof--check-source-00FFC2"></a>
|
|
20
11
|
<a href="LICENSE"><img alt="license" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
|
|
12
|
+
<a href="https://github.com/dmae97/open-multi-agent-kit/blob/main/proof/PROOF_INDEX.md"><img alt="proof check" src="https://img.shields.io/badge/proof--check-source-00FFC2"></a>
|
|
13
|
+
<a href="https://github.com/dmae97/open-multi-agent-kit/discussions"><img alt="discussions" src="https://img.shields.io/badge/discussions-open-9D4EDD"></a>
|
|
21
14
|
</p>
|
|
22
15
|
|
|
23
|
-
|
|
24
|
-
<a href="#install">Install</a> ·
|
|
25
|
-
<a href="#quick-start">Quick start</a> ·
|
|
26
|
-
<a href="#who-is-this-for">Who is this for?</a> ·
|
|
27
|
-
<a href="#current-runtime-algorithm">Runtime algorithm</a> ·
|
|
28
|
-
<a href="docs/getting-started.md">Docs</a> ·
|
|
29
|
-
<a href="readmeasset/ASSET_INDEX.md">Visual assets</a>
|
|
30
|
-
</p>
|
|
31
|
-
|
|
32
|
-
`OMK` (`omk`) turns a coding goal into a bounded, evidence-gated agent run.
|
|
33
|
-
|
|
34
|
-
Use OMK when one coding agent is not enough: route Codex, OpenCode, Kimi, DeepSeek, Qwen, OpenRouter, and local runtimes through one evidence-gated control loop.
|
|
35
|
-
|
|
36
|
-
## Who is this for?
|
|
37
|
-
|
|
38
|
-
- Developers running multiple coding agents from the terminal.
|
|
39
|
-
- Teams that need MCP-scoped agent execution instead of unrestricted tool access.
|
|
40
|
-
- Agent builders who want routing, fallback, evidence gates, telemetry, and replay.
|
|
41
|
-
|
|
42
|
-
> Current package source target: `open-multi-agent-kit@0.78.8`.
|
|
43
|
-
> Public package name: `open-multi-agent-kit` (`@omk/cli` is not the active npm package).
|
|
44
|
-
> Runtime contract family: `v1.2` (contract family, not a stable npm `1.x` release).
|
|
45
|
-
> Release channel: `pre-1.0`.
|
|
46
|
-
> See [versioning](docs/versioning.md) and [provider maturity](docs/provider-maturity.md).
|
|
47
|
-
|
|
48
|
-
## Quickstart (3 minutes)
|
|
49
|
-
|
|
50
|
-
A beginner reads this, runs four commands, and reaches an initialized OMK chat/doctor flow.
|
|
16
|
+
## 30-second demo
|
|
51
17
|
|
|
52
18
|
```bash
|
|
53
|
-
|
|
54
|
-
omk init
|
|
55
|
-
omk doctor
|
|
56
|
-
omk chat
|
|
19
|
+
npx -y -p open-multi-agent-kit omk do "review this repo for release risk" --dry-run --json
|
|
57
20
|
```
|
|
58
21
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
- [Codex MCP evidence run](https://github.com/dmae97/open-multi-agent-kit/tree/main/examples/codex-mcp-evidence-run): project-scoped MCP setup plus evidence-gated DAG dry run.
|
|
62
|
-
- [Provider fallback](https://github.com/dmae97/open-multi-agent-kit/tree/main/examples/provider-fallback): `--provider auto` routing with parallel worker planning.
|
|
63
|
-
|
|
64
|
-
## Current release reality
|
|
65
|
-
|
|
66
|
-
- The public npm line is `open-multi-agent-kit@0.78.x`. The source target is `open-multi-agent-kit@0.78.8`;
|
|
67
|
-
treat npm `latest` as release-truthful only after the tagged release workflow and registry verification both pass.
|
|
68
|
-
- The `v1.2` label in docs is a runtime contract family for the source tree, not a claim that
|
|
69
|
-
an npm `1.2.x` stable release exists.
|
|
70
|
-
- Provider support is intentionally uneven: Kimi remains the most mature authority path;
|
|
71
|
-
Codex/OpenCode/CommandCode depend on local CLIs; MiMo/DeepSeek/Qwen/OpenRouter/local LLM
|
|
72
|
-
lanes are scoped by the provider-maturity contract.
|
|
73
|
-
- Safety and evidence claims apply to the exact adapter, command, and verification gate that
|
|
74
|
-
produced them.
|
|
75
|
-
- Regression Proof Matrix is a release-defense coverage gate, not a stable-release claim.
|
|
76
|
-
Stable promotion still requires full tests, live provider maturity data, and a minimal verified demo pass.
|
|
77
|
-
|
|
78
|
-
## Why OMK
|
|
22
|
+
OMK should produce a bounded plan before changing files:
|
|
79
23
|
|
|
80
|
-
|
|
24
|
+
```txt
|
|
25
|
+
goal
|
|
26
|
+
review this repo for release risk
|
|
81
27
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
- classify task intent and route to compatible runtime adapters;
|
|
85
|
-
- execute with timeout, approval, sandbox, and fallback metadata;
|
|
86
|
-
- require evidence before completion claims;
|
|
87
|
-
- preserve run artifacts for replay, inspection, and audit.
|
|
28
|
+
flow
|
|
29
|
+
goal -> input envelope -> DAG -> scoped lanes -> evidence -> verify
|
|
88
30
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
<p align="center">
|
|
94
|
-
<img src="readmeasset/omk_tui.png" alt="OMK//CONTROL terminal dashboard — live DAG lanes, provider routing, MCP health, evidence gates, and telemetry in Night City Ops Console style" width="100%" />
|
|
95
|
-
</p>
|
|
96
|
-
|
|
97
|
-
| Operator TUI | Runtime flow |
|
|
98
|
-
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
99
|
-
| <img src="readmeasset/omk-tui-0.78.0.webp" alt="OMK//CONTROL TUI for OMK 0.78.0 showing Codex App OAuth routing, GPT Image 2 asset lane, DAG lanes, scoped MCP, and evidence gates" /> | <img src="readmeasset/omk-runtime-flow-0.78.0.webp" alt="OMK 0.78.0 runtime flow diagram: user goal, intent classifier, DAG compiler, runtime router, parallel workers, evidence bundle, verify gate, and merge replay inspect loop" /> |
|
|
100
|
-
|
|
101
|
-
| Install lane | Provider router | Evidence gate |
|
|
102
|
-
| -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
|
|
103
|
-
| <img src="readmeasset/omk-install-card.png" alt="OMK install quickstart card" /> | <img src="readmeasset/omk-provider-router-card.png" alt="OMK provider router card" /> | <img src="readmeasset/omk-evidence-gate-card.png" alt="OMK evidence gate card" /> |
|
|
104
|
-
|
|
105
|
-
<p align="center">
|
|
106
|
-
<img src="readmeasset/omk-core-loop.svg" alt="OMK core loop: goal to DAG plan to evidence to verify to replay" width="100%" />
|
|
107
|
-
</p>
|
|
108
|
-
|
|
109
|
-
| Control surfaces | Release assertions |
|
|
110
|
-
| ---------------- | ------------------ |
|
|
111
|
-
| <img src="readmeasset/omk-control-surfaces.svg" alt="OMK control surfaces: CLI, provider router, MCP scope, evidence gate, replay ledger, and package audit" /> | <img src="readmeasset/omk-release-assertions.svg" alt="OMK release assertions: package name, CLI bins, release gates, package-safe exclusions, and registry verification" /> |
|
|
112
|
-
|
|
113
|
-
## Install
|
|
114
|
-
|
|
115
|
-
Requires Node.js `>=20` and npm `>=10`. The [3-minute route](#quickstart-3-minutes) uses the global install; these are the alternatives:
|
|
116
|
-
|
|
117
|
-
Project/local install:
|
|
118
|
-
|
|
119
|
-
```bash
|
|
120
|
-
npm i open-multi-agent-kit
|
|
121
|
-
npx omk --help
|
|
31
|
+
artifacts (dry run)
|
|
32
|
+
.omk/runs/<run-id>/input-envelope.json
|
|
33
|
+
.omk/runs/<run-id>/dag.json
|
|
34
|
+
.omk/runs/<run-id>/dag-compile-report.json
|
|
122
35
|
```
|
|
123
36
|
|
|
124
|
-
|
|
37
|
+
Executing (not dry-run) adds loop artifacts such as `.omk/runs/<run-id>/loop-state.json` and `.omk/runs/<run-id>/loop-decisions.jsonl`. Artifact names can evolve with the runtime contract; the invariant is that OMK persists reviewable run state before a worker claims completion.
|
|
125
38
|
|
|
126
|
-
|
|
127
|
-
npx -p open-multi-agent-kit omk doctor
|
|
128
|
-
```
|
|
129
|
-
|
|
130
|
-
## Quick start
|
|
131
|
-
|
|
132
|
-
The [3-minute route](#quickstart-3-minutes) is the canonical path. Beyond it, add provider auth and orchestration:
|
|
39
|
+
## Install
|
|
133
40
|
|
|
134
41
|
```bash
|
|
135
|
-
|
|
136
|
-
omk
|
|
137
|
-
omk
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
## Current runtime algorithm
|
|
141
|
-
|
|
142
|
-
The canonical algorithm definitions live in [Native Root Runtime Algorithms](docs/native-root-runtime-algorithms.md). README summary:
|
|
143
|
-
|
|
144
|
-
### 1. Native root turn execution
|
|
145
|
-
|
|
146
|
-
```text
|
|
147
|
-
Read user input
|
|
148
|
-
→ dispatch slash commands locally
|
|
149
|
-
→ build scoped MCP/skills/hooks capability injection
|
|
150
|
-
→ build prompt envelope
|
|
151
|
-
→ materialize a DAG coordinator node
|
|
152
|
-
→ run selected runtime with timeout/abort handling
|
|
153
|
-
→ stream output, sync TODOs, attach evidence
|
|
154
|
-
```
|
|
155
|
-
|
|
156
|
-
This is the interactive root loop used by `omk chat`. It treats shell exits, slash commands, prompt envelopes, TODO sync, and recent output as controlled runtime state instead of loose chat text.
|
|
157
|
-
|
|
158
|
-
### 2. Native root turn node construction
|
|
159
|
-
|
|
160
|
-
```text
|
|
161
|
-
User prompt
|
|
162
|
-
→ infer risk: read | write | shell | merge
|
|
163
|
-
→ normalize scoped capabilities
|
|
164
|
-
→ choose provider-neutral routing policy
|
|
165
|
-
→ attach approval/sandbox metadata
|
|
166
|
-
→ produce coordinator DAG node
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
Read-only turns stay read-only. Write, shell, and merge turns get explicit capability metadata. DeepSeek-style advisory lanes are kept read/review when the risk is not safe for write authority.
|
|
170
|
-
|
|
171
|
-
### 3. Runtime-backed task runner
|
|
172
|
-
|
|
173
|
-
```text
|
|
174
|
-
DAG node
|
|
175
|
-
→ run state
|
|
176
|
-
→ context capsule
|
|
177
|
-
→ provider-neutral AgentTask
|
|
178
|
-
→ RuntimeRouter.execute(task)
|
|
179
|
-
→ TaskResult with selected runtime + fallback chain
|
|
180
|
-
```
|
|
181
|
-
|
|
182
|
-
OMK converts DAG context into an adapter-neutral task so Codex, MiMo, Kimi API/print lanes, DeepSeek, Qwen, OpenRouter, local adapters, or future runtimes can participate through the same contract when configured. That contract does not imply equal write/merge authority for every adapter.
|
|
183
|
-
|
|
184
|
-
### 4. Intent-aware runtime routing and fallback
|
|
185
|
-
|
|
186
|
-
```text
|
|
187
|
-
Classify intent
|
|
188
|
-
→ filter compatible runtimes
|
|
189
|
-
→ score by quality, evidence pass rate, and recent failures
|
|
190
|
-
→ execute best runtime
|
|
191
|
-
→ fallback in ranked order when a runtime fails
|
|
192
|
-
→ record selected runtime, intent, scores, and fallback chain
|
|
193
|
-
```
|
|
194
|
-
|
|
195
|
-
Provider routing is evidence-aware, not just provider-name matching. Failed or low-evidence lanes are penalized; compatible healthy lanes can take over.
|
|
196
|
-
|
|
197
|
-
### 5. Secure worker transport and scoped environment
|
|
198
|
-
|
|
199
|
-
```text
|
|
200
|
-
Worker prompt
|
|
201
|
-
→ stdin transport where supported, not process argv
|
|
202
|
-
→ scoped agent file when needed
|
|
203
|
-
→ sanitized child environment
|
|
204
|
-
→ OMK_RUN_ID / OMK_NODE_ID / OMK_NODE_ROLE metadata
|
|
205
|
-
```
|
|
206
|
-
|
|
207
|
-
Kimi worker prompts use stdin with `--input-format text` where that adapter path applies. All worker environment claims are scoped to the exact adapter and evidence gates; private prompt envelopes and run artifacts remain trusted local data.
|
|
208
|
-
|
|
209
|
-
## Core loop
|
|
210
|
-
|
|
211
|
-
```text
|
|
212
|
-
Goal → DAG plan → parallel lanes → evidence bundle → verify gate → merge / replay / inspect
|
|
42
|
+
npm install -g open-multi-agent-kit
|
|
43
|
+
omk init
|
|
44
|
+
omk doctor
|
|
45
|
+
omk chat
|
|
213
46
|
```
|
|
214
47
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
`omk goal` turns a raw goal into a planned, evidence-gated run. The **OMK Deep Interview** is an uncertainty reducer that clarifies the goal before planning, so the DAG is compiled from a structured spec instead of a vague prompt.
|
|
218
|
-
|
|
219
|
-
Recommended flow:
|
|
48
|
+
For local verification from a checkout:
|
|
220
49
|
|
|
221
50
|
```bash
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
51
|
+
npm ci
|
|
52
|
+
npm run build
|
|
53
|
+
node dist/cli.js do "explain this repo" --dry-run --json
|
|
54
|
+
npm run verify:no-kimi
|
|
226
55
|
```
|
|
227
56
|
|
|
228
|
-
|
|
57
|
+
## Use OMK if you
|
|
229
58
|
|
|
230
|
-
|
|
59
|
+
- use Codex, Claude Code, OpenCode, DeepSeek, Qwen, OpenRouter, MiMo, or local models in the same repo;
|
|
60
|
+
- want agents to produce evidence before saying “done”;
|
|
61
|
+
- need read/write/shell authority separated by task;
|
|
62
|
+
- want replayable `.omk/runs/` artifacts for review;
|
|
63
|
+
- need project-scoped MCP, skills, hooks, and provider lanes instead of ambient global tool access.
|
|
231
64
|
|
|
232
|
-
|
|
233
|
-
score = informationGain*0.35 + riskReduction*0.25 + dagImpact*0.20 + evidenceImpact*0.15 - userCost*0.05
|
|
234
|
-
```
|
|
235
|
-
|
|
236
|
-
| Option | Purpose |
|
|
237
|
-
| -------------------------- | -------------------------------------------------------------- |
|
|
238
|
-
| `--goal-id <id>` | Target an existing goal. |
|
|
239
|
-
| `--mode <create\|refine>` | Create a new spec or refine an existing one. |
|
|
240
|
-
| `--depth <light\|standard\|deep>` | Interview depth; omit to auto-select by ambiguity. |
|
|
241
|
-
| `--max-questions <n>` | Cap the number of ranked questions. |
|
|
242
|
-
| `--answers <file>` | Supply answers non-interactively. |
|
|
243
|
-
| `--write-spec` | Persist the spec delta into a `GoalSpec`. |
|
|
244
|
-
| `--json` | Emit the `omk.interview.v1` JSON contract. |
|
|
245
|
-
|
|
246
|
-
### `omk goal refine <goal-id>`
|
|
247
|
-
|
|
248
|
-
Applies the latest interview spec delta to a goal and optionally replans.
|
|
249
|
-
|
|
250
|
-
| Option | Purpose |
|
|
251
|
-
| ----------------------- | ------------------------------------------------ |
|
|
252
|
-
| `--from-interview <id>` | Source interview session (default: latest). |
|
|
253
|
-
| `--plan` | Replan the goal after applying the delta. |
|
|
254
|
-
| `--json` | Emit machine-readable output. |
|
|
255
|
-
|
|
256
|
-
Answers file format (`--answers answers.json`):
|
|
257
|
-
|
|
258
|
-
```json
|
|
259
|
-
{
|
|
260
|
-
"answers": [
|
|
261
|
-
{ "questionId": "q-success-criteria", "answer": "..." }
|
|
262
|
-
]
|
|
263
|
-
}
|
|
264
|
-
```
|
|
65
|
+
## How OMK differs
|
|
265
66
|
|
|
266
|
-
|
|
67
|
+
| Tool type | Good at | Missing piece | OMK adds |
|
|
68
|
+
| --- | --- | --- | --- |
|
|
69
|
+
| Codex / Claude Code | Strong single-agent execution | Audit and routing layer | DAG, evidence, replay |
|
|
70
|
+
| OpenCode | Terminal coding loop | Multi-provider governance | Provider authority + gates |
|
|
71
|
+
| MCP servers | Tool access | Task-level control | Scoped MCP per lane |
|
|
72
|
+
| CI | Post-hoc verification | Agent-time enforcement | Evidence before completion |
|
|
267
73
|
|
|
268
74
|
## What OMK controls
|
|
269
75
|
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
| DAG orchestration | Plans, routes, executes, merges, replays, and inspects agent work. |
|
|
273
|
-
| Evidence gates | Requires command output, diff, artifact, metric, or review proof before “done”. |
|
|
274
|
-
| Provider routing | Selects compatible runtimes with intent, capability, evidence, and fallback metadata. |
|
|
275
|
-
| MCP scope | Keeps project MCP, skills, hooks, and graph memory scoped instead of importing global secrets silently. |
|
|
276
|
-
| Worktree isolation | Keeps parallel lanes bounded, reviewable, and recoverable. |
|
|
277
|
-
| Operator telemetry | Exposes route, status, blockers, TODOs, run health, and evidence state through CLI/HUD/TUI surfaces. |
|
|
278
|
-
| Security boundary | Sanitizes child env, protects secrets, and makes workspace-write routes explicit. |
|
|
279
|
-
|
|
280
|
-
## Provider lanes
|
|
281
|
-
|
|
282
|
-
OMK is provider-neutral, but providers are not equally mature or equally authorized:
|
|
283
|
-
|
|
284
|
-
- **Kimi API / print lanes**: most mature authority path and compatibility fallback when configured.
|
|
285
|
-
- **MiMo**: default/read-review-thinking path when configured; direct workspace-write authority is not claimed for the API runtime.
|
|
286
|
-
- **Codex app / CLI OAuth lanes**: compatibility path through the official Codex CLI/app login; local CLI availability and policy decide what can run.
|
|
287
|
-
- **OpenCode / CommandCode CLI lanes**: compatibility paths when the local CLI and auth are present.
|
|
288
|
-
- **DeepSeek, Qwen, OpenRouter, local LLM adapters**: advisory/read/review/QA/research lanes unless a tested contract grants more authority.
|
|
289
|
-
- **GPT Image 2 asset lane**: visual asset workflow only when explicitly selected and separately configured.
|
|
290
|
-
|
|
291
|
-
See [provider maturity](docs/provider-maturity.md) before treating any non-Kimi lane as an authority/write/merge path.
|
|
292
|
-
|
|
293
|
-
## Codex app / OAuth first
|
|
294
|
-
|
|
295
|
-
For Codex lanes, OMK delegates auth to the official Codex app/CLI and never reads or prints `~/.codex/auth.json` tokens.
|
|
296
|
-
|
|
297
|
-
```bash
|
|
298
|
-
codex login
|
|
299
|
-
omk codex auth --choice plus-pro --run
|
|
300
|
-
omk provider doctor codex --soft
|
|
301
|
-
```
|
|
302
|
-
|
|
303
|
-
Codex/ChatGPT OAuth is for Codex CLI sessions. `omk image generate/edit --model gpt-image-2` remains an OpenAI Images API call and requires a separate OpenAI Platform project API key. See [Codex OAuth setup](docs/codex-oauth-setup.md) and [OpenAI image keys](docs/openai-platform-image-keys.md).
|
|
304
|
-
|
|
305
|
-
## CLI and package contract
|
|
306
|
-
|
|
307
|
-
The npm package is intentionally package-safe:
|
|
308
|
-
|
|
309
|
-
| Contract | Value |
|
|
310
|
-
| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
311
|
-
| Package | [`open-multi-agent-kit`](https://www.npmjs.com/package/open-multi-agent-kit) |
|
|
312
|
-
| Version | `0.78.8` |
|
|
313
|
-
| Runtime contract family | `v1.2` |
|
|
314
|
-
| Bins | `omk`, `omk-project-mcp`, `omk-acp`, `omk-mcp-host` |
|
|
315
|
-
| Packaged docs | `README.md`, `docs/`, `SECURITY.md`, `ROADMAP.md`, `MATURITY.md`, `DESIGN.md` |
|
|
316
|
-
| Packaged branding | Canonical hero/social/TUI/runtime images plus the curated derivative gallery documented in [`readmeasset/ASSET_INDEX.md`](readmeasset/ASSET_INDEX.md) and [`readmeasset/ASSET_PROVENANCE.md`](readmeasset/ASSET_PROVENANCE.md) |
|
|
317
|
-
| Release assertions | README and package audit assert package name/version, required CLI bins, package-safe file set, local-state exclusions, proof metadata, and registry-verification wording. |
|
|
318
|
-
| Excluded | source-only tests, scripts, local state, logs, secrets, private runtime directories |
|
|
319
|
-
|
|
320
|
-
Release checks:
|
|
321
|
-
|
|
322
|
-
```bash
|
|
323
|
-
npm run version:check
|
|
324
|
-
npm run proof:check
|
|
325
|
-
npm run pack:dry
|
|
326
|
-
npm run audit:package
|
|
327
|
-
```
|
|
328
|
-
|
|
329
|
-
What those checks assert before publish:
|
|
330
|
-
|
|
331
|
-
- `package.json` and `package-lock.json` agree on `open-multi-agent-kit` and the current package version.
|
|
332
|
-
- The npm tarball exposes `omk`, `omk-project-mcp`, `omk-acp`, and `omk-mcp-host` from `dist/` with executable shebangs.
|
|
333
|
-
- README/docs/changelog/release-truthfulness proof metadata mention the same package version and keep `v1.2` scoped to runtime contracts.
|
|
334
|
-
- The packaged file set includes docs, templates, and provenance-covered README assets while excluding source, tests, local `.omk`/`.kimi` state, logs, tarballs, and secret-shaped files.
|
|
335
|
-
- Published-version claims remain conditional until the tagged workflow and npm registry verification both pass.
|
|
336
|
-
|
|
337
|
-
## Contract versions
|
|
338
|
-
|
|
339
|
-
Machine-readable contracts currently include:
|
|
340
|
-
|
|
341
|
-
- `omk.contract.v1`
|
|
342
|
-
- `omk.evidence.v1`
|
|
343
|
-
- `omk.decision.v1`
|
|
344
|
-
- `omk.run-manifest.v1`
|
|
345
|
-
- `omk.provider.v1`
|
|
346
|
-
- `omk.version.v1`
|
|
347
|
-
- `omk.proof-bundle.v1`
|
|
348
|
-
|
|
349
|
-
Schemas live in the source-tree `schemas/` directory and are checked with:
|
|
350
|
-
|
|
351
|
-
```bash
|
|
352
|
-
npm run schema:check
|
|
76
|
+
```text
|
|
77
|
+
Goal → DAG plan → scoped lanes → evidence bundle → verify gate → replay / inspect
|
|
353
78
|
```
|
|
354
79
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
80
|
+
- **Routing**: choose a compatible provider/runtime for the task.
|
|
81
|
+
- **Authority**: keep read, write, shell, and merge powers explicit.
|
|
82
|
+
- **Evidence**: require command output, diff, artifact, metric, or review proof.
|
|
83
|
+
- **Replay**: save run artifacts under `.omk/runs/<run-id>/` for review.
|
|
84
|
+
- **Scope**: keep MCP servers, skills, hooks, and memory bounded per lane.
|
|
358
85
|
|
|
359
|
-
|
|
360
|
-
- `/model` is UX debt until live mutation or restart-only behavior is enforced consistently.
|
|
361
|
-
- Approval and sandbox metadata are preserved in task contracts; enforcement depends on the adapter path.
|
|
362
|
-
- Provider health probes do not yet uniformly separate binary/API presence, auth, model support, and quota state across every adapter.
|
|
363
|
-
- Safety claims are scoped to exact adapter, command, evidence, and package-audit results.
|
|
86
|
+
## Examples
|
|
364
87
|
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
## Docs
|
|
88
|
+
- [Codex MCP evidence run](https://github.com/dmae97/open-multi-agent-kit/tree/main/examples/codex-mcp-evidence-run): project-scoped MCP setup plus evidence-gated DAG dry run.
|
|
89
|
+
- [Provider fallback](https://github.com/dmae97/open-multi-agent-kit/tree/main/examples/provider-fallback): `--provider auto` routing with fallback planning.
|
|
90
|
+
- [Proof index](https://github.com/dmae97/open-multi-agent-kit/blob/main/proof/PROOF_INDEX.md): source-controlled proof bundles checked by `npm run proof:check`.
|
|
370
91
|
|
|
371
|
-
|
|
372
|
-
- [Runtime versioning](docs/versioning.md)
|
|
373
|
-
- [Provider maturity](docs/provider-maturity.md)
|
|
374
|
-
- [Native root runtime algorithms](docs/native-root-runtime-algorithms.md)
|
|
375
|
-
- [Codex OAuth setup](docs/codex-oauth-setup.md)
|
|
376
|
-
- [Ouroboros integration](docs/integrations/ouroboros.md)
|
|
377
|
-
- [Security policy](SECURITY.md)
|
|
92
|
+
## Maturity and safety claims
|
|
378
93
|
|
|
379
|
-
|
|
94
|
+
Current source version: `open-multi-agent-kit@0.79.3`.
|
|
380
95
|
|
|
381
|
-
|
|
96
|
+
- Public package name: `open-multi-agent-kit`.
|
|
97
|
+
- Runtime contract family: `v1.2` means contract family, not a stable npm `1.x` release.
|
|
98
|
+
- Release channel: `pre-1.0`.
|
|
99
|
+
- OS-level sandboxing is planned, not claimed; child env hardening and approval gates are adapter-specific.
|
|
100
|
+
- registry verification: treat npm `latest` claims as valid only after tagged CI and registry checks pass.
|
|
382
101
|
|
|
383
|
-
|
|
102
|
+
See [versioning](docs/versioning.md), [provider maturity](docs/provider-maturity.md), and [SECURITY.md](SECURITY.md).
|
|
384
103
|
|
|
385
|
-
##
|
|
104
|
+
## Community
|
|
386
105
|
|
|
387
|
-
-
|
|
388
|
-
-
|
|
389
|
-
-
|
|
106
|
+
- Ask setup and provider questions in [Discussions](https://github.com/dmae97/open-multi-agent-kit/discussions).
|
|
107
|
+
- File reproducible bugs in [Issues](https://github.com/dmae97/open-multi-agent-kit/issues).
|
|
108
|
+
- If you want safer multi-agent coding runs, star the repo to follow the `v0.8` release line.
|
|
390
109
|
|
|
391
110
|
## License
|
|
392
111
|
|
package/ROADMAP.md
CHANGED
|
@@ -1,35 +1,27 @@
|
|
|
1
1
|
# Roadmap
|
|
2
2
|
|
|
3
|
-
Current source version:
|
|
4
|
-
Last updated: 2026-
|
|
3
|
+
Current source version: v1.1.18
|
|
4
|
+
Last updated: 2026-05-24
|
|
5
5
|
|
|
6
|
-
## 2026-
|
|
6
|
+
## 2026-05-24 runtime hardening status
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Latest pushed source on `new-origin/main` is `6305e2b62185c11549f59e2340936769a3027cdd`. This supersedes the earlier native-root pivot commit in the same line. The architecture direction remains OMK-as-root with Kimi as the default coding adapter, but the current line is still hardening-gated:
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
- GitHub Actions Smoke Test is green on `6305e2b`.
|
|
11
|
+
- GitHub Actions CI is red on Windows jobs on `6305e2b`; do not publish/tag v1.1.18 until this is fixed.
|
|
12
|
+
- The active architecture backlog is now tracked in `docs/native-root-runtime-hardening.md`, `docs/native-root-runtime-algorithms.md`, and `.omk/specs/native-orchestrator-phase1/`.
|
|
11
13
|
|
|
12
|
-
##
|
|
14
|
+
## v1.1.9 reality
|
|
13
15
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
- Version contract details: `docs/versioning.md`.
|
|
17
|
-
- Provider status and limitations: `docs/provider-maturity.md`.
|
|
18
|
-
- Public proof index: `proof/PROOF_INDEX.md`.
|
|
19
|
-
- Active native-runtime backlog: `docs/native-root-runtime-hardening.md`, `docs/native-root-runtime-algorithms.md`, and `.omk/specs/native-orchestrator-phase1/`.
|
|
20
|
-
- Do not claim stable npm `1.x` status until release gates pass on the exact target commit and the stable package/tag is published.
|
|
21
|
-
|
|
22
|
-
## Historical v1.1.9 source reality
|
|
23
|
-
|
|
24
|
-
Provider routing and graph viewing are no longer purely future work in the source tree, but these notes are historical and provider-dependent:
|
|
16
|
+
Provider routing and graph viewing are no longer purely future work:
|
|
25
17
|
|
|
26
18
|
- `omk run`, `omk parallel`, and DAG replay expose `--provider auto|kimi`.
|
|
27
19
|
- `omk provider` / `omk deepseek` manage DeepSeek enablement, key setup, availability checks, and default fallback to the most mature adapter.
|
|
28
|
-
- DeepSeek is an opportunistic read-only/advisory worker; Kimi remains the most mature
|
|
20
|
+
- DeepSeek is an opportunistic read-only/advisory worker; Kimi remains the most mature adapter, orchestrator, writer, merger, and final authority.
|
|
29
21
|
- `omk graph view` generates an HTML view from `.omk/memory/graph-state.json`.
|
|
30
22
|
- `omk goal` has a persisted lifecycle, continue loop, generated plan/evidence criteria, and verification flow.
|
|
31
23
|
|
|
32
|
-
## v1.2
|
|
24
|
+
## v1.2 — Native Orchestrator Decoupling
|
|
33
25
|
|
|
34
26
|
### Phase 0: Foundation & Spec
|
|
35
27
|
|
|
@@ -68,37 +60,34 @@ Provider routing and graph viewing are no longer purely future work in the sourc
|
|
|
68
60
|
|
|
69
61
|
- Update `AGENTS.md`, `DESIGN.md`, init templates, and skill docs to reflect OMK-as-root narrative.
|
|
70
62
|
- Deprecate Kimi-only subagent language where OMK `ParallelOrchestrator` is the actual spawn surface.
|
|
71
|
-
- Mark v1.2.x stable
|
|
63
|
+
- Mark v1.2.x stable once provider fallback, evidence gates, and DAG replay are green across all supported adapters.
|
|
72
64
|
|
|
73
|
-
##
|
|
65
|
+
## v1.3 — Hardening the current surface
|
|
74
66
|
|
|
75
67
|
### P0: release and contract gates
|
|
76
68
|
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
- Required before
|
|
80
|
-
- Required before
|
|
81
|
-
-
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
-
|
|
86
|
-
- Still required: lock broader provider fallback metadata with tests for rate limit, timeout, and default fallback variants.
|
|
87
|
-
- Still required: define minimum machine-readable CLI envelopes for the rest of the automation-critical commands.
|
|
88
|
-
- Still required: promote additional proof bundles beyond the current baseline, especially provider fallback variants for rate limit, timeout, and default route behavior.
|
|
69
|
+
- Done: YAML validation now runs in local `verify` plus CI/smoke workflows.
|
|
70
|
+
- Done: package dry-pack, package audit, tarball smoke, native safety build, and release matrix gates were re-verified against v1.1.17 artifacts.
|
|
71
|
+
- Required before v1.1.18 publish/tag: regenerate the native safety binary, pass package audit, pass smoke-pack/tarball install smoke, and pass `npm run release:check` on the exact intended release diff.
|
|
72
|
+
- Required before v1.1.18 publish/tag: GitHub Actions CI and Smoke Test must both pass on the exact intended commit.
|
|
73
|
+
- Done: provider/deepseek and screenshot JSON command contracts gained hermetic regression tests.
|
|
74
|
+
- Done: current AGENTS/init templates and packaged workflow skills were aligned with the active skills/MCP/agents/harness surface, including all generated agent MCP/skills/hooks flags and parallel subagent orchestration guidance.
|
|
75
|
+
- Remaining: lock runtime safety gates for native turn risk, approval/sandbox propagation, authority-provider resolution, provider health probes, and DeepSeek read-only routing.
|
|
76
|
+
- Remaining: lock broader provider fallback metadata with tests for rate limit, timeout, and default fallback variants.
|
|
77
|
+
- Remaining: define minimum machine-readable CLI envelopes for the rest of the automation-critical commands.
|
|
89
78
|
|
|
90
79
|
### P1: observability and diagnostics
|
|
91
80
|
|
|
92
|
-
-
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
- Expand JSON output for DAG, summary, and workflow commands where CI or agents consume results.
|
|
96
|
-
- Link
|
|
81
|
+
- Done: provider route/fallback counts are now emitted in run summaries/reports and summary terminal output.
|
|
82
|
+
- Done: invalid MCP JSON is reported as a visible diagnostic without leaking secret-like config values.
|
|
83
|
+
- Done: `omk mcp doctor --json` exposes structured server status, command resolution, timeout, permission, and config-source fields.
|
|
84
|
+
- Expand JSON output for graph, DAG, summary, and workflow commands where CI or agents consume results.
|
|
85
|
+
- Link graph nodes back to runs, goals, providers, and evidence so `omk graph view` becomes audit evidence, not only visualization.
|
|
97
86
|
|
|
98
87
|
### P2: execution depth and planner quality
|
|
99
88
|
|
|
100
89
|
- Deepen `omk team` runtime reporting: worker state, pane/session health, artifacts, and verification handoff.
|
|
101
|
-
-
|
|
90
|
+
- Done: replace the `omk goal plan` stub with a planner that emits steps, acceptance criteria, risks, and evidence gates.
|
|
102
91
|
- Add provider-quality gates before broader non-Kimi worker pools.
|
|
103
92
|
- Keep Kimi execution as the safe fallback path for every run.
|
|
104
93
|
|
|
@@ -106,7 +95,7 @@ Provider routing and graph viewing are no longer purely future work in the sourc
|
|
|
106
95
|
|
|
107
96
|
### Provider routing maturity
|
|
108
97
|
|
|
109
|
-
- Keep Kimi as the most mature
|
|
98
|
+
- Keep Kimi as the most mature adapter and main orchestrator, planner, merger, and final synthesis runtime.
|
|
110
99
|
- Use provider hints for explorer, reviewer, QA, planner, and documentation roles only when preflight is healthy and task risk is low.
|
|
111
100
|
- Record provider attempts, route confidence, fallback reason, and final authority in run evidence.
|
|
112
101
|
|
|
@@ -115,12 +104,10 @@ Provider routing and graph viewing are no longer purely future work in the sourc
|
|
|
115
104
|
- Materialize provider routes, fallback events, goals, evidence gates, and run artifacts in the local graph/Kuzu ontology.
|
|
116
105
|
- Keep `omk graph view` local-first and safe for private repositories.
|
|
117
106
|
|
|
118
|
-
### Historical
|
|
119
|
-
|
|
120
|
-
These are source/development checkpoints unless a release note explicitly says the version was npm-published.
|
|
107
|
+
### Historical milestones
|
|
121
108
|
|
|
122
|
-
|
|
|
123
|
-
|
|
109
|
+
| Version | Focus |
|
|
110
|
+
|---------|-------|
|
|
124
111
|
| v0.1 | init / doctor / chat, P0 skills, AGENTS.md / DESIGN.md generation, quality gate hooks |
|
|
125
112
|
| v0.2 | wire controller, HUD, run state, worker logs |
|
|
126
113
|
| v0.3 | worktree team, merge queue, reviewer / QA / integrator agents |
|
|
@@ -134,5 +121,4 @@ These are source/development checkpoints unless a release note explicitly says t
|
|
|
134
121
|
| v1.1.15 | Isolated HOME MCP shell-profile hotfix and persistent fetch MCP entrypoint |
|
|
135
122
|
| v1.1.16 | Deterministic IntentFrame/ActionAtom orchestration, chat schema preflight, MCP duplicate policy, agent capability propagation, and doctor/init/pack smoke fixes |
|
|
136
123
|
| v1.1.17 | Full generated-agent MCP/skills/hooks enablement, parallel subagent orchestration emphasis, and v1.1.17 release docs |
|
|
137
|
-
| v1.1.18 |
|
|
138
|
-
| v1.2.0-rc.0 | Internal RC target for the `v1.2` runtime contract family, provider-neutral docs alignment, version contract docs, and provider maturity limits |
|
|
124
|
+
| v1.1.18 | **Last Kimi-wrapper dominant release.** Package source version alignment, latest-published v1.1.17 caveat, native safety package gate, typed doctor repair plans, startup update prompt UX, and parallel subagent orchestration release-doc alignment |
|
|
@@ -495,8 +495,8 @@ export async function runKimiInteractive(args, options) {
|
|
|
495
495
|
throw new Error("[omk] Failed to load node-pty native module. " +
|
|
496
496
|
`(${message})\n` +
|
|
497
497
|
"This usually happens when installed with --ignore-scripts.\n" +
|
|
498
|
-
"Fix: npm rebuild -g
|
|
499
|
-
"Or reinstall: npm uninstall -g
|
|
498
|
+
"Fix: npm rebuild -g open-multi-agent-kit\n" +
|
|
499
|
+
"Or reinstall: npm uninstall -g open-multi-agent-kit && npm install -g open-multi-agent-kit");
|
|
500
500
|
}
|
|
501
501
|
let ptyProcess;
|
|
502
502
|
try {
|
package/dist/brand/theme.js
CHANGED
|
@@ -76,8 +76,8 @@ export const GREEN_RAIN_THEME = {
|
|
|
76
76
|
export const NEON_GRID_THEME = {
|
|
77
77
|
name: "neon-grid",
|
|
78
78
|
label: "OMK//CONTROL",
|
|
79
|
-
tagline: "OMK control plane for
|
|
80
|
-
motto: "
|
|
79
|
+
tagline: "Cyberpunk OMK control plane for routed agent work.",
|
|
80
|
+
motto: "Control the loop — route · verify · loop · control",
|
|
81
81
|
symbols: {
|
|
82
82
|
prompt: "›",
|
|
83
83
|
active: "●",
|