@mindrian_os/cli 1.15.3-beta.32 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
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
+
1
19
  ## [1.15.3-beta.32] - 2026-07-20
2
20
 
3
21
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindrian_os/cli",
3
- "version": "1.15.3-beta.32",
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",