@mindrian_os/cli 2.0.0-beta.17 → 2.0.0-beta.21

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 +56 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,59 @@
1
+ ## [2.0.0-beta.21] - 2026-09-04
2
+
3
+ ### Fixed
4
+ - `room_search` no longer skips every non-`.md` file in a room. `lib/mcp/tools/room.cjs`'s
5
+ file walk widened its allowlist to `.html` and `.htm` (grounded in the repo's own canonical
6
+ artifact extension list, `graph-backfill.cjs`'s `ARTIFACT_EXT`), so search now finds content
7
+ inside HTML briefs, rubrics, and decks that a room's own tools already generate. A new
8
+ dependency-free, line-preserving text pass strips markup before matching, so `<script>`,
9
+ `<style>`, and comment regions cannot produce a false hit, and the reported line number stays
10
+ correct against the source file. 22-check regression suite added
11
+ (`tests/test-room-search-html-blindness.cjs`).
12
+ - Filed, not fixed in this cut: the same root cause (a docblock in
13
+ `lib/core/doc-text-extractor.cjs` incorrectly claims the `cheerio` HTML parser is available;
14
+ it is in neither `package.json` nor `node_modules`) means `.html` room artifacts still
15
+ contribute no text to graph derivation, candidate production, or LazyGraph. Adding `cheerio`
16
+ is a dependency and release decision, tracked at
17
+ `.planning/debug/html-artifacts-invisible-to-graph-derivation.md`.
18
+
19
+ ## [2.0.0-beta.19] - 2026-09-04
20
+
21
+ ### Changed
22
+ - **The flip.** `lib/core/brain-client.cjs` line 24's default origin moves from the incumbent
23
+ Brain to `https://theo-mcp.onrender.com`, a BARE origin (no path, no trailing slash). For a
24
+ user: Larry's methodology now comes from Theo, and nothing about how you use MindrianOS
25
+ changes. Rollback stays one line: revert line 24 in a patch release, or set
26
+ `MINDRIAN_BRAIN_URL` on one install. Both paths are valid only while the previous service is
27
+ still running. The previous service is SUSPENDED after a soak window, never deleted, compute
28
+ suspended before data.
29
+ - Doctor's class M layer 6 store-identity check is now complete across both cuts. The
30
+ dual-shape `brain_stats` read shipped in the PREP cut (safe against both Brains). This cut
31
+ moves the two values that had to move WITH the origin: the canon endpoint (`CANON_BRAIN_URL`)
32
+ and the per-origin node floor (`CANON_NODE_FLOOR = 29000` for the incumbent,
33
+ `THEO_NODE_FLOOR = 1000` for Theo). The floor keys on the resolved origin, so a
34
+ `MINDRIAN_BRAIN_URL` rollback restores the incumbent's floor in the same motion.
35
+ - The `test-245` tripwire (`tests/test-245-skill-frontmatter-inert-keys.cjs`) and `CLAUDE.md`
36
+ moved together with line 24, in the same commit, per the pairing that tripwire exists to
37
+ enforce.
38
+
39
+ ### Known, expected behavior after the flip
40
+ - `/mos:leadership` and due-diligence consults answer thinner through Theo until the 30
41
+ uncovered names are ingested (Theo holds the `/mos:leadership` command node with zero
42
+ framework links); this is an honest-empty coverage block, not an error. Covered: 228 of 258,
43
+ 88.4%. Uncovered: 30 of 258. The 30 names bind Theo's decommission task, not this flip.
44
+ - `brain_write` always refuses with `WRITE_PATH_DISABLED`: canon writes go through Theo's own
45
+ governed payload path, and this is not a tier a better key opens.
46
+ - A count-store query plan may draw `PLAN_REJECTED`; answer it by adding a property filter, not
47
+ by concluding the tool is broken.
48
+ - `scripts/probe-brain-contract.cjs` legs invert as expected, documented not broken: legs a and
49
+ d port cleanly; leg b inverts because Theo SERVES `text2cypher` (the expected 403 does not
50
+ arrive) and `brain_ask_anything` still draws an unknown-tool error, but for a different reason
51
+ (Theo has no allowlist gate at all); leg c partially inverts because `BoundedReadRefusal` is
52
+ incumbent-authored text while Theo's refusals are typed codes; leg e inverts entirely because
53
+ it asserts Memgraph index names Theo's Aura instance does not have.
54
+ - The enrichment queue will capture on nearly every `orchestration_readiness` call during soak.
55
+ That is canon thinness correctly measured, bounded and deduped by framework name, not a leak.
56
+
1
57
  ## [2.0.0-beta.17] - 2026-09-04
2
58
 
3
59
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindrian_os/cli",
3
- "version": "2.0.0-beta.17",
3
+ "version": "2.0.0-beta.21",
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",