@mindrian_os/cli 1.16.0-beta.11 → 1.16.0-beta.13
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 +33 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
## [1.16.0-beta.13] - 2026-08-09
|
|
2
|
+
|
|
3
|
+
### Fixed
|
|
4
|
+
- **Larry can read the Brain again. Every single Brain call was failing before this, and nothing
|
|
5
|
+
told you so.** If you asked Larry anything that needed the teaching graph -- which framework fits
|
|
6
|
+
your problem, what the corpus says, a grade, a chain recommendation -- the call died before it
|
|
7
|
+
reached him, with a host error that looks like a network fault: `e.reduce is not a function`.
|
|
8
|
+
Nothing was wrong with the network. Nothing was wrong with the graph. The Brain was up the whole
|
|
9
|
+
time, serving 28,325 nodes and 23,014 relationships in a perfectly correct response, and the
|
|
10
|
+
plugin's own connection to it was healthy too. What broke it was a hook this plugin ships to
|
|
11
|
+
sanitize Brain responses before they reach the conversation, and it broke them in two ways at
|
|
12
|
+
once. It looked for the response text in a field the protocol never puts it in, so it found
|
|
13
|
+
nothing and sanitized an empty string. Then it handed back that empty string in the wrong
|
|
14
|
+
container shape -- a bare object where an array of content blocks belongs -- so the host tried to
|
|
15
|
+
measure the length of something that was not there and threw. Every Brain response, replaced with
|
|
16
|
+
nothing, in a shape nothing could read. The reason this ran for weeks without anyone noticing is
|
|
17
|
+
the more uncomfortable half: the Brain layer was under standing instructions to fall back silently
|
|
18
|
+
and never mention failures to you. So a total outage of the single most valuable thing in the
|
|
19
|
+
product looked, from the outside, exactly like a Larry who simply had less to say. Both defects
|
|
20
|
+
are now pinned by tests that feed the hook a real protocol-shaped response and assert the text
|
|
21
|
+
survives with the container intact, so an empty-string regression fails the suite instead of
|
|
22
|
+
reaching your session. The doctrine that hid it is being revisited separately, because a fix that
|
|
23
|
+
only works until the next silent failure is not a fix.
|
|
24
|
+
- **Asking the Brain about a framework by name no longer gets blocked as a possible data leak.** The
|
|
25
|
+
guard that stops your private venture content from ever reaching the shared Brain was refusing
|
|
26
|
+
ordinary methodology questions too. Asking about "jobs to be done" -- a framework name, the kind
|
|
27
|
+
of generic handle the Brain exists to answer about, and the exact query the deployment's own
|
|
28
|
+
verification step uses -- was classified as content that might leak and stopped before it left
|
|
29
|
+
your machine. Content-free graph introspection now classifies as allowed, and the guard is
|
|
30
|
+
covered from both directions: a test proves the framework-name case gets through, and a companion
|
|
31
|
+
test proves real venture content is still blocked on the same paths. The boundary did not get
|
|
32
|
+
looser; it got accurate.
|
|
33
|
+
|
|
1
34
|
## [1.16.0-beta.11] - 2026-08-06
|
|
2
35
|
|
|
3
36
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindrian_os/cli",
|
|
3
|
-
"version": "1.16.0-beta.
|
|
3
|
+
"version": "1.16.0-beta.13",
|
|
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",
|