@mindrian_os/cli 1.15.0-beta.7 → 1.15.0-beta.9

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 (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## [1.15.0-beta.9] - 2026-06-28
2
+
3
+ ### Added
4
+ - **Phase 187 - Statusline navigator cockpit.** The statusline is rebuilt to serve the NAVIGATOR (not the operator), per the LOCKED `docs/STATUSLINE-CONTRACT.md` (Phase 121.5 co-design rule). Four tiers in a hierarchy: (1) trust metadata (Mindrian glyph + Voice Signature glyph + Brain), (2) orientation + room-health, (3) `Next: <move>` action cue, (4) `Ctx <n>%` risk. Color is carried by EMOJI GLYPHS (host-independent; this host strips ANSI). REORDER-AT-CLIFF: at >=80% context the line promotes "file this insight to the room before it compacts" to the hero slot; post-update drift promotes `-> run /mos:doctor --fix`. NORMATIVE anti-Dealer invariant INV-SL-1..5 (success metric = % of exposures that lead to a real advancing action, never time-on-line). `lib/statusline/cockpit-renderer.cjs` (pure) + `cockpit-signals.cjs` + `cockpit-telemetry.cjs` (LOCAL INV-SL-2 hook) wired into `scripts/context-monitor`; the two-row block is preserved. test-statusline-cockpit-187 14 tests/117 assertions; run-all-187 2/2.
5
+ - **Phase 184 - READER decide-time projection offer (navigator-authority override).** `decide()` gains the projection read it lacked: it ranks capabilities from the LOCAL orchestration projection + connector registry + recipe-maps and surfaces them as Shape F Decision-Gate OPTION CONTENT. A third READER, never a firer (R4 structural guard: `decide()` has no code path to runChain/act-command, proven by test). `lib/core/reader/decide-projection-reader.cjs` (READER-01..04 + R2 projection-correctness gate + R3 ambient latency/context budget) + `ab-harness.cjs` (R1 A/B). run-all-184 2/2 (39+23 assertions); run-all-144 5/5 (no decide() regression).
6
+ - **Phase 185 - DRIFT runtime reachability.** `doctor --drift` now FAILS when a WIRED capability is unreachable by `decide()` at runtime (previously merge-time marking only; CIRS R7). A capability is unreachable when it is WIRED in the connector registry and reader-eligible (command/agent) but the Phase-184 reader's deterministic ranker emits no candidate for its projection node. Calibrated GREEN on shipped data: 85 WIRED command/agent capabilities all reader-emitted, 5 WIRED skills correctly scoped out. Additive Class R in `scripts/doctor.cjs` + `lib/core/drift-runtime-reachability.cjs`; non-zero exit scoped so real `--drift`/`--all` stay green. run-all-185 1/1 (11 assertions); run-all-150.9 6/6 (no doctor regression).
7
+
8
+ ### Fixed
9
+ - **Phase 182.1 - SIGNAL voice-glyph repair (dogfood fix).** Dogfooding v1.15.0-beta.7 found the Phase 182 Voice Signature was DARK at runtime (the doctrine lived only in the skill, not the always-loaded agent body, and the test asserted the doctrine string existed but never that a turn emitted a mark) AND that neither a bracketed color-name word nor ANSI escape codes render color on the navigator's host (ANSI is stripped to literal text). Fix delivers the 5 De Stijl Mondrian primaries as colored EMOJI GLYPHS (host-independent, verified): blue=building, red=challenging, yellow=contradiction, black=gate, white=invisibility. Same 5-primary palette; only the delivery mechanism moved from word/ANSI to glyph. Touches `agents/larry-extended.md` (the always-loaded body), `lib/hmi/voice-color-mark.cjs` (glyph-aware detector), both voice SKILL doctrines, and `lib/core/nav-dial.cjs` (the dial-TUI gains a leading glyph so its dead-ANSI color survives). Frozen MAX_K=3 / DIAL_REACH_K=6 / 0.70-0.15 / 6-reach bank UNCHANGED. voice-mark 106/106, dial PASS, run-all-182 5/5.
10
+
11
+ ### Known follow-ons
12
+ - **184 R1 live A/B remains a NAMED DEBT.** Phase 184 was deferred as evidence-blocked; the navigator overrode the deferral on authority (the entry-20 pattern). The deferral reason does not vanish: R1's live grounded-vs-ungrounded A/B needs a real navigator reaching the gate (the same evidence METER came back missing, `subject_class=unknown`), so it reads `uninstrumented` today and a maintainer reading does not clear it. The CODE ships green; the live reading is recorded as a debt, not fabricated.
13
+ - **187 host signals not exposed on the hot path:** `/mos:doctor` does not yet write a room-health status cache (cockpit reads `~/.mindrian/room-health.json`, defaults sound); the Voice-glyph WRITE side (a turn-capture hook) is unwired (glyph read from a side-channel); next-move uses the JTBD proxy. Post-update drift IS wired.
14
+ - The entry-31 self-binding clause stays UNCLEARED (no navigator-class two-gauge reading yet); Appendix D entry 32 remains parked by design.
15
+
1
16
  ## [1.15.0-beta.7] - 2026-06-27
2
17
 
3
18
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindrian_os/cli",
3
- "version": "1.15.0-beta.7",
3
+ "version": "1.15.0-beta.9",
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",