open-multi-agent-kit 0.90.9 → 0.91.0
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/CHANGELOG.md +22 -3
- package/README.md +14 -1
- package/dist/core/agent-session.d.ts +27 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +188 -25
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/command-safety.d.ts.map +1 -1
- package/dist/core/command-safety.js +0 -8
- package/dist/core/command-safety.js.map +1 -1
- package/dist/core/footer-data-provider.d.ts +7 -1
- package/dist/core/footer-data-provider.d.ts.map +1 -1
- package/dist/core/footer-data-provider.js +12 -0
- package/dist/core/footer-data-provider.js.map +1 -1
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +1 -0
- package/dist/core/index.js.map +1 -1
- package/dist/core/metrics-sampler.d.ts +20 -0
- package/dist/core/metrics-sampler.d.ts.map +1 -1
- package/dist/core/metrics-sampler.js +52 -0
- package/dist/core/metrics-sampler.js.map +1 -1
- package/dist/core/model-registry.d.ts.map +1 -1
- package/dist/core/model-registry.js +4 -1
- package/dist/core/model-registry.js.map +1 -1
- package/dist/core/model-resolver.d.ts.map +1 -1
- package/dist/core/model-resolver.js +15 -6
- package/dist/core/model-resolver.js.map +1 -1
- package/dist/core/provider-resilience.d.ts +51 -0
- package/dist/core/provider-resilience.d.ts.map +1 -0
- package/dist/core/provider-resilience.js +86 -0
- package/dist/core/provider-resilience.js.map +1 -0
- package/dist/core/run-journal.d.ts.map +1 -1
- package/dist/core/run-journal.js +14 -22
- package/dist/core/run-journal.js.map +1 -1
- package/dist/core/session-termination.d.ts +8 -2
- package/dist/core/session-termination.d.ts.map +1 -1
- package/dist/core/session-termination.js +45 -3
- package/dist/core/session-termination.js.map +1 -1
- package/dist/core/settings-manager.d.ts +30 -0
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +17 -0
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/core/tools/grep.d.ts.map +1 -1
- package/dist/core/tools/grep.js +47 -0
- package/dist/core/tools/grep.js.map +1 -1
- package/dist/core/tools/omp-pure-seams.d.ts +41 -0
- package/dist/core/tools/omp-pure-seams.d.ts.map +1 -0
- package/dist/core/tools/omp-pure-seams.js +142 -0
- package/dist/core/tools/omp-pure-seams.js.map +1 -0
- package/dist/core/tools/omp-seam-runtime.d.ts +100 -0
- package/dist/core/tools/omp-seam-runtime.d.ts.map +1 -0
- package/dist/core/tools/omp-seam-runtime.js +40 -0
- package/dist/core/tools/omp-seam-runtime.js.map +1 -0
- package/dist/core/tools/read.d.ts.map +1 -1
- package/dist/core/tools/read.js +34 -1
- package/dist/core/tools/read.js.map +1 -1
- package/dist/modes/interactive/components/footer.d.ts +1 -1
- package/dist/modes/interactive/components/footer.d.ts.map +1 -1
- package/dist/modes/interactive/components/footer.js +11 -8
- package/dist/modes/interactive/components/footer.js.map +1 -1
- package/dist/modes/interactive/theme/omk-aurora-dark.json +80 -0
- package/dist/modes/interactive/theme/omk-aurora-light.json +80 -0
- package/dist/modes/interactive/theme/theme.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme.js +5 -0
- package/dist/modes/interactive/theme/theme.js.map +1 -1
- package/docs/adaptorch-preview.md +1 -1
- package/docs/provider-resilience.md +87 -0
- package/docs/settings.md +30 -0
- package/docs/themes.md +2 -0
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/gondolin/package-lock.json +2 -2
- package/examples/extensions/gondolin/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/npm-shrinkwrap.json +22 -13
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.91.0] - 2026-07-21
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- **System-wide resource metrics in the footer** — the footer CPU/MEM segment now reports whole-machine utilization (aggregate `os.cpus()` busy percentage and `totalmem - freemem`) instead of process-scoped usage. Wide terminals show `CPU 42% MEM 35% (18.0GB/50.5GB)`; thresholds are percentage-based (warning ≥70% CPU or ≥85% MEM, error ≥90%/95%). Process-scoped getters remain available on the sampler for diagnostics.
|
|
10
|
+
- **Aurora theme pair** — new built-in `omk-aurora-dark` and `omk-aurora-light` themes with WCAG-verified contrast (body text ≥14:1, muted ≥5.7:1, semantic colors ≥4.5:1), a full 51-token color map, and a stepped thinking-level color ramp. Aliases: `aurora`, `aurora-dark`, `aurora-light`.
|
|
11
|
+
- **AdaptOrch advisory bridge wiring** — opt-in, global-only `adaptorchBridge` settings block (`enabled`, `ttlMs`, `timeoutMs`, `maxConsultsPerSession`, `failureThreshold`). When enabled, the v4 auto thinking-level resolver consults the circuit-breaker-protected, TTL-cached advisory bridge and fuses the returned hint as a bounded ±2-step nudge; the resolver's own confidence escalation still applies on top. Default remains fully off, and a project-scope settings file can never enable it.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- **`omk-adaptorch-wpl` promoted to stable** and added as a runtime dependency of `open-multi-agent-kit` (lockstep `0.91.0`). The Work Packet Loop state machine, outcome adjudicator, and verification-wall modules now ship with the CLI package.
|
|
16
|
+
- Repository hygiene: local-only research corpora and audit artifacts are no longer tracked in git (they remain on disk, with a local SHA-256 integrity manifest for the project-owned subset).
|
|
17
|
+
|
|
5
18
|
### Fixed
|
|
6
19
|
|
|
7
20
|
- Masked API-key-like values in newly submitted user chat before extensions, models, event streams, and session persistence.
|
|
21
|
+
- Restored `omk-adaptorch-wpl` handling in the coding-agent shrinkwrap generator so internal workspace packaging stays reproducible.
|
|
22
|
+
|
|
23
|
+
### Notes
|
|
24
|
+
|
|
25
|
+
- Published to npm as `open-multi-agent-kit@0.91.0` (lockstep with `omk-ai`, `omk-agent-core`, `omk-tui`, and `omk-adaptorch-wpl` at `0.91.0`).
|
|
26
|
+
- Verification boundary: `tsgo --noEmit` clean; adaptorch-wpl suite 73/73, coding-agent regression suite 784/784, theme suites green. Live-provider coverage remains outside this release.
|
|
8
27
|
|
|
9
28
|
## [0.90.9] - 2026-07-19
|
|
10
29
|
|
|
@@ -17,10 +36,10 @@
|
|
|
17
36
|
- Added typed termination, incomplete-run recovery, and `omk session doctor`, including dry-run repair for unambiguous recoverable state only.
|
|
18
37
|
- Added provider-origin-aware `omk provider doctor` diagnostics with sanitized Level 0–2 probes for native, custom OpenAI-compatible, and local-proxy endpoints.
|
|
19
38
|
|
|
20
|
-
###
|
|
39
|
+
### Notes
|
|
21
40
|
|
|
22
|
-
-
|
|
23
|
-
-
|
|
41
|
+
- Published to npm as `open-multi-agent-kit@0.90.9` (lockstep with `omk-ai`, `omk-agent-core`, and `omk-tui` at `0.90.9`); prebuilt binaries are attached to the GitHub release.
|
|
42
|
+
- Verification boundary: build/check and the keyless workspace suite passed; live-provider and other-OS coverage remain outside this release. Validate existing integrations against your workload.
|
|
24
43
|
|
|
25
44
|
## [0.90.8] - 2026-07-13
|
|
26
45
|
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<p align="center">
|
|
16
16
|
<a href="https://discord.com/invite/3cU7Bz4UPx"><img alt="Discord" src="https://img.shields.io/badge/discord-community-5865F2?style=flat-square&logo=discord&logoColor=white" /></a>
|
|
17
17
|
<a href="https://www.npmjs.com/package/open-multi-agent-kit"><img alt="npm" src="https://img.shields.io/npm/v/open-multi-agent-kit?style=flat-square" /></a>
|
|
18
|
-
<a href="https://github.com/dmae97/omk/releases/tag/v0.
|
|
18
|
+
<a href="https://github.com/dmae97/omk/releases/tag/v0.91.0"><img alt="Release" src="https://img.shields.io/badge/release-v0.91.0-00d7ff?style=flat-square" /></a>
|
|
19
19
|
</p>
|
|
20
20
|
|
|
21
21
|
> New issues and PRs from new contributors are auto-closed by default. Maintainers review auto-closed issues daily. See [CONTRIBUTING.md](https://github.com/dmae97/open-multi-agent-kit/blob/v0.90.4/CONTRIBUTING.md).
|
|
@@ -32,6 +32,19 @@ The OMK//CONTROL startup surface is the default operator view. The header reads
|
|
|
32
32
|
|
|
33
33
|
The default dark TUI theme uses the `omk-control-grid-dark` Night City palette and keeps the control sidebar focused on route, evidence, loop, MCP, runtime, skills, and context budget state.
|
|
34
34
|
|
|
35
|
+
## Release v0.91.0
|
|
36
|
+
|
|
37
|
+
This feature release moves footer resource metrics to whole-machine telemetry, ships the WCAG-verified Aurora theme pair, stabilizes the AdaptOrch Work Packet Loop package as a CLI runtime dependency, and adds two built-in subscription providers (Qwen, Grok).
|
|
38
|
+
|
|
39
|
+
| Area | What changed |
|
|
40
|
+
|------|--------------|
|
|
41
|
+
| Footer metrics | CPU/MEM now reflect the whole machine (`os.cpus()` busy %, `totalmem - freemem`) instead of the OMK process, with percentage-based warning/error thresholds. |
|
|
42
|
+
| Themes | `omk-aurora-dark` / `omk-aurora-light`: WCAG-verified contrast (body ≥14:1, semantic ≥4.5:1), stepped thinking-level ramp, aliases `aurora` / `aurora-dark` / `aurora-light`. |
|
|
43
|
+
| AdaptOrch | `omk-adaptorch-wpl` promoted to stable as a CLI runtime dependency; opt-in global-only `adaptorchBridge` advisory hints for the auto thinking-level resolver (default off). |
|
|
44
|
+
| Providers | New built-in subscription providers under `/login`: Qwen (Qwen Code Subscription) and Grok (xAI OAuth Proxy). |
|
|
45
|
+
|
|
46
|
+
GitHub-focused release notes live in [RELEASE_NOTES_v0.91.0.md](https://github.com/dmae97/omk/blob/v0.91.0/.github/RELEASE_NOTES_v0.91.0.md). The GitHub release workflow also extracts the canonical release body from [packages/coding-agent/CHANGELOG.md](https://github.com/dmae97/omk/blob/v0.91.0/packages/coding-agent/CHANGELOG.md).
|
|
47
|
+
|
|
35
48
|
## Release v0.90.8
|
|
36
49
|
|
|
37
50
|
This patch release adds the tool-free GPT-5.6 MoA model, ordered path-safe tool-batch waves, global context-budget controls, and evidence-gated computer-use integrations.
|
|
@@ -242,6 +242,15 @@ export declare class AgentSession {
|
|
|
242
242
|
*/
|
|
243
243
|
private _reasoningRouterBiasSnapshot;
|
|
244
244
|
private _reasoningRouterBiasSnapshotLoaded;
|
|
245
|
+
/**
|
|
246
|
+
* AdaptOrch advisory bridge (default-off, global-only opt-in via
|
|
247
|
+
* `adaptorchBridge.enabled` in ~/.omk/agent/settings.json). Lazily
|
|
248
|
+
* constructed on the first v4 auto-turn when enabled; stays `null`
|
|
249
|
+
* otherwise. The bridge is advisory-only: its hint is fused into the
|
|
250
|
+
* resolver as a bounded ±2 step nudge, never as an override.
|
|
251
|
+
*/
|
|
252
|
+
private _adaptorchBridge;
|
|
253
|
+
private _adaptorchBridgeInitAttempted;
|
|
245
254
|
private _unsubscribeAgent?;
|
|
246
255
|
private _eventListeners;
|
|
247
256
|
private _messageEndReplacements;
|
|
@@ -649,6 +658,22 @@ export declare class AgentSession {
|
|
|
649
658
|
* coefficient); computed for future calibrated weight presets.
|
|
650
659
|
*/
|
|
651
660
|
private _computePressureBucket;
|
|
661
|
+
/**
|
|
662
|
+
* AdaptOrch advisory bridge hint accessor (default-off, global-only).
|
|
663
|
+
* Lazily constructs the bridge on first call when enabled; returns `null`
|
|
664
|
+
* (no hint) otherwise. The bridge's `getFreshHint` is synchronous and
|
|
665
|
+
* cache-read-only, so this never blocks the turn-start path. A fire-and-
|
|
666
|
+
* forget `requestRefresh` is issued for the NEXT turn's benefit.
|
|
667
|
+
*
|
|
668
|
+
* The returned hint is shaped as `{ level, confidence }` for the resolver's
|
|
669
|
+
* hint-fusion slot: confidence is mapped from the bridge's closed
|
|
670
|
+
* `confidenceBand` enum (low=0.5, medium=0.75, high=0.95) and the level is
|
|
671
|
+
* derived from the bridge's `taskClass` via the same static rule table the
|
|
672
|
+
* resolver uses. The resolver's own HINT_CONFIDENCE_THRESHOLD (0.7) gates
|
|
673
|
+
* whether the hint actually fuses, so a "low" band hint is structurally
|
|
674
|
+
* inert.
|
|
675
|
+
*/
|
|
676
|
+
private _getAdaptorchHint;
|
|
652
677
|
/**
|
|
653
678
|
* Cycle to next thinking level.
|
|
654
679
|
* @returns New level, or undefined if model doesn't support thinking
|
|
@@ -730,6 +755,8 @@ export declare class AgentSession {
|
|
|
730
755
|
* Context overflow errors are NOT retryable (handled by compaction instead).
|
|
731
756
|
*/
|
|
732
757
|
private _isRetryableError;
|
|
758
|
+
private _ejectStickySafetyModelIfNeeded;
|
|
759
|
+
private _maybeFailoverFromSafetyStop;
|
|
733
760
|
private _prepareRetry;
|
|
734
761
|
/**
|
|
735
762
|
* Cancel in-progress retry.
|