@mindrian_os/cli 1.15.2-beta.1 → 1.15.3-beta.1
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 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## [1.15.3-beta.1] - 2026-07-03
|
|
2
|
+
|
|
3
|
+
### Changed
|
|
4
|
+
- **Phase 210 - Revert persona-enforcement over-reach (restores Larry's conversational judgment).** Root cause of the navigator-reported "v1.15 behaves less like Larry" regression: five phases in the v1.15 window (2026-06-24 through 2026-07-02) turned voice/gate judgment calls into mechanical HARD-FAIL/BINDING checks. Each is now softened to advisory or relevance-gated behavior while its underlying capability stays intact:
|
|
5
|
+
- **(A) Shape-declaration gate is advisory (Phases 190 + 209-03).** `scripts/check-shape-declaration.cjs --check` now WARNs and exits 0 -- every violation is still detected and enumerated, so the lint signal survives; `--strict` restores the pre-210 hard-fail. Rewired at both call sites (release.sh Step 2, doctor --acceptance); the render-coverage, corpus-stats, connector, and projection gates keep their HARD-ABORT semantics.
|
|
6
|
+
- **(B) Voice-glyph mapping is a default, not a lock (Phase 192).** Natural voice detection wins when it yields a color; the stance color fills the default only when detection is silent. The stance-toggle footer is offered when the navigator is genuinely mid-decision about conversational mode, not on every turn.
|
|
7
|
+
- **(C) APO voice-contract scores, never vetoes (Phase 202).** The disqualifier filter is gone: violations dent the candidate's blended score (0.05 per violation, visible as voiceFlagged + voiceViolations on the record) while quality primacy stays structural. The detector itself is byte-untouched.
|
|
8
|
+
- **(D) Elevation quorum suggests, never forces (Phase 205).** `sessionEndQuorum` returns suggested:true / forced:false; the hedged hypothesis floor (offered, never committed, no edge written) is byte-preserved.
|
|
9
|
+
- **(E) Force-fire is relevance-gated (Phase 209).** The Stop-hook backstop no longer blocks when the navigator already plainly answered the question, or when the gate has zero subject connection to the current turn (new shared predicate `lib/core/gate-relevance.cjs`; conservative verdict: uncertainty still intercepts). The trailer imperative flips from unconditional `[BINDING:` to conditional `[FIRE-IF-FORK:`; all 80 body-stamped commands swept to the v2 firing block; both auto-loaded doctrine surfaces (larry-extended agent, ui-system skill) now teach fire-if-genuine-fork. A genuine, relevant, unanswered fork STILL fires the card -- proven in both directions by the phase's two-directional tests.
|
|
10
|
+
- **Canon v1.24.** Part 11 R16's enforcement clause amended (Appendix D entry 37, navigator-ratified) from unconditional HARD-FAIL to advisory-by-default with a --strict opt-in.
|
|
11
|
+
- **Preserve guarantees.** The Phase 194 session-room-binding gate, Phase 196 Brain-egress PreToolUse guardrail, and Phase 200 semantic-floor gate are byte-untouched (data-boundary, not persona); the 19 standalone v1.15 bug fixes and every underlying capability (declared-shape tracking, the glyph vocabulary, the elevation taxonomy, the AskUserQuestion primitive) survive. `tests/run-all-210.sh` PASS=14 FAIL=0 SKIP=0; the five softened phases' own aggregators (190/192/202/205/209) all green; doctor --acceptance 14/14.
|
|
12
|
+
|
|
13
|
+
## [1.15.2] - 2026-07-02
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- **Phase 209 - Shape-F Native Fire, Waves 2-4 (closes the declared-vs-rendered gap).** Completes the gate-native-fire fix plan Wave 1 started (1.15.2-beta.1): every surface that declares a Shape-F Decision Gate now fires the AskUserQuestion card natively, and the check-card-fire.cjs backstop is demoted to telemetry (target: intercepts trend to zero) rather than the mechanism navigators experience.
|
|
17
|
+
- **Wave 2 (render rollout):** `scripts/stamp-firing-block.cjs` stamped the canonical firing block + AskUserQuestion tool grant into all 97 declaring commands (80 body-stamped, 93 tool-granted, idempotent). `scripts/check-shape-declaration.cjs` gained three declared-implies-wired predicates (wired-body, tool-grant, declared-matches-body), and `scripts/check-render-coverage.cjs` gained a second `.md` keyspace alongside the existing `.cjs` one -- both fail closed. `commands/futures.md`'s F.2/F.1 frontmatter-vs-body drift is reconciled.
|
|
18
|
+
- **Wave 3 (conversational-gate bridge):** a new SENS-12 sensor (`lib/core/sensors/sensor-room-pick.cjs`) detects a mid-dialogue room resume/switch (the incident's actual transport-less fork -- no command, no engine dial) and injects the room-chooser card envelope. `lib/core/card-fire-sidechannel.cjs` lands the PRIMARY (registry-keyed) side-channel producer at all three gate-mint sites, wiring `check-card-fire.cjs`'s previously-inert PRIMARY detection live. `scripts/session-start` no longer teaches the "Type 1, 2, or 3" ASCII-box anti-pattern it exists to catch.
|
|
19
|
+
- **Wave 4 (backstop tuning, sequenced last):** `ASCII_BOX_GLYPH_RE` drops the bare U+25A0 false-positive (sanctioned UI vocabulary) and adds multiline-labeled-box and numbered-prose-gate false-negative coverage; the `askFired` detection window widens from the last assistant message to the whole current turn.
|
|
20
|
+
- **Eval gate:** a new Plurai eval (`lib/core/card-fire-gate.cjs`, `evals/plurai/13-native-fire.csv`) judges card-fired-vs-prose fidelity, following the Phase 196/201 frozen-invariant + `baseline_deferred` pattern.
|
|
21
|
+
- **Adversarial verification:** `tests/test-209-incident-replay.cjs` replays the incident transcript shape end to end and proves all four RESEARCH-mandated outcomes (native fire, zero intercepts, coverage green, sanctioned glyph safe). `bash tests/run-all-209.sh` = PASS=9 FAIL=0 SKIP=0. Constitutional floor (Stop-block re-prompt, degrade envelope, MAX_FORCE_RETRIES=3, MAX_SESSION_INTERCEPTS=12) verified byte-untouched throughout.
|
|
22
|
+
|
|
1
23
|
## [1.15.2-beta.1] - 2026-07-02
|
|
2
24
|
|
|
3
25
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindrian_os/cli",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.3-beta.1",
|
|
4
4
|
"description": "Install MindrianOS into Claude Code with one command -- `npx @mindrian_os/cli`. Ships the MindrianOS plugin (Larry + PWS methodology + Data Room) plus a setup/diagnostics CLI (install/doctor/update).",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"mcp": "node bin/mindrian-mcp-server.cjs",
|