@mindrian_os/install 1.13.0-beta.16 → 1.13.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 (219) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/CHANGELOG.md +36 -0
  3. package/commands/act.md +1 -0
  4. package/commands/admin.md +1 -0
  5. package/commands/analyze-needs.md +2 -0
  6. package/commands/analyze-systems.md +2 -0
  7. package/commands/analyze-timing.md +2 -0
  8. package/commands/auto-explore.md +2 -0
  9. package/commands/beautiful-question.md +2 -0
  10. package/commands/brain-derive.md +2 -0
  11. package/commands/build-knowledge.md +2 -0
  12. package/commands/build-thesis.md +2 -0
  13. package/commands/causal.md +2 -0
  14. package/commands/challenge-assumptions.md +2 -0
  15. package/commands/compare-ventures.md +2 -0
  16. package/commands/dashboard.md +2 -1
  17. package/commands/deep-grade.md +2 -0
  18. package/commands/diagnose.md +21 -1
  19. package/commands/diagnostics.md +14 -3
  20. package/commands/doctor.md +4 -1
  21. package/commands/dogfood-flush.md +92 -0
  22. package/commands/dominant-designs.md +2 -0
  23. package/commands/explain-decision.md +2 -0
  24. package/commands/explore-domains.md +2 -0
  25. package/commands/explore-futures.md +2 -0
  26. package/commands/explore-trends.md +2 -0
  27. package/commands/export.md +1 -0
  28. package/commands/feynman-timeline-refresh.md +2 -0
  29. package/commands/file-meeting.md +4 -0
  30. package/commands/find-analogies.md +1 -0
  31. package/commands/find-bottlenecks.md +2 -0
  32. package/commands/find-connections.md +2 -0
  33. package/commands/funding.md +1 -0
  34. package/commands/grade.md +4 -0
  35. package/commands/graph.md +1 -0
  36. package/commands/hat-briefing.md +1 -0
  37. package/commands/heal.md +22 -170
  38. package/commands/help.md +54 -334
  39. package/commands/hmi-status.md +23 -144
  40. package/commands/jtbd.md +1 -0
  41. package/commands/leadership.md +2 -0
  42. package/commands/lean-canvas.md +2 -0
  43. package/commands/macro-trends.md +2 -0
  44. package/commands/map-unknowns.md +2 -0
  45. package/commands/memory.md +1 -0
  46. package/commands/models.md +1 -0
  47. package/commands/mos-reason.md +2 -0
  48. package/commands/mos.md +139 -0
  49. package/commands/mullins.md +2 -0
  50. package/commands/mva-brief.md +58 -0
  51. package/commands/mva-option.md +91 -0
  52. package/commands/new-project.md +4 -0
  53. package/commands/onboard.md +22 -7
  54. package/commands/operator.md +1 -0
  55. package/commands/opportunities.md +1 -0
  56. package/commands/organize.md +22 -469
  57. package/commands/persona.md +1 -0
  58. package/commands/pipeline.md +2 -0
  59. package/commands/present.md +1 -0
  60. package/commands/publish.md +2 -0
  61. package/commands/query.md +24 -102
  62. package/commands/radar.md +2 -0
  63. package/commands/reanalyze.md +1 -0
  64. package/commands/research.md +2 -0
  65. package/commands/room.md +2 -0
  66. package/commands/rooms.md +1 -0
  67. package/commands/root-cause.md +2 -0
  68. package/commands/rs-experts.md +1 -0
  69. package/commands/rs-explain.md +1 -0
  70. package/commands/rs-fetch.md +1 -0
  71. package/commands/rs-thesis.md +1 -0
  72. package/commands/scenario-plan.md +2 -0
  73. package/commands/scheduled-tasks.md +1 -0
  74. package/commands/score-innovation.md +2 -0
  75. package/commands/scout.md +1 -0
  76. package/commands/setup.md +2 -0
  77. package/commands/snapshot.md +2 -0
  78. package/commands/speakers.md +1 -0
  79. package/commands/splash.md +5 -2
  80. package/commands/status.md +1 -0
  81. package/commands/structure-argument.md +2 -0
  82. package/commands/suggest-next.md +2 -0
  83. package/commands/systems-thinking.md +2 -0
  84. package/commands/think-hats.md +2 -0
  85. package/commands/update.md +2 -0
  86. package/commands/user-needs.md +2 -0
  87. package/commands/validate.md +2 -0
  88. package/commands/value-proposition.md +2 -0
  89. package/commands/vault.md +2 -0
  90. package/commands/visualize.md +24 -29
  91. package/commands/whitespace.md +2 -1
  92. package/commands/wiki.md +1 -0
  93. package/hooks/hooks.json +31 -88
  94. package/lib/agents/auto-explore-agent.cjs +82 -0
  95. package/lib/agents/mva/brain-classic-traps.cjs +77 -0
  96. package/lib/agents/mva/brain-cross-domain.cjs +79 -0
  97. package/lib/agents/mva/brain-similar-ventures.cjs +93 -0
  98. package/lib/agents/mva/dashboard-graph-neighborhood.cjs +72 -0
  99. package/lib/agents/mva/index.cjs +42 -0
  100. package/lib/agents/mva/six-hats-red-black.cjs +137 -0
  101. package/lib/agents/mva/tavily-funding-scan.cjs +147 -0
  102. package/lib/agents/mva/test-all-six-agents.cjs +467 -0
  103. package/lib/conversation/operator.cjs +64 -0
  104. package/lib/conversation/operator.test.cjs +160 -0
  105. package/lib/core/breakthrough/canary.cjs +134 -0
  106. package/lib/core/breakthrough/canary.test.cjs +136 -0
  107. package/lib/core/breakthrough/detectors.cjs +359 -0
  108. package/lib/core/breakthrough/detectors.test.cjs +333 -0
  109. package/lib/core/breakthrough/ethics-fence.cjs +127 -0
  110. package/lib/core/breakthrough/ethics-fence.test.cjs +178 -0
  111. package/lib/core/breakthrough/resurfacing.cjs +150 -0
  112. package/lib/core/breakthrough/resurfacing.test.cjs +233 -0
  113. package/lib/core/breakthrough/review-queue.cjs +154 -0
  114. package/lib/core/breakthrough/review-queue.test.cjs +160 -0
  115. package/lib/core/breakthrough/scanner-d17-d18.test.cjs +229 -0
  116. package/lib/core/breakthrough/scanner.cjs +426 -0
  117. package/lib/core/breakthrough/scanner.test.cjs +267 -0
  118. package/lib/core/breakthrough/schema.cjs +164 -0
  119. package/lib/core/breakthrough/schema.test.cjs +256 -0
  120. package/lib/core/breakthrough/scoring.cjs +293 -0
  121. package/lib/core/breakthrough/scoring.test.cjs +423 -0
  122. package/lib/core/breakthrough/verb-dispatch.cjs +221 -0
  123. package/lib/core/breakthrough/verb-dispatch.test.cjs +185 -0
  124. package/lib/core/breakthrough/voice-scaffold.cjs +247 -0
  125. package/lib/core/breakthrough/voice-scaffold.test.cjs +251 -0
  126. package/lib/core/first-touch-version-stamper.cjs +113 -0
  127. package/lib/core/larry-thinness-acknowledgment.cjs +64 -0
  128. package/lib/core/larry-thinness-acknowledgment.test.cjs +97 -0
  129. package/lib/core/llm-name-suggester.cjs +194 -0
  130. package/lib/core/llm-name-suggester.test.cjs +132 -0
  131. package/lib/core/mva-agent-contract.cjs +170 -0
  132. package/lib/core/mva-agent-contract.test.cjs +169 -0
  133. package/lib/core/mva-budget.cjs +75 -0
  134. package/lib/core/mva-budget.test.cjs +68 -0
  135. package/lib/core/mva-classifier.cjs +370 -0
  136. package/lib/core/mva-classifier.test.cjs +248 -0
  137. package/lib/core/mva-deck-builder.cjs +452 -0
  138. package/lib/core/mva-deck-builder.test.cjs +287 -0
  139. package/lib/core/mva-detect.smoke.test.cjs +197 -0
  140. package/lib/core/mva-dispatcher.cjs +110 -0
  141. package/lib/core/mva-dispatcher.test.cjs +216 -0
  142. package/lib/core/mva-option-router.cjs +292 -0
  143. package/lib/core/mva-option-router.test.cjs +483 -0
  144. package/lib/core/mva-orchestrator.cjs +365 -0
  145. package/lib/core/mva-orchestrator.test.cjs +908 -0
  146. package/lib/core/mva-progressive-renderer.cjs +194 -0
  147. package/lib/core/mva-progressive-renderer.test.cjs +157 -0
  148. package/lib/core/mva-rule-linter.cjs +213 -0
  149. package/lib/core/mva-rule-linter.test.cjs +336 -0
  150. package/lib/core/mva-state.cjs +159 -0
  151. package/lib/core/mva-telemetry.cjs +58 -0
  152. package/lib/core/mva-telemetry.test.cjs +196 -0
  153. package/lib/core/mva-vercel-deploy.cjs +168 -0
  154. package/lib/core/mva-vercel-deploy.test.cjs +239 -0
  155. package/lib/core/navigation/dashboard-helpers.cjs +145 -0
  156. package/lib/core/navigation/edges.cjs +35 -0
  157. package/lib/core/navigation/memory-events.cjs +126 -0
  158. package/lib/core/navigation.cjs +11 -0
  159. package/lib/core/resolve-vercel-key.cjs +107 -0
  160. package/lib/core/resolve-vercel-key.test.cjs +137 -0
  161. package/lib/core/room-auto-create.cjs +318 -0
  162. package/lib/core/room-auto-create.test.cjs +198 -0
  163. package/lib/core/room-discard-cascade.cjs +225 -0
  164. package/lib/core/room-discard-cascade.test.cjs +135 -0
  165. package/lib/core/room-name-validator.cjs +132 -0
  166. package/lib/core/room-name-validator.test.cjs +156 -0
  167. package/lib/core/room-naming-selector.cjs +357 -0
  168. package/lib/core/room-naming-selector.test.cjs +277 -0
  169. package/lib/core/room-receipt-emit.cjs +63 -0
  170. package/lib/core/room-skeleton-scaffold.cjs +315 -0
  171. package/lib/core/room-skeleton-scaffold.test.cjs +291 -0
  172. package/lib/core/stale-copy-scanner.cjs +190 -0
  173. package/lib/core/state-aware-router.cjs +78 -0
  174. package/lib/core/telemetry/schema.cjs +168 -0
  175. package/lib/core/telemetry/schema.test.cjs +124 -0
  176. package/lib/core/telemetry/validator.cjs +197 -0
  177. package/lib/core/telemetry/validator.test.cjs +188 -0
  178. package/lib/core/telemetry/writer.cjs +141 -0
  179. package/lib/core/telemetry/writer.test.cjs +331 -0
  180. package/lib/core/terminal-capability.cjs +88 -0
  181. package/lib/core/venture-shape-nudge.cjs +163 -0
  182. package/lib/core/venture-shape-nudge.test.cjs +161 -0
  183. package/lib/core/visual-ops.cjs +70 -2
  184. package/lib/hmi/selector-dispatcher.cjs +90 -1
  185. package/lib/hmi/shape-f7-breakthrough-renderer.cjs +222 -0
  186. package/lib/hmi/shape-f7-breakthrough-renderer.test.cjs +233 -0
  187. package/lib/memory/body-shape-coverage.test.cjs +268 -0
  188. package/lib/memory/doctor-deprecation-surface.test.cjs +185 -0
  189. package/lib/memory/first-touch-version.test.cjs +198 -0
  190. package/lib/memory/help-coverage.test.cjs +108 -0
  191. package/lib/memory/help-renderer.test.cjs +145 -0
  192. package/lib/memory/palette-consistency.test.cjs +127 -0
  193. package/lib/memory/pending-tension-store.cjs +80 -0
  194. package/lib/memory/render-v2-disposition.test.cjs +199 -0
  195. package/lib/memory/run-feynman-tests.cjs +240 -0
  196. package/lib/memory/sessionstart-coordinator.test.cjs +446 -0
  197. package/lib/memory/skill-vs-code-drift.test.cjs +257 -0
  198. package/lib/memory/soft-alias.test.cjs +144 -0
  199. package/lib/memory/stale-copy-scanner.test.cjs +291 -0
  200. package/lib/memory/state-aware-router.test.cjs +90 -0
  201. package/lib/memory/statusline-two-row.test.cjs +338 -0
  202. package/lib/memory/terminal-capability.test.cjs +155 -0
  203. package/lib/render/ROOM.md +74 -22
  204. package/lib/sessionstart/budget-compressor.cjs +130 -0
  205. package/lib/sessionstart/contributor-interface.cjs +134 -0
  206. package/lib/sessionstart/contributor-isolator.cjs +128 -0
  207. package/lib/sessionstart/precedence-ladder.cjs +47 -0
  208. package/lib/statusline/governing-thought-truncator.cjs +45 -0
  209. package/lib/statusline/two-row-renderer.cjs +186 -0
  210. package/lib/statusline/version-resolver.cjs +81 -0
  211. package/package.json +1 -1
  212. package/references/visual/ROOM.md +55 -0
  213. package/references/visual/palette.json +54 -0
  214. package/skills/larry-personality/SKILL.md +34 -0
  215. package/skills/mva-pipeline/SKILL.md +129 -0
  216. package/skills/ui-system/SKILL.md +109 -1
  217. package/skills/ui-system/rules/dual-palette.md +156 -0
  218. package/skills/ui-system/rules/glyph-disambiguation.md +171 -0
  219. package/skills/ui-system/rules/shape-f-zero-and-six.md +169 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mos",
3
3
  "description": "MindrianOS -- Your AI innovation co-founder. Larry thinks with you through PWS methodology, builds your Data Room as you explore, and chains frameworks intelligently. Install and go.",
4
- "version": "1.13.0-beta.16",
4
+ "version": "1.13.0-beta.19",
5
5
  "author": {
6
6
  "name": "Jonathan Sagir",
7
7
  "url": "https://mindrian.ai"
package/CHANGELOG.md CHANGED
@@ -1,3 +1,39 @@
1
+ ## [1.13.0-beta.19] - 2026-05-19
2
+
3
+ ### Promoted (2026-05-19 -- v1.13.0 milestone redefinition)
4
+ - **Phase 127 (Brain MCP Local Stdio Shim + Auto-Migration) and Phase 127.1 (Brain GraphRAG Collapse Pinecone -> Neo4j HNSW) PROMOTED from v1.13.1 INTO v1.13.0.** v1.13.0 milestone redefined from "The Closed Loop" (Hooked Fixes + Canon Part 10) to **"The Closed Loop + Brain Goes Native"**. Phase 127 targets v1.13.0-beta.20 (client-side stdio shim, ~3-5 days; Tavily-validated 2026-05-19); Phase 127.1 targets v1.13.0-beta.21 (server-side Neo4j HNSW collapse, ~3-5 days + 20-query non-regression harness >= 80% top-5 overlap). v1.13.0 final cuts after both land. Trade-off: ~2-week ship-date slip, but ONE adoption cycle for "Brain feels native end-to-end" instead of two. v1.13.1 milestone keeps Phases 128/129/130/131 but loses its architectural anchor (renaming pending: "spine repair + lens engine + research workflow", not "Brain native"). External validation in flight via Tavily research agent before /gsd:plan-phase 127 fires. See ROADMAP.md Phase 127 + 127.1 sections, both CONTEXT.md files (frontmatter `milestone:` flipped 2026-05-19), and .planning/v1.13.1-EXECUTION-PLAN.md AMENDMENT block.
5
+
6
+ ### Added (2026-05-17 -- 2026-05-19 endgame work bundled into this beta)
7
+ - **Phase 120 (Breakthrough Scan Category G) shipped 2026-05-17.** 9-of-9 must-haves verified. Hooked Fix 3 (Category G) closed: variable-reward axis ships the highest-nutrition flavor (own-breakthroughs surfaced back at the navigator). 4 detectors (convergence / contradiction-resolved / cross-domain analogy / reverse-salient closed) + F.7 Breakthrough Surface selector (5 verbs: Explore deeper / Confirm / File as decision / Dismiss / Back) + session-start scanner via Phase 109 navigation.cjs chokepoint + D-13..D-15 resurfacing rules + D-19 per-detector dismissal-rate canary + D-17 4-rule voice scaffold + D-18 4-tier ethics fence (HARD_FLOOR / SOFT_BAND / NEUTRAL / GREEN) + SOFT_BAND review queue in rooms-meta.db + 5-component scoring formula + "More breakthroughs (N)" affordance + D-20 LOAD-BEARING SQL invariant (every Breakthrough has a DERIVED_FROM edge by construction; 4 structural enforcement points). 159 unit tests + 4 D-20 e2e + 13 ethics-fence + voice-audit + 3 scaffold harnesses all green. Canon Part 4 cascade vocab honored (8 types; 2026-05-16 dual-graph review rejection sealed -- no ASSOCIATION_LENS / TRANSITION_LENS). Canon Part 8 clean. Canon Part 9 chokepoint preserved (10 modules route through navigation.cjs).
8
+ - **Phase 121 (Trajectory Telemetry) shipped 2026-05-19.** 12-of-12 must-haves verified. Reframed per Canon Part 7 from "greenfield instrumentation" to "consolidation": 4 piecemeal telemetry writers (`mva.jsonl` + `selector.jsonl` + `navigation-bypass.jsonl` + `query-efficiency.jsonl`) collapse to ONE unified `~/.mindrian/telemetry/v1.13/events-YYYY-WNN.jsonl` with `type` discriminator + frozen v1 schema (per-row `schema_version: 1` Number, 15 EVENT_TYPES) + ISO-week rotation + single emit-time-validator chokepoint (7 forbidden-pattern detectors, mirrors proven `mva-telemetry.cjs` shape) + idempotent migration (source-name-prefixed sha256 fingerprint, originals renamed `*.pre-v121.bak`) + `mva-telemetry.cjs` 170 -> 58-line shim delegating to writer with legacy dual-write (Phase 118 byte-functional compat preserved; dual-write retires v1.14.0). 9 capture points wired: selector picks (88.2 + 125), tension engagement (116), auto-explore decisions (117), breakthrough dismissed (120), MVA + Hooked re-score (inherited), empathy audit CLI, room-receipt (119), PostToolUse broad-sweep into separate `command_invocation` bucket (drowning-protected via type discriminator; 100 cmd_inv + 10 selector_pick fixture proves filter-isolation). `docs/TELEMETRY-SCHEMA.md` (364 LOC) frozen v1 spec + SEED-002 ingestion guidance (arXiv 2508.03680). Canon Part 8 adversarial audit (7 gates across 17 telemetry-touching files; zero LOCAL->BRAIN egress) + D-12 silent-observability invariant (4 gates). 19/19 test suites green.
9
+ - **Phase 121.5 re-verify fix 2026-05-19.** `/mos:dogfood-flush` (added by Phase 120) registered in `data/help-groups.json` Infrastructure group. Restores 3 previously-failing 121.5 coherence tests. Capstone coherence invariant holds against the now-complete v1.13.0 surface. `bash tests/run-all-121.5.sh` -> 11/11 suites green.
10
+ - **SEED-003 (Brain Silent Identity) filed 2026-05-19.** Deferred user request to eliminate the API-key step entirely on top of Phase 127's stdio shim. Three architectural options scoped (per-install silent registration / plugin attestation HMAC / anonymous tier + degraded payload).
11
+
12
+ ### Added
13
+ - **`/mos:mos` state-aware router (Phase 121.5-08 Sub-plan J; D-10 LOCKED).** Closes the plugin.json declaration gap flagged in Cluster 5 audit 2026-05-15 (the command was declared but the backing file was absent). The router picks the right next surface for the navigator: no room -> `/mos:onboard`; mostly-empty room -> `/mos:status` with a "suggest next move" hint; populated room -> `/mos:suggest-next`. Backed by `lib/core/state-aware-router.cjs` (pure function, hermetic unit tests in `lib/memory/state-aware-router.test.cjs`). Meets the navigator where they are -- one entrypoint that always does the right thing rather than forcing the user to pick the right `/mos:*` surface. (`commands/mos.md` [new], `lib/core/state-aware-router.cjs` [new], `lib/memory/state-aware-router.test.cjs` [new].)
14
+ - **Soft-alias runner + 5 soft-alias stubs (Phase 121.5-08 Sub-plan J; D-09 LOCKED).** New helper `scripts/soft-alias-runner.cjs` (`softAliasRun` pure function + `emitForLLM` CLI form) returns a JSON envelope `{redirect, deprecation_note, args, ok}` so the LLM can print a single cyan deprecation line (Larry voice, no em-dash) and then transparently invoke the canonical command. Hermetic unit tests in `lib/memory/soft-alias.test.cjs` (45 PASS). (`scripts/soft-alias-runner.cjs` [new], `lib/memory/soft-alias.test.cjs` [new].)
15
+ - **`/mos:doctor --deprecated-usage` (class L, NEW; Phase 121.5-08 Sub-plan J; D-09 final clause).** Scans recent (last-7-days) `~/.claude/projects/.../*.jsonl` session transcripts for `/mos:<deprecated>` patterns and surfaces a per-command "use `/mos:<new>` instead" hint. Pure LOCAL scan -- zero network, zero Brain, zero telemetry egress (Canon Part 8 preserved). Also activated by `--all`. Hermetic unit tests in `lib/memory/doctor-deprecation-surface.test.cjs`. `MINDRIAN_DOCTOR_TRANSCRIPTS_DIR` env-var override for hermetic tests. (`scripts/doctor.cjs`, `commands/doctor.md`, `lib/memory/doctor-deprecation-surface.test.cjs` [new].)
16
+ - **F.1 Next Move selectors wired on `/mos:onboard` Step 6 + `/mos:diagnose` recommendation block (Phase 121.5-08 Sub-plan J; D-12 LOCKED).** Closes Canon Part 3 violations flagged in Cluster 5 audit 2026-05-15: the recommendation surfaces previously rendered as bare prose, bypassing the Decision Gate. Both surfaces now render the canonical 3-verb F.1 vocabulary (Run Methodology / Defer / Free-Text) via AskUserQuestion; the selected verb writes to STATE.md Decisions + creates a typed edge in the local graph. (`commands/onboard.md`, `commands/diagnose.md`.)
17
+
18
+ ### Changed
19
+ - **5 commands deprecate to canonical surfaces (Phase 121.5-08 Sub-plan J; D-09 LOCKED).** All old commands remain functional for v1.13.x (soft-alias stubs with deprecation notes routed through `scripts/soft-alias-runner.cjs`); removal is scheduled v1.14.0. Zero tester breakage during v1.13.x:
20
+ - `/mos:heal` -> `/mos:doctor --heal-room` (folds into doctor's class E fix engine)
21
+ - `/mos:query` -> `/mos:graph "<question>"` (terminal natural-language Q&A collapses into the graph translator)
22
+ - `/mos:organize` -> `/mos:rooms organize <verb>` (portfolio grouping folds under the multi-room surface)
23
+ - `/mos:hmi-status` -> `/mos:doctor --ui-compliance --json` (D-11 LOCKED; standalone command goes away; functionality lives in doctor class F)
24
+ - `/mos:visualize` -> `/mos:dashboard --mermaid` (the dashboard already renders Cytoscape; the `--mermaid` flag covers the Mermaid code-block fallback that visualize used to provide)
25
+ - **`/mos:diagnostics` is being renamed to `/mos:fingerprint` in v1.14.0 (no functional change).** The rename kills the diagnose/diagnostics naming ambiguity. Both invocations work in v1.13.x; use `/mos:fingerprint` going forward. (`commands/diagnostics.md` frontmatter `renaming_to: fingerprint`; body prepends a Renamed note before the unchanged 4-algorithm dispatcher.)
26
+
27
+ ## [1.13.0-beta.17] - 2026-05-15
28
+
29
+ ### Fixed
30
+ - **Step 6.6 ordering hole (Bug 1 -- Phase 126.1 hotfix, 2026-05-15).** Phase 126 beta.16 hotfix `3fc008b` moved `verify-release-clean-tree` from `applies_to: ['pre-tag', 'full']` to `['full']` because `release.sh` Step 6.6 calls `--pre-tag` AFTER Steps 3-6 intentionally bump `plugin.json` + `package.json` + `CHANGELOG.md`. That made the cut sail through, but the strict clean-tree gate no longer ran pre-tag AND Test 2 of `tests/test-doctor-acceptance-preflight-checks.cjs` was converted to SKIP rather than re-pointed. Real gap, predicted by `docs/install-cache-family-premortem.md` Section 3. Fix (Option B): added a new `pre-flight` tier to the `applies_to` enum (strict subset of `pre-tag` minus in-flight-incompatible checks); added the `--pre-flight` CLI flag to `scripts/doctor.cjs`; added Step 2.5 to `scripts/release.sh` calling `doctor --acceptance --pre-flight` BEFORE Step 3 mutates the tree (HARD ABORT, no rollback needed because nothing is yet mutated); kept the existing Step 6.6 `--pre-tag` call after Step 6 (still the right tier for post-bump checks). Restored Test 2 from SKIP to PASS under the new tier; added Test 8 asserting tier filter behavior. (`scripts/doctor.cjs`, `scripts/release.sh`, `tests/test-doctor-acceptance-preflight-checks.cjs`.)
31
+ - **Commit B 7-place lockstep gap (Bug 2 -- Phase 126.1 hotfix, 2026-05-15).** `scripts/release.sh` Step 7.5 (Commit B, the next-pre-release advance) bumped `plugin.json` + `package.json` to `NEXT_VERSION` but left `~/mindrian-marketplace/.claude-plugin/marketplace.json` at `vN`. Per `feedback_install_minisite_lockstep.md`, the 7-place lockstep contract requires the marketplace.json `version` field to advance with the plugin repo. The bug recurred in beta.16. Fix: Step 7.5 now writes a second `node -e` block that bumps `MARKETPLACE_DIR/.claude-plugin/marketplace.json` to `NEXT_VERSION` (version field only -- `source.ref` deliberately stays at `vNEW_VERSION` pinning the marketplace commit at Commit A's tag); parallel marketplace-repo `git commit` follows with message `chore: bump marketplace.json to v$NEXT_VERSION (Commit B 7-place lockstep)`. Test H asserts the bump pattern is present in `scripts/release.sh`. (`scripts/release.sh`, `tests/test-release-bump-algebra.cjs`.)
32
+ - **Step 9.7 npx-publish self-test sandbox bug (Bug 3 -- Phase 126.1 hotfix, 2026-05-15).** `scripts/release.sh` Step 9.7 ran `npx --yes @mindrian_os/install@<version>` from an `mktemp -d` temp dir and checked the dir was non-empty after install -- but `@mindrian_os/install` installs into `~/.claude/` (the Claude Code plugin install root), NOT into cwd, so the temp-dir check spuriously failed during the beta.16 cut. Fix (Option A): switched to a HOME-override sandbox at `~/.claude/_test-install-<sha8>/` (subpath under `~/.claude/` per scope; mirrors the Phase 123 `doctor.cjs:2336` sandbox pattern). The npx run sets `HOME=$NPX_TEST_DIR` + `USERPROFILE=$NPX_TEST_DIR` + `npm_config_cache=$NPX_TEST_DIR/.npm` so the install resolves into the sandbox subpath, never touching the operator's real `~/.claude/`. Scaffold marker check now asserts `$NPX_TEST_DIR/.claude/plugins/installed_plugins.json` exists AND is parseable JSON. `trap` cleanup guarantees the sandbox dir + the pre-snapshot file are removed even on abort. Option B (extend `~/mindrianos-install-site` npm-installer with a `--target=<dir>` flag) is the cleaner long-term fix but out of scope for this hotfix (separate repo). Test I asserts the sandbox path + HOME-override are present in `scripts/release.sh` and the legacy `mktemp -d -t mos-npx-selftest` pattern is gone. (`scripts/release.sh`, `tests/test-release-bump-algebra.cjs`.)
33
+
34
+ ### Changed
35
+ - **Phase 122 `teaching:` frontmatter on `/mos:mva-brief` + `/mos:mva-option` verified clean (Phase 126.1 hotfix audit, 2026-05-15).** Per `118/deferred-items.md` lines 5-20 the two MVA helper commands lacked `teaching:` strings as of Plan 118-06. Inspection found the strings were already added between then and now (`commands/mva-brief.md` line 6: 200 chars; `commands/mva-option.md` line 6: 180 chars). All four Phase 122 invariants verified: length 50-300 chars (200 + 180), zero em-dashes (`grep -nP "[—–]"` empty), 1-2 sentences each (terminal `.`), Larry-voice with WHY lede. `node scripts/build-command-registry.cjs --check` exits 0. No edits required; verification-only commit. The pre-existing `118/deferred-items.md` "Pre-existing build-command-registry teaching-field gap" entry can be marked RESOLVED in a follow-up. (`commands/mva-brief.md`, `commands/mva-option.md`.)
36
+
1
37
  ## [1.13.0-beta.16] - 2026-05-14
2
38
 
3
39
  ### Added
package/commands/act.md CHANGED
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: act
3
3
  description: Run Larry's best-pick methodology for your room state
4
+ help_jtbd: "Run the next move Larry recommends, without typing the /mos: command yourself."
4
5
  argument-hint: '[--chain] [--swarm] [--dry-run]'
5
6
  body_shape: E (Action Report)
6
7
  serves_jtbd: ["plan-execution"]
package/commands/admin.md CHANGED
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: admin
3
3
  description: Manage Brain API keys from the admin panel
4
+ help_jtbd: "Inspect plugin internals when you suspect something is off."
4
5
  argument-hint: [subcommand]
5
6
  body_shape: A (Mondrian Board)
6
7
  serves_jtbd: ["audit-room"]
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: analyze-needs
3
3
  description: Score customer jobs with importance and satisfaction
4
+ help_jtbd: "Surface user needs that change the problem statement."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["find-problem"]
5
7
  teaching: "When you need to know which customer jobs matter most, /mos:analyze-needs scores them by importance versus satisfaction. Best after you have a customer segment defined."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: analyze-systems
3
3
  description: Decompose a system into layers and leverage points
4
+ help_jtbd: "See how subsystems connect, where they break, where they leverage each other."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["find-bottleneck"]
5
7
  teaching: "When you need to find where leverage lives in a complex system, /mos:analyze-systems decomposes it into layers and surfaces the leverage points. Best when symptoms keep recurring."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: analyze-timing
3
3
  description: Place a technology on the S-Curve timing clock
4
+ help_jtbd: "Find the timing window your venture sits inside."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["understand-market"]
5
7
  teaching: "When you need to know if your technology is too early, too late, or right on time, /mos:analyze-timing places it on the S-Curve. Best before you commit to a launch window."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,5 +1,7 @@
1
1
  ---
2
2
  description: "Manually trigger auto-explore on a specific file (Desktop fallback when PostToolUse hook does not fire per RESEARCH 4.8)"
3
+ help_jtbd: "Let Larry decompose your domain before you even ask."
4
+ body_shape: "methodology"
3
5
  argument-hint: "<file_path>"
4
6
  serves_jtbd: ["find-problem", "understand-market", "explore"]
5
7
  teaching: "In the moment a new artifact lands, /mos:auto-explore kicks off the same domain decomposition the PostToolUse hook would run. Use it on Desktop when the hook does not fire."
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: beautiful-question
3
3
  description: Reframe a challenge as Why / What-if / How
4
+ help_jtbd: "Reformulate the problem before solving the wrong one."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["find-problem", "explore"]
5
7
  teaching: "When the framing feels stuck, /mos:beautiful-question reshapes the challenge as Why / What-if / How. The right question unlocks more progress than a better answer."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,5 +1,7 @@
1
1
  ---
2
2
  description: Derive BRAIN.md for section(s) now
3
+ help_jtbd: "Pull the Brain's framework recommendations for your current section."
4
+ body_shape: E
3
5
  argument-hint: "[section] [--all] [--cross-room] [--dry-run]"
4
6
  serves_jtbd: ["audit-room"]
5
7
  teaching: "When a room section drifts from its BRAIN.md derivation, /mos:brain-derive rebuilds the per-section Brain context now. Run after large filings or before a decision gate."
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: build-knowledge
3
3
  description: Climb Ackoff's DIKW pyramid across the room
4
+ help_jtbd: "Turn your room into a knowledge graph you can query."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["explore"]
5
7
  teaching: "When you have data but not yet wisdom, /mos:build-knowledge climbs Ackoff's DIKW pyramid across the room. Surfaces what you know, what you can decide, and what is still raw."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: build-thesis
3
3
  description: Run the Ten-Questions investment thesis gate
4
+ help_jtbd: "Compose the investment-grade thesis from your room's evidence."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["decide-pursue", "prepare-pitch"]
5
7
  teaching: "When you need to know if this venture is worth pursuing, /mos:build-thesis runs the Ten-Questions investment thesis gate. The output is a defensible go / no-go with reasons."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: causal
3
3
  description: Trace causal edges in the room's graph
4
+ help_jtbd: "Trace cause-and-effect chains across your room's claims."
5
+ body_shape: "methodology"
4
6
  argument-hint: [extract|trace|predict]
5
7
  serves_jtbd: ["find-problem", "find-bottleneck"]
6
8
  teaching: "When you suspect the visible problem is downstream of something else, /mos:causal traces causal edges in the room's graph. Surfaces the upstream causes worth fixing."
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: challenge-assumptions
3
3
  description: Stress-test assumptions with Devil's Advocate
4
+ help_jtbd: "Stress-test the assumptions your room is built on."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["validate-idea", "surface-contradiction"]
5
7
  teaching: "When an idea feels too clean, /mos:challenge-assumptions runs Devil's Advocate against the load-bearing claims. Catches the assumptions you stopped questioning."
6
8
  allowed-tools:
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: compare-ventures
3
3
  description: Compare against ventures that tried this before
4
+ help_jtbd: "Set two or more ventures side-by-side, scored."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["compare-options"]
5
7
  teaching: "When you are weighing your approach against ventures that tried this before, /mos:compare-ventures lines them up on the dimensions that matter. Saves you from re-learning their lessons."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: dashboard
3
3
  description: Open the Data Room dashboard (live or snapshot)
4
- body_shape: raw
4
+ help_jtbd: "Open your room as a browser dashboard, De Stijl grid + graph."
5
+ body_shape: E
5
6
  serves_jtbd: ["audit-room", "prepare-pitch"]
6
7
  teaching: "When you need to see the whole room at a glance, /mos:dashboard opens the live or snapshot view in De Stijl layout. The fastest way to read room health before a meeting."
7
8
  ui_reference: skills/ui-system/SKILL.md
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: deep-grade
3
3
  description: Grade a venture against 100+ calibrated projects
4
+ help_jtbd: "Get the rigorous grading pass (Brain-enriched, 100+ student calibration)."
5
+ body_shape: C
4
6
  serves_jtbd: ["audit-room", "compare-options"]
5
7
  teaching: "When you need a calibrated grade on the room's quality, /mos:deep-grade scores it against 100+ real student projects. Best after at least three sections are populated."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: diagnose
3
3
  description: Classify problem type against the PWS matrix
4
+ help_jtbd: "See where your room is weakest and what to do next."
5
+ body_shape: A
4
6
  serves_jtbd: ["decide-pursue"]
5
7
  teaching: "When you cannot tell if this is an Ill-Defined or Well-Defined Problem, /mos:diagnose classifies it against the PWS matrix. Knowing the problem type picks the right methodology."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -56,4 +58,22 @@ Move faster than other commands. The user came here because they are stuck on WH
56
58
  ## When Complete
57
59
 
58
60
  Create the artifact using the template from the reference file.
59
- Offer to route them directly: "Want me to start /mos:[top recommendation] right now?"
61
+
62
+ ## Recommendation (Shape F.1 Next Move per Canon Part 3)
63
+
64
+ Render the recommendation as a Shape F.1 selector per `skills/ui-system/SKILL.md` Section 2. Do NOT render the recommendation as bare prose -- the F.1 selector IS the Canon Part 3 Decision Gate. Rendering recommendations as prose is the canon violation Cluster 5 audit (2026-05-15) flagged.
65
+
66
+ ```
67
+ [diagnose] -- NEXT MOVE
68
+ LOCAL / BRAIN / SIGNAL
69
+
70
+ Choose next move:
71
+
72
+ 1. Run Methodology -- the specific methodology for the weakest section
73
+ 2. Defer -- queue for milestone audit
74
+ 3. Free-Text -- tell Larry what you want
75
+ ```
76
+
77
+ Use AskUserQuestion to surface the selector. The selected verb writes to STATE.md Decisions section AND creates a typed edge in the local graph: `(navigator) -[CHOSE {verb, reason}]-> (current-artifact)`. The 3-verb F.1 vocabulary (Run Methodology / Defer / Free-Text) is the canonical minimum per Canon Part 3; when Brain is reachable and confidence >= 0.7 the "Run Methodology" option may be marked RECOMMENDED (Phase 88.2 invariant).
78
+
79
+ Phase 121.5-08 Sub-plan J D-12 LOCKED: the recommendation surface on /mos:diagnose MUST render an F.1 selector, not bare prose. Closes the Canon Part 3 violation from the Cluster 5 audit.
@@ -1,9 +1,12 @@
1
1
  ---
2
2
  name: diagnostics
3
- description: Run Wave-1 algorithmic fingerprint on the room
3
+ description: "[Renaming to /mos:fingerprint v1.14.0] Run Wave-1 algorithmic fingerprint on the room"
4
+ help_jtbd: "Run the 4 Wave-1 algorithms (Disruption Index, Blindspot, Novelty, Surprise). Renaming to /mos:fingerprint in v1.14.0."
4
5
  body_shape: E
5
6
  serves_jtbd: ["audit-room"]
6
- teaching: "When you need a quantitative read on the room, /mos:diagnostics runs the Wave-1 fingerprint: disruption, blindspot, novelty, surprise. Surfaces algorithmic signals humans miss."
7
+ renaming_to: fingerprint
8
+ renaming_target_version: "v1.14.0"
9
+ teaching: "When you need a quantitative read on the room, /mos:diagnostics runs the Wave-1 fingerprint: disruption, blindspot, novelty, surprise. Renaming to /mos:fingerprint in v1.14.0 (functional behavior unchanged)."
7
10
  # --- Phase 122 workflow-layer frontmatter ---
8
11
  kind: methodology
9
12
  frameworks: ["HSI Semantic Surprise Analysis Assistant"]
@@ -18,7 +21,15 @@ allowed-tools:
18
21
 
19
22
  # /mos:diagnostics
20
23
 
21
- You are Larry. This command runs four Wave-1 algorithms against the active room's embedded artifact corpus and renders a one-screen scalar dashboard: disruption (Funk and Owen-Smith CD), coverage (Good-Turing blindspot mass), element novelty (centroid distance), and Bayesian surprise (leave-one-out cosine shift). Body shape is **Shape E (Action Report) always** -- four metric rows, one intelligence strip, one action footer.
24
+ > Renamed. /mos:diagnostics is being renamed to /mos:fingerprint in v1.14.0 to kill the diagnose/diagnostics naming ambiguity. Both invocations work in v1.13.x; use /mos:fingerprint going forward.
25
+
26
+ You are Larry. The user invoked /mos:diagnostics. Per Phase 121.5-08 Sub-plan J (LOCKED 2026-05-16) /mos:diagnostics is being RENAMED to /mos:fingerprint in v1.14.0. The functional behavior is unchanged from v1.13.0-beta.x: the 4 Wave-1 algorithms continue to run via scripts/diagnostics-command.cjs. Only the name is migrating; a future v1.14.0 plan will create commands/fingerprint.md and turn this file into a soft-alias stub matching the heal/query/organize pattern.
27
+
28
+ Emit the rename note above to the user as a single cyan line (Larry voice; no em-dash; one sentence per skills/ui-system/SKILL.md Section 6) BEFORE running the diagnostics behavior below.
29
+
30
+ ## The diagnostics behavior (unchanged from v1.13.0-beta.x)
31
+
32
+ This command runs four Wave-1 algorithms against the active room's embedded artifact corpus and renders a one-screen scalar dashboard: disruption (Funk and Owen-Smith CD), coverage (Good-Turing blindspot mass), element novelty (centroid distance), and Bayesian surprise (leave-one-out cosine shift). Body shape is **Shape E (Action Report) always** -- four metric rows, one intelligence strip, one action footer.
22
33
 
23
34
  ## When to run
24
35
 
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: doctor
3
3
  description: Diagnose and optionally repair MindrianOS install — detects install-cache drift, .room-root sentinel gaps, active-room guard silence, surface-verification gaps, ROOM.md/MINTO.md drift, UI Ruling System compliance, and statusline visibility drift
4
- argument-hint: "[--fix] [--cascade-rooms] [--verify-surface] [--room-md] [--ui-compliance] [--statusline-visibility] [--install-state] [--all] [--acceptance] [--pre-tag] [--light-npx] [--json]"
4
+ help_jtbd: "Diagnose and optionally repair an off-feeling install."
5
+ argument-hint: "[--fix] [--cascade-rooms] [--verify-surface] [--room-md] [--ui-compliance] [--statusline-visibility] [--install-state] [--stale-first-touch] [--deprecated-usage] [--all] [--acceptance] [--pre-tag] [--light-npx] [--json]"
5
6
  body_shape: E (Action Report)
6
7
  body_shape_detail: per-class status rows with [before → after] pattern, summary totals, F.1 Next Move selector when drift detected without --fix
7
8
  serves_jtbd: ["audit-room"]
@@ -42,6 +43,8 @@ Look at the user's invocation:
42
43
  - `/mos:doctor --room-md` → class E (ROOM.md/MINTO.md presence under .room-root subtrees)
43
44
  - `/mos:doctor --ui-compliance` → class F (UI Ruling System scan across commands/*.md and scripts/*.cjs)
44
45
  - `/mos:doctor --statusline-visibility` → class G — checks user-settings drift, plugin install integrity, and statusline-mos isolated execution
46
+ - `/mos:doctor --stale-first-touch` → class K (Phase 121.5-05; SEED-007 absorption) — scans `data/first-touch-surfaces.json`-declared greeting surfaces (banner, splash, onboard, sessionstart, operator-update, larry-extended) for stale version literals (older than the running plugin) and U+2014 em-dash violations on surfaces flagged `em_dash_check: true`
47
+ - `/mos:doctor --deprecated-usage` → class L (Phase 121.5-08 Sub-plan J) — scans last-7-days `~/.claude/projects/.../*.jsonl` session transcripts for `/mos:<deprecated>` patterns (heal/query/organize/hmi-status/visualize/diagnostics) and surfaces a per-command "use `/mos:<new>` instead" hint. Pure LOCAL scan; zero network, zero Brain. Also activated by `--all`.
45
48
  - `/mos:doctor --fix` → diagnostic + auto-recovery for any class that supports --fix (class A, B, E, G)
46
49
  - `/mos:doctor --json` → machine-readable output (for hooks / regression tests)
47
50
 
@@ -0,0 +1,92 @@
1
+ ---
2
+ description: Drain the dog-food queue into the mindrian room and regenerate ## Live (auto)
3
+ help_jtbd: "Manually flush captured plugin edits into the mindrian dataroom."
4
+ body_shape: E
5
+ argument-hint: ""
6
+ serves_jtbd: ["audit-room"]
7
+ teaching: "When you want the plugin's own venture room to reflect your latest edits immediately, /mos:dogfood-flush drains the PostToolUse queue and regenerates the Live (auto) section in STATE.md. The automatic SessionStart drain handles the steady-state case."
8
+ disable-model-invocation: false
9
+ allowed-tools: Bash(node *)
10
+ kind: utility
11
+ frameworks: []
12
+ produces: "~/MindrianRooms/mindrian/STATE.md"
13
+ inputs: []
14
+ autonomous_safe: true
15
+ ---
16
+
17
+ # /mos:dogfood-flush
18
+
19
+ Force-drain the dog-food queue (`~/.mindrian/dogfood-queue.jsonl`) into
20
+ `~/MindrianRooms/mindrian/room.db` via the Phase 109 navigation chokepoint,
21
+ then regenerate the `## Live (auto)` sentinel-bounded section in
22
+ `~/MindrianRooms/mindrian/STATE.md` atomically with the human-authored body
23
+ byte-preserved.
24
+
25
+ This is the manual knob the user reaches for when the automatic SessionStart
26
+ drain has not run recently -- explicit redraw, drain everything pending right now.
27
+
28
+ ## Behavior
29
+
30
+ Two-step pipeline:
31
+
32
+ 1. `scripts/dogfood-emit.cjs` -- drain the queue file, batch-emit `file_changed`
33
+ memory_event rows via `lib/core/navigation.cjs::logMemoryEvent`. Truncate
34
+ the queue on success (atomic .tmp + rename).
35
+ 2. `scripts/dogfood-derive.cjs` -- read the last 10 file_changed events,
36
+ regenerate the `<!-- LIVE_AUTO_START -->` / `<!-- LIVE_AUTO_END -->` block
37
+ in STATE.md. Log a `feynman_timeline_refreshed` memory_event on success.
38
+
39
+ ## Output
40
+
41
+ F.0 Action Report:
42
+
43
+ - **emitted:** N events flushed from the queue.
44
+ - **derived:** STATE.md `## Live (auto)` regenerated at `<iso-timestamp>`.
45
+ - **skipped:** if the target room is missing, both phases soft-warn and exit 0
46
+ without crashing the parent.
47
+
48
+ ## Invariants
49
+
50
+ - **Canon Part 8 (Graph Boundary):** zero Brain egress. The grep sweep in
51
+ `tests/test-dogfood-emit-derive.cjs` is the structural enforcement.
52
+ - **Canon Part 9 (Memory Locality):** every memory_event write goes through
53
+ `navigation.cjs`. The Phase 109-06 pre-commit hook is the structural
54
+ enforcement (any direct `require('lib/core/room-db.cjs')` from
55
+ `dogfood-emit.cjs` / `dogfood-derive.cjs` would fail the hook).
56
+ - **Byte-preservation (Phase 124-02 invariant, reused):** everything in
57
+ STATE.md outside the sentinel pair has its SHA256 preserved across
58
+ regeneration (Case A). The integration test
59
+ (`tests/test-dogfood-emit-derive.cjs`) asserts this.
60
+
61
+ ## Implementation
62
+
63
+ ```bash
64
+ node ${CLAUDE_PLUGIN_ROOT}/scripts/dogfood-emit.cjs
65
+ node ${CLAUDE_PLUGIN_ROOT}/scripts/dogfood-derive.cjs
66
+ ```
67
+
68
+ ## Examples
69
+
70
+ ```
71
+ /mos:dogfood-flush
72
+ ```
73
+
74
+ ## Exit codes
75
+
76
+ | Exit | Meaning |
77
+ | --- | --- |
78
+ | 0 | Success (including soft-fail paths: room.db missing, empty queue, no STATE.md) |
79
+
80
+ ## Cross-surface adaptation
81
+
82
+ - **CLI:** full power. Slash command resolves via Claude Code's plugin hook
83
+ substrate and runs the two scripts through the Bash tool. F.0 report
84
+ renders in the terminal.
85
+ - **Desktop:** the same slash command runs when the plugin is connected.
86
+ Larry may narrate the result conversationally; the underlying scripts
87
+ are identical.
88
+ - **Cowork:** same as CLI. Team members see the regenerated STATE.md
89
+ `## Live (auto)` block through the shared `~/MindrianRooms/mindrian/`
90
+ snapshot on their next session-start.
91
+
92
+ No surface-specific code exists anywhere in either script.
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: dominant-designs
3
3
  description: Spot dominant designs with Utterback-Abernathy
4
+ help_jtbd: "Identify the dominant designs in your market."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["understand-market"]
5
7
  teaching: "When you are wondering if the market has settled on a winning design, /mos:dominant-designs runs Utterback-Abernathy to spot it. Tells you whether to ride the wave or break it."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,5 +1,7 @@
1
1
  ---
2
2
  description: Show Navigation Engine decision trace for last turn
3
+ help_jtbd: "See why Larry recommended what he recommended."
4
+ body_shape: F.1
3
5
  argument-hint: "[--last N] [--session SESSIONID]"
4
6
  serves_jtbd: ["audit-room"]
5
7
  teaching: "When Larry made a recommendation and you want to know why, /mos:explain-decision shows the Navigation Engine trace for the last turn. Every recommendation has a graph path behind it."
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: explore-domains
3
3
  description: Map domains through IKA + Feynman decomposition
4
+ help_jtbd: "Get the 5-lens decomposition of your problem domain."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["find-problem", "understand-market", "explore"]
5
7
  teaching: "When the problem could live in any of several domains, /mos:explore-domains maps the territory through IKA and Feynman decomposition. Surfaces where to look before you commit."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: explore-futures
3
3
  description: Synthesize TTA + Scenario + S-Curve futures
4
+ help_jtbd: "Branch into future scenarios from where you stand today."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["compare-options", "explore"]
5
7
  teaching: "When the path forward branches into multiple plausible futures, /mos:explore-futures synthesizes TTA, Scenario, and S-Curve views. Helps you choose without pretending you can predict."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: explore-trends
3
3
  description: Push trends to extremes to surface future problems
4
+ help_jtbd: "Surface the macro trends your venture is riding."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["understand-market", "explore"]
5
7
  teaching: "When today's trends could become tomorrow's problems, /mos:explore-trends pushes them to extremes to surface the second-order effects. The future shows up at the edges first."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: export
3
3
  description: Export a Data Room view to De Stijl HTML
4
+ help_jtbd: "Ship investor-ready PDF or Obsidian vault of your room."
4
5
  argument-hint: [hub|thesis|summary|report]
5
6
  disable-model-invocation: true
6
7
  body_shape: E (Action Report)
@@ -1,5 +1,7 @@
1
1
  ---
2
2
  description: Refresh FEYNMAN.md ## Timeline (auto) section for one or all room sections
3
+ help_jtbd: "Refresh the human-readable Timeline section in FEYNMAN.md."
4
+ body_shape: E
3
5
  argument-hint: "[--all | --section <slug>]"
4
6
  serves_jtbd: ["validate-idea", "audit-room"]
5
7
  teaching: "When a section's FEYNMAN.md timeline feels stale, /mos:feynman-timeline-refresh rebuilds the auto-section from the memory event log. Human-authored prose stays byte-preserved."
@@ -1,9 +1,13 @@
1
1
  ---
2
2
  name: file-meeting
3
3
  description: File a meeting transcript into the Data Room
4
+ help_jtbd: "Turn a meeting recording into structured room intelligence."
5
+ body_shape: E
4
6
  argument-hint: [--latest|--paste|<file>]
5
7
  serves_jtbd: ["file-meeting"]
6
8
  teaching: "When a meeting just happened, /mos:file-meeting captures the transcript and routes the intelligence into the right room sections. Meetings are where institutional knowledge actually lives."
9
+ # Per docs/reward-before-investment-rule.md line 60-62: surface first-paragraph extraction preview before full transcript ask. Remediation tracked as follow-up phase.
10
+ interactive_first_reward: paragraph_preview
7
11
  allowed-tools:
8
12
  - Read
9
13
  - Write
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: find-analogies
3
3
  description: Find cross-domain analogies with SAPPhIRE + TRIZ
4
+ help_jtbd: "Find cross-domain analogies from 1,427 methodology embeddings."
4
5
  body_shape: D (Comparison Matrix)
5
6
  serves_jtbd: ["connect-domains"]
6
7
  teaching: "When the answer might live in another field, /mos:find-analogies runs SAPPhIRE and TRIZ against your problem to surface cross-domain matches. Most breakthroughs are borrowed structure."
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: find-bottlenecks
3
3
  description: Find lagging components via Reverse Salient
4
+ help_jtbd: "Find the lagging component blocking your venture (Hughes reverse salient)."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["find-bottleneck"]
5
7
  teaching: "When progress feels stuck and you cannot say where, /mos:find-bottlenecks runs Reverse Salient analysis to name the lagging component. Hughes 1983, but for your venture."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  name: find-connections
3
3
  description: Find cross-domain patterns that touch your work
4
+ help_jtbd: "Surface non-obvious connections in your room's graph."
5
+ body_shape: "methodology"
4
6
  serves_jtbd: ["connect-domains"]
5
7
  teaching: "When you suspect your work touches a pattern in another field, /mos:find-connections traces cross-domain links through the graph. Surfaces the connections you did not know to look for."
6
8
  # --- Phase 122 workflow-layer frontmatter ---
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: funding
3
3
  description: Track grant opportunities through their lifecycle
4
+ help_jtbd: "See the grants and funding paths matching your room."
4
5
  argument-hint: [list|add|update]
5
6
  body_shape: B (Semantic Tree)
6
7
  serves_jtbd: ["prepare-pitch", "decide-pursue"]
package/commands/grade.md CHANGED
@@ -1,8 +1,12 @@
1
1
  ---
2
2
  name: grade
3
3
  description: Grade problem-discovery quality (6 components)
4
+ help_jtbd: "Get a fast grade on your room with feedback."
5
+ body_shape: C
4
6
  serves_jtbd: ["audit-room"]
5
7
  teaching: "When you want a fast read on problem-discovery quality, /mos:grade scores the room on six components in under a minute. The lightweight cousin of /mos:deep-grade."
8
+ # Per docs/reward-before-investment-rule.md line 64-66: show anonymized calibration distribution before requiring content. Remediation tracked as follow-up phase.
9
+ interactive_first_reward: calibration_distribution_preview
6
10
  # --- Phase 122 workflow-layer frontmatter ---
7
11
  kind: methodology
8
12
  frameworks: ["PWS Triple Validation Compass"]
package/commands/graph.md CHANGED
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: graph
3
3
  description: Explore the knowledge graph by asking questions
4
+ help_jtbd: "Ask your room a question; get the answer as graph paths."
4
5
  body_shape: C (Room Card)
5
6
  body_shape_detail: Query results as cards, graph stats as header
6
7
  serves_jtbd: ["audit-room", "explore"]
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: hat-briefing
3
3
  description: Consolidate Six Hats briefings from hat memory
4
+ help_jtbd: "Get a per-hat briefing from the AI team on your venture."
4
5
  body_shape: C (Dashboard Grid)
5
6
  body_shape_detail: 6-panel hat grid + synthesis strip
6
7
  serves_jtbd: ["prepare-pitch"]