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

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 +38 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,41 @@
1
+ ## [2.0.0-beta.19] - 2026-09-04
2
+
3
+ ### Changed
4
+ - **The flip.** `lib/core/brain-client.cjs` line 24's default origin moves from the incumbent
5
+ Brain to `https://theo-mcp.onrender.com`, a BARE origin (no path, no trailing slash). For a
6
+ user: Larry's methodology now comes from Theo, and nothing about how you use MindrianOS
7
+ changes. Rollback stays one line: revert line 24 in a patch release, or set
8
+ `MINDRIAN_BRAIN_URL` on one install. Both paths are valid only while the previous service is
9
+ still running. The previous service is SUSPENDED after a soak window, never deleted, compute
10
+ suspended before data.
11
+ - Doctor's class M layer 6 store-identity check is now complete across both cuts. The
12
+ dual-shape `brain_stats` read shipped in the PREP cut (safe against both Brains). This cut
13
+ moves the two values that had to move WITH the origin: the canon endpoint (`CANON_BRAIN_URL`)
14
+ and the per-origin node floor (`CANON_NODE_FLOOR = 29000` for the incumbent,
15
+ `THEO_NODE_FLOOR = 1000` for Theo). The floor keys on the resolved origin, so a
16
+ `MINDRIAN_BRAIN_URL` rollback restores the incumbent's floor in the same motion.
17
+ - The `test-245` tripwire (`tests/test-245-skill-frontmatter-inert-keys.cjs`) and `CLAUDE.md`
18
+ moved together with line 24, in the same commit, per the pairing that tripwire exists to
19
+ enforce.
20
+
21
+ ### Known, expected behavior after the flip
22
+ - `/mos:leadership` and due-diligence consults answer thinner through Theo until the 30
23
+ uncovered names are ingested (Theo holds the `/mos:leadership` command node with zero
24
+ framework links); this is an honest-empty coverage block, not an error. Covered: 228 of 258,
25
+ 88.4%. Uncovered: 30 of 258. The 30 names bind Theo's decommission task, not this flip.
26
+ - `brain_write` always refuses with `WRITE_PATH_DISABLED`: canon writes go through Theo's own
27
+ governed payload path, and this is not a tier a better key opens.
28
+ - A count-store query plan may draw `PLAN_REJECTED`; answer it by adding a property filter, not
29
+ by concluding the tool is broken.
30
+ - `scripts/probe-brain-contract.cjs` legs invert as expected, documented not broken: legs a and
31
+ d port cleanly; leg b inverts because Theo SERVES `text2cypher` (the expected 403 does not
32
+ arrive) and `brain_ask_anything` still draws an unknown-tool error, but for a different reason
33
+ (Theo has no allowlist gate at all); leg c partially inverts because `BoundedReadRefusal` is
34
+ incumbent-authored text while Theo's refusals are typed codes; leg e inverts entirely because
35
+ it asserts Memgraph index names Theo's Aura instance does not have.
36
+ - The enrichment queue will capture on nearly every `orchestration_readiness` call during soak.
37
+ That is canon thinness correctly measured, bounded and deduped by framework name, not a leak.
38
+
1
39
  ## [2.0.0-beta.17] - 2026-09-04
2
40
 
3
41
  ### 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.19",
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",