@mindrian_os/cli 1.15.3-beta.46 → 1.15.3-beta.48

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 +34 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,37 @@
1
+ ## [1.15.3-beta.48] - 2026-07-26
2
+
3
+ ### Added
4
+ - **Room-graph density read (Phase 232.1).** `/mos:doctor` and `room_state status`/`get-state`
5
+ now self-report node/edge counts per `room.db`, read exclusively through a new read-only
6
+ `navigation.cjs` door (`openRoomDbReadOnlyForCaller`) -- never the mutating door, never a
7
+ direct `room.db` open. Closes SEED-074's own "suggested first move"
8
+ (`.planning/seeds/SEED-074-local-graph-read-layer-lacks-salience-and-query-time-joins.md`):
9
+ the seed's actual PageRank/Louvain/query-time-join target stays gated exactly as written;
10
+ this only makes its own trigger condition (measured room.db density) self-reported instead
11
+ of something a human has to remember to check by hand. No output string anywhere claims a
12
+ room graph is dense, at-risk, or healthy (hard guard, grep-verified). Goal-backward
13
+ verification PASS, 6/6 must-haves (`232.1-VERIFICATION.md`).
14
+ - Local reified-claim `ContradictionEvent` primitive (quick task 260725-9ca), with a hermetic
15
+ acceptance test.
16
+
17
+ ### Fixed
18
+ - **`room_bind` could report `ok:true` while a sibling MCP read tool silently resolved a
19
+ stale, unrelated room.** Root cause: 20 of 21 MCP tool call sites were missing the
20
+ `CLAUDE_CODE_SESSION_ID` stdio fallback that `room_bind` itself already had, so a
21
+ session-id mismatch between the bind call and a later read call could bind one room but
22
+ read another without ever surfacing an error. Fixed via one shared
23
+ `resolveEffectiveSessionId` helper, wired into all 21 sites; live-reproduced, then closed,
24
+ tests green. Full reproduction and root cause also filed in the `rethinking-mindrianos`
25
+ room per this repo's dev-research compositing rule.
26
+ - **Phase 232.1's own room-graph density census could silently drop a room that used the
27
+ `abs_path` registry field instead of `path`,** undermining the one thing the census exists
28
+ to be accurate about. `resolveRoomPath` now checks `abs_path` first, `path` as fallback,
29
+ matching the precedence every other production call site in this codebase already honors;
30
+ pinned by a mutation-verified regression test (reverted, confirmed red, restored, confirmed
31
+ green). The identical gap in the earlier, already-shipped `cascade-rooms-module.cjs` this
32
+ was copied from is left alone -- out of this phase's scope, tracked separately as
33
+ low-severity follow-up debt.
34
+
1
35
  ## [1.15.3-beta.46] - 2026-07-23
2
36
 
3
37
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindrian_os/cli",
3
- "version": "1.15.3-beta.46",
3
+ "version": "1.15.3-beta.48",
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",