@mindrian_os/cli 1.16.0-beta.5 → 1.16.0-beta.7
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 +38 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
|
1
|
+
## [1.16.0-beta.7] - 2026-08-01
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
-
|
|
5
|
+
|
|
6
|
+
### Fixed
|
|
7
|
+
- **The statusline's room-health chip actually updates now, instead of showing you one frozen
|
|
8
|
+
warning forever and sending you to a command that could never clear it.** The chip that reads
|
|
9
|
+
`⚠ · -> run /mos:doctor --fix` is supposed to reflect whether your current room is healthy. In
|
|
10
|
+
practice it was stuck on whatever it happened to say the last time somebody ran a diagnostic by
|
|
11
|
+
hand in a terminal, which for most people means it either never appeared or never went away.
|
|
12
|
+
Running `/mos:doctor`, or even `/mos:doctor --fix`, did nothing to it -- not because those
|
|
13
|
+
commands were broken, but because they were never connected to it in the first place. The chip
|
|
14
|
+
reads a small cache file, and the one function in the whole codebase that writes that file had
|
|
15
|
+
exactly one caller: a manual command-line flag that nothing in the product ever runs. So the
|
|
16
|
+
warning was real once, and then it was just a fossil. Worse, the advice it gave you pointed at
|
|
17
|
+
the one command structurally incapable of helping. There WAS a second place in the code that
|
|
18
|
+
tried to wire this up, and it looked wired -- it checked whether the diagnostic module offered
|
|
19
|
+
a bind-time health function before calling it -- but that function was never written, so the
|
|
20
|
+
check was permanently false and the whole branch was dead code that read like working code, with
|
|
21
|
+
a comment promising a follow-up phase that never shipped. Now, whenever your session binds to a
|
|
22
|
+
room -- through the MCP front door or through the CLI's own binding path, both of which now run
|
|
23
|
+
the same single health check -- a real, current reading gets written, and the chip tells you what
|
|
24
|
+
is true right now. A health check that fails can never block or break a bind. And when the room
|
|
25
|
+
cannot be located at all, it says so honestly as drift rather than quietly reporting all-clear,
|
|
26
|
+
because the whole point of this fix is that a status signal you cannot trust is worse than no
|
|
27
|
+
signal. Verified end to end through the real MCP server: a stale drift warning cleared to sound
|
|
28
|
+
with a fresh timestamp on the next bind.
|
|
29
|
+
- **A stale local search index could get stuck stale forever, even after a "successful" repair.**
|
|
30
|
+
Each room keeps a small lexical search index so Eureka can find relevant nodes fast. When nodes
|
|
31
|
+
get deleted, that index is supposed to self-heal the next time it rebuilds. It turned out the
|
|
32
|
+
rebuild only ever refreshed rows for nodes that still exist -- it had no way to remove rows left
|
|
33
|
+
behind by deleted ones, so once a room accumulated deleted nodes, no amount of rebuilding could
|
|
34
|
+
ever clear them. The one place in the codebase that DID know how to clean those rows up only ran
|
|
35
|
+
during a full graph rebuild, not the lightweight repair every other path relied on. Now that
|
|
36
|
+
cleanup step runs every time the index rebuilds, not just on a full rebuild, so a room's search
|
|
37
|
+
index actually recovers instead of silently staying broken behind a "fixed" label.
|
|
38
|
+
|
|
1
39
|
## [1.16.0-beta.5] - 2026-07-31
|
|
2
40
|
|
|
3
41
|
### 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.7",
|
|
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",
|