@mindrian_os/cli 1.15.3-beta.30 → 1.15.3-beta.34
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 +35 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
## [1.15.3-beta.34] - 2026-07-21
|
|
2
|
+
|
|
3
|
+
### Fixed
|
|
4
|
+
- **Stop hook (`check-card-fire.cjs`) force-fired a stale Decision-Gate card on unrelated
|
|
5
|
+
terse turns.** Fourth live occurrence of the over-enforcement class (dominant reason
|
|
6
|
+
`reached-registry-gate-no-card`, 30 of 41 records in a 24h diagnostic window). Two stacked
|
|
7
|
+
root causes: (1) `lib/core/card-fire-sidechannel.cjs`'s reach-mint record had no
|
|
8
|
+
session/turn scoping and a 10-minute TTL, so one real gate mint anywhere leaked into every
|
|
9
|
+
later turn, every session, for 10 minutes; (2) `lib/core/gate-relevance.cjs`'s
|
|
10
|
+
`gateTopicallyRelevant` defaulted to force-fire whenever the preceding user text carried
|
|
11
|
+
fewer than 2 subject tokens -- true for nearly every terse slash command, so short turns
|
|
12
|
+
were the LEAST protected against a stale gate. Fixed structurally: a turn-scoped freshness
|
|
13
|
+
window (`TURN_FRESH_MS`) replaces the unscoped union, and the relevance floor now checks
|
|
14
|
+
gate staleness (`opts.gateStale`) instead of defaulting to force on low signal. A model
|
|
15
|
+
that has already judged a reach-card gate stale and moved on in prose is no longer
|
|
16
|
+
overridden by the hook. Verified end-to-end against the live incident shape; full
|
|
17
|
+
card-fire/gate-relevance/connector-registry suites green.
|
|
18
|
+
|
|
19
|
+
## [1.15.3-beta.32] - 2026-07-20
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- **BlockNote Wiki Convergence (Phase 232): `/mos:wiki` gets a real editing surface.** The wiki
|
|
23
|
+
now opens to a Room Home dashboard (governing thought, Larry's Briefing, gaps, per-section
|
|
24
|
+
progress) instead of the graph, and every article is directly editable in a BlockNote surface
|
|
25
|
+
themed to the M:OS Canonical Design System -- edit, click Save, the change writes straight to
|
|
26
|
+
the room's `.md` file (no confirmation dialog, no conflict check, by design). `[[wikilinks]]`
|
|
27
|
+
render as clickable pills inside the editor; Backlinks and See Also stay wired to the existing
|
|
28
|
+
SQLite graph edges. New: per-article PDF and Word export, and a real `/mos:wiki --export`
|
|
29
|
+
static-share bundle (previously documented, never implemented). The client bundle (React +
|
|
30
|
+
BlockNote) is walled off in its own `lib/wiki/editor-src/` build, so the plugin's own
|
|
31
|
+
dependencies stay CJS-only -- zero React/Next.js/BlockNote added to the install footprint.
|
|
32
|
+
A live browser walkthrough caught and fixed two integration bugs before ship (a save/load URL
|
|
33
|
+
encoding mismatch, and a JSON-vs-plaintext response contract mismatch that would have written
|
|
34
|
+
raw JSON into article files instead of markdown).
|
|
35
|
+
|
|
1
36
|
## [1.15.3-beta.30] - 2026-07-20
|
|
2
37
|
|
|
3
38
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindrian_os/cli",
|
|
3
|
-
"version": "1.15.3-beta.
|
|
3
|
+
"version": "1.15.3-beta.34",
|
|
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",
|