@mindrian_os/install 1.13.0-beta.17 → 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.
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +26 -0
- package/commands/act.md +1 -0
- package/commands/admin.md +1 -0
- package/commands/analyze-needs.md +2 -0
- package/commands/analyze-systems.md +2 -0
- package/commands/analyze-timing.md +2 -0
- package/commands/auto-explore.md +2 -0
- package/commands/beautiful-question.md +2 -0
- package/commands/brain-derive.md +2 -0
- package/commands/build-knowledge.md +2 -0
- package/commands/build-thesis.md +2 -0
- package/commands/causal.md +2 -0
- package/commands/challenge-assumptions.md +2 -0
- package/commands/compare-ventures.md +2 -0
- package/commands/dashboard.md +2 -1
- package/commands/deep-grade.md +2 -0
- package/commands/diagnose.md +21 -1
- package/commands/diagnostics.md +14 -3
- package/commands/doctor.md +4 -1
- package/commands/dogfood-flush.md +92 -0
- package/commands/dominant-designs.md +2 -0
- package/commands/explain-decision.md +2 -0
- package/commands/explore-domains.md +2 -0
- package/commands/explore-futures.md +2 -0
- package/commands/explore-trends.md +2 -0
- package/commands/export.md +1 -0
- package/commands/feynman-timeline-refresh.md +2 -0
- package/commands/file-meeting.md +2 -0
- package/commands/find-analogies.md +1 -0
- package/commands/find-bottlenecks.md +2 -0
- package/commands/find-connections.md +2 -0
- package/commands/funding.md +1 -0
- package/commands/grade.md +2 -0
- package/commands/graph.md +1 -0
- package/commands/hat-briefing.md +1 -0
- package/commands/heal.md +22 -170
- package/commands/help.md +54 -334
- package/commands/hmi-status.md +23 -144
- package/commands/jtbd.md +1 -0
- package/commands/leadership.md +2 -0
- package/commands/lean-canvas.md +2 -0
- package/commands/macro-trends.md +2 -0
- package/commands/map-unknowns.md +2 -0
- package/commands/memory.md +1 -0
- package/commands/models.md +1 -0
- package/commands/mos-reason.md +2 -0
- package/commands/mos.md +139 -0
- package/commands/mullins.md +2 -0
- package/commands/mva-brief.md +2 -0
- package/commands/mva-option.md +2 -0
- package/commands/new-project.md +2 -0
- package/commands/onboard.md +20 -7
- package/commands/operator.md +1 -0
- package/commands/opportunities.md +1 -0
- package/commands/organize.md +22 -469
- package/commands/persona.md +1 -0
- package/commands/pipeline.md +2 -0
- package/commands/present.md +1 -0
- package/commands/publish.md +2 -0
- package/commands/query.md +24 -102
- package/commands/radar.md +2 -0
- package/commands/reanalyze.md +1 -0
- package/commands/research.md +2 -0
- package/commands/room.md +2 -0
- package/commands/rooms.md +1 -0
- package/commands/root-cause.md +2 -0
- package/commands/rs-experts.md +1 -0
- package/commands/rs-explain.md +1 -0
- package/commands/rs-fetch.md +1 -0
- package/commands/rs-thesis.md +1 -0
- package/commands/scenario-plan.md +2 -0
- package/commands/scheduled-tasks.md +1 -0
- package/commands/score-innovation.md +2 -0
- package/commands/scout.md +1 -0
- package/commands/setup.md +2 -0
- package/commands/snapshot.md +2 -0
- package/commands/speakers.md +1 -0
- package/commands/splash.md +5 -2
- package/commands/status.md +1 -0
- package/commands/structure-argument.md +2 -0
- package/commands/suggest-next.md +2 -0
- package/commands/systems-thinking.md +2 -0
- package/commands/think-hats.md +2 -0
- package/commands/update.md +2 -0
- package/commands/user-needs.md +2 -0
- package/commands/validate.md +2 -0
- package/commands/value-proposition.md +2 -0
- package/commands/vault.md +2 -0
- package/commands/visualize.md +24 -29
- package/commands/whitespace.md +2 -1
- package/commands/wiki.md +1 -0
- package/hooks/hooks.json +22 -88
- package/lib/agents/auto-explore-agent.cjs +82 -0
- package/lib/core/breakthrough/canary.cjs +134 -0
- package/lib/core/breakthrough/canary.test.cjs +136 -0
- package/lib/core/breakthrough/detectors.cjs +359 -0
- package/lib/core/breakthrough/detectors.test.cjs +333 -0
- package/lib/core/breakthrough/ethics-fence.cjs +127 -0
- package/lib/core/breakthrough/ethics-fence.test.cjs +178 -0
- package/lib/core/breakthrough/resurfacing.cjs +150 -0
- package/lib/core/breakthrough/resurfacing.test.cjs +233 -0
- package/lib/core/breakthrough/review-queue.cjs +154 -0
- package/lib/core/breakthrough/review-queue.test.cjs +160 -0
- package/lib/core/breakthrough/scanner-d17-d18.test.cjs +229 -0
- package/lib/core/breakthrough/scanner.cjs +426 -0
- package/lib/core/breakthrough/scanner.test.cjs +267 -0
- package/lib/core/breakthrough/schema.cjs +164 -0
- package/lib/core/breakthrough/schema.test.cjs +256 -0
- package/lib/core/breakthrough/scoring.cjs +293 -0
- package/lib/core/breakthrough/scoring.test.cjs +423 -0
- package/lib/core/breakthrough/verb-dispatch.cjs +221 -0
- package/lib/core/breakthrough/verb-dispatch.test.cjs +185 -0
- package/lib/core/breakthrough/voice-scaffold.cjs +247 -0
- package/lib/core/breakthrough/voice-scaffold.test.cjs +251 -0
- package/lib/core/first-touch-version-stamper.cjs +113 -0
- package/lib/core/larry-thinness-acknowledgment.cjs +64 -0
- package/lib/core/larry-thinness-acknowledgment.test.cjs +97 -0
- package/lib/core/llm-name-suggester.cjs +194 -0
- package/lib/core/llm-name-suggester.test.cjs +132 -0
- package/lib/core/mva-orchestrator.cjs +41 -0
- package/lib/core/mva-telemetry.cjs +31 -143
- package/lib/core/navigation/edges.cjs +35 -0
- package/lib/core/navigation/memory-events.cjs +126 -0
- package/lib/core/room-auto-create.cjs +318 -0
- package/lib/core/room-auto-create.test.cjs +198 -0
- package/lib/core/room-discard-cascade.cjs +225 -0
- package/lib/core/room-discard-cascade.test.cjs +135 -0
- package/lib/core/room-name-validator.cjs +132 -0
- package/lib/core/room-name-validator.test.cjs +156 -0
- package/lib/core/room-naming-selector.cjs +357 -0
- package/lib/core/room-naming-selector.test.cjs +277 -0
- package/lib/core/room-receipt-emit.cjs +63 -0
- package/lib/core/room-skeleton-scaffold.cjs +315 -0
- package/lib/core/room-skeleton-scaffold.test.cjs +291 -0
- package/lib/core/stale-copy-scanner.cjs +190 -0
- package/lib/core/state-aware-router.cjs +78 -0
- package/lib/core/telemetry/schema.cjs +168 -0
- package/lib/core/telemetry/schema.test.cjs +124 -0
- package/lib/core/telemetry/validator.cjs +197 -0
- package/lib/core/telemetry/validator.test.cjs +188 -0
- package/lib/core/telemetry/writer.cjs +141 -0
- package/lib/core/telemetry/writer.test.cjs +331 -0
- package/lib/core/terminal-capability.cjs +88 -0
- package/lib/core/venture-shape-nudge.cjs +163 -0
- package/lib/core/venture-shape-nudge.test.cjs +161 -0
- package/lib/core/visual-ops.cjs +70 -2
- package/lib/hmi/selector-dispatcher.cjs +90 -1
- package/lib/hmi/shape-f7-breakthrough-renderer.cjs +222 -0
- package/lib/hmi/shape-f7-breakthrough-renderer.test.cjs +233 -0
- package/lib/memory/body-shape-coverage.test.cjs +268 -0
- package/lib/memory/doctor-deprecation-surface.test.cjs +185 -0
- package/lib/memory/first-touch-version.test.cjs +198 -0
- package/lib/memory/help-coverage.test.cjs +108 -0
- package/lib/memory/help-renderer.test.cjs +145 -0
- package/lib/memory/palette-consistency.test.cjs +127 -0
- package/lib/memory/pending-tension-store.cjs +80 -0
- package/lib/memory/render-v2-disposition.test.cjs +199 -0
- package/lib/memory/run-feynman-tests.cjs +213 -0
- package/lib/memory/sessionstart-coordinator.test.cjs +446 -0
- package/lib/memory/skill-vs-code-drift.test.cjs +257 -0
- package/lib/memory/soft-alias.test.cjs +144 -0
- package/lib/memory/stale-copy-scanner.test.cjs +291 -0
- package/lib/memory/state-aware-router.test.cjs +90 -0
- package/lib/memory/statusline-two-row.test.cjs +338 -0
- package/lib/memory/terminal-capability.test.cjs +155 -0
- package/lib/render/ROOM.md +74 -22
- package/lib/sessionstart/budget-compressor.cjs +130 -0
- package/lib/sessionstart/contributor-interface.cjs +134 -0
- package/lib/sessionstart/contributor-isolator.cjs +128 -0
- package/lib/sessionstart/precedence-ladder.cjs +47 -0
- package/lib/statusline/governing-thought-truncator.cjs +45 -0
- package/lib/statusline/two-row-renderer.cjs +186 -0
- package/lib/statusline/version-resolver.cjs +81 -0
- package/package.json +1 -1
- package/references/visual/ROOM.md +55 -0
- package/references/visual/palette.json +54 -0
- package/skills/larry-personality/SKILL.md +34 -0
- package/skills/ui-system/SKILL.md +109 -1
- package/skills/ui-system/rules/dual-palette.md +156 -0
- package/skills/ui-system/rules/glyph-disambiguation.md +171 -0
- package/skills/ui-system/rules/shape-f-zero-and-six.md +169 -0
package/commands/query.md
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: query
|
|
3
|
-
description: Query the knowledge graph in natural language
|
|
4
|
-
|
|
3
|
+
description: "[Deprecated] Query the knowledge graph in natural language (use /mos:graph)"
|
|
4
|
+
help_jtbd: "Ask your room any question; get the answer as graph paths (deprecated: use /mos:graph)."
|
|
5
|
+
body_shape: D
|
|
6
|
+
argument-hint: "[question]"
|
|
5
7
|
serves_jtbd: ["audit-room", "explore"]
|
|
6
|
-
|
|
8
|
+
deprecated: true
|
|
9
|
+
deprecated_redirect: "graph"
|
|
10
|
+
deprecated_removal: "v1.14.0"
|
|
11
|
+
teaching: "Deprecated alias. Use /mos:graph to ask natural-language questions of the knowledge graph; query and graph share the same translator. Scheduled removal: v1.14.0."
|
|
7
12
|
allowed-tools:
|
|
8
13
|
- Read
|
|
9
14
|
- Bash
|
|
@@ -11,115 +16,32 @@ allowed-tools:
|
|
|
11
16
|
|
|
12
17
|
# /mos:query
|
|
13
18
|
|
|
14
|
-
|
|
19
|
+
> Deprecated. /mos:query now redirects to /mos:graph. Scheduled removal: v1.14.0. Use /mos:graph going forward.
|
|
15
20
|
|
|
16
|
-
|
|
21
|
+
You are Larry. The user invoked /mos:query. Per D-09 (LOCKED 2026-05-16, Phase 121.5-08 Sub-plan J) /mos:query is a soft-alias stub for the v1.13.x window. The canonical surface is /mos:graph.
|
|
17
22
|
|
|
18
|
-
|
|
19
|
-
/mos:query <natural language question>
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
## Examples
|
|
23
|
-
|
|
24
|
-
- `/mos:query What contradicts my pricing assumption?`
|
|
25
|
-
- `/mos:query Which sections are most connected?`
|
|
26
|
-
- `/mos:query What informs my solution design?`
|
|
27
|
-
- `/mos:query Show all convergent themes across sections`
|
|
28
|
-
- `/mos:query What artifacts are in market-analysis?`
|
|
29
|
-
- `/mos:query Find all cross-section relationships`
|
|
30
|
-
|
|
31
|
-
## How It Works
|
|
32
|
-
|
|
33
|
-
1. **Parse the question** -- understand what the user is asking about (relationships, sections, artifacts, contradictions, themes).
|
|
34
|
-
2. **Load the graph schema** -- read `docs/lazygraph-schema.md` for node types, edge types, and SQL patterns.
|
|
35
|
-
3. **Generate SQL** -- translate the natural language question into a SQL query against the nodes/edges tables.
|
|
36
|
-
4. **Execute the query** -- use `lazygraph-ops.cjs` functions:
|
|
37
|
-
```javascript
|
|
38
|
-
const { openGraph, queryGraph, closeGraph } = require('./lib/core/lazygraph-ops.cjs');
|
|
39
|
-
const { db, conn } = await openGraph('room');
|
|
40
|
-
const results = await queryGraph(conn, sqlQuery);
|
|
41
|
-
```
|
|
42
|
-
5. **Format results** -- present findings as Larry-style insights, not raw data tables. Explain what the relationships mean for the venture.
|
|
23
|
+
## Steps
|
|
43
24
|
|
|
44
|
-
|
|
25
|
+
1. Emit the deprecation note above as a single cyan line (Larry voice; no em-dash; one sentence per skills/ui-system/SKILL.md Section 6).
|
|
45
26
|
|
|
46
|
-
|
|
47
|
-
> "No Data Room yet. Run `/mos:new-project` to get started, then file some artifacts before querying."
|
|
27
|
+
2. Invoke /mos:graph with the user's original arguments (the natural-language question). Run:
|
|
48
28
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
If the room exists but has no `.mindrian/room.db` file, auto-initialize by running a graph rebuild:
|
|
52
|
-
|
|
53
|
-
```javascript
|
|
54
|
-
const { openGraph, rebuildGraph } = require('./lib/core/lazygraph-ops.cjs');
|
|
55
|
-
const { db, conn } = await openGraph('room');
|
|
56
|
-
await rebuildGraph(conn, 'room');
|
|
29
|
+
```bash
|
|
30
|
+
node "${CLAUDE_PLUGIN_ROOT}/scripts/soft-alias-runner.cjs" --from query --to "graph" --remaining-args $ARGUMENTS
|
|
57
31
|
```
|
|
58
32
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
## Step 2: Generate and Execute SQL
|
|
62
|
-
|
|
63
|
-
Read `docs/lazygraph-schema.md` for the full schema reference and example query patterns.
|
|
64
|
-
|
|
65
|
-
**Translation guidelines:**
|
|
66
|
-
- "What contradicts..." -> `SELECT source, target FROM edges WHERE type = 'CONTRADICTS'`
|
|
67
|
-
- "What informs..." -> `SELECT source, target FROM edges WHERE type = 'INFORMS'`
|
|
68
|
-
- "What enables..." -> `SELECT source, target FROM edges WHERE type = 'ENABLES'`
|
|
69
|
-
- "Which sections..." -> `SELECT target, COUNT(*) FROM edges WHERE type = 'BELONGS_TO' GROUP BY target ORDER BY COUNT(*) DESC`
|
|
70
|
-
- "Show connections..." -> `SELECT * FROM edges WHERE source = ? OR target = ?`
|
|
71
|
-
- "How connected is..." -> `SELECT COUNT(*) FROM edges WHERE source = ? OR target = ?`
|
|
72
|
-
|
|
73
|
-
**SQLite notes:**
|
|
74
|
-
- Use json_extract(properties, '$.field') to access JSON properties on nodes and edges
|
|
75
|
-
- Standard SQL syntax -- no graph-specific extensions needed
|
|
76
|
-
- All node properties stored as JSON in the properties column
|
|
77
|
-
|
|
78
|
-
## Step 3: Format Results as Insights
|
|
79
|
-
|
|
80
|
-
Never return raw query output. Always interpret results in Larry's voice.
|
|
81
|
-
|
|
82
|
-
**For contradictions:**
|
|
83
|
-
> "I found 2 contradictions touching your pricing model. Your market-analysis/competitor-review says premium pricing is sustainable, but your financial-model/unit-economics suggests price sensitivity. Worth reconciling -- these two sections are pulling in different directions."
|
|
84
|
-
|
|
85
|
-
**For informational queries:**
|
|
86
|
-
> "3 artifacts inform your solution design: your problem-definition/core-problem (the foundation), market-analysis/customer-interviews (real voices), and competitive-analysis/gap-analysis (where you fit). That's a solid chain of reasoning."
|
|
87
|
-
|
|
88
|
-
**For empty results:**
|
|
89
|
-
> "No results for that query. This could mean the relationship hasn't been captured yet. Try filing more artifacts with [[cross-references]] to build the graph, or rephrase your question."
|
|
90
|
-
|
|
91
|
-
**For statistics:**
|
|
92
|
-
> "Your knowledge graph has 12 artifacts across 5 sections, with 8 INFORMS edges and 2 CONTRADICTS. The market-analysis section is your most connected -- 4 artifacts referencing other sections."
|
|
93
|
-
|
|
94
|
-
## Requirements
|
|
95
|
-
|
|
96
|
-
- Room must have artifacts filed. Run `/mos:room` first to check room status.
|
|
97
|
-
- First query auto-initializes the graph if `.mindrian/room.db` does not exist.
|
|
98
|
-
- Cross-references between sections require `[[wikilinks]]` in artifact content.
|
|
99
|
-
- ENABLES and INVALIDATES edges require explicit frontmatter markers (`enables:` and `invalidates:` fields).
|
|
100
|
-
|
|
101
|
-
## Graph Schema Reference
|
|
102
|
-
|
|
103
|
-
See `docs/lazygraph-schema.md` for the complete schema including:
|
|
104
|
-
- All node types and properties
|
|
105
|
-
- All relationship types with directions
|
|
106
|
-
- Example SQL query patterns
|
|
107
|
-
- SQLite query notes
|
|
33
|
+
The runner emits `{redirect, deprecation_note, args, ok}`. Use the redirect to confirm the target, then proceed with /mos:graph behavior. The user sees ONE deprecation note + the graph traversal output.
|
|
108
34
|
|
|
109
|
-
|
|
35
|
+
3. Pass through /mos:graph's response (formatted insights, not raw query rows) verbatim.
|
|
110
36
|
|
|
111
|
-
|
|
37
|
+
## Why this is a soft-alias
|
|
112
38
|
|
|
113
|
-
|
|
114
|
-
- "What else discusses customer acquisition costs?" (semantic match, no wikilink needed)
|
|
115
|
-
- "Find artifacts similar to my pricing model" (embedding similarity)
|
|
39
|
+
Cluster 5 audit (2026-05-15) found that /mos:query and /mos:graph both translated natural language to SQL/Cypher against room.db. Two commands, identical translator, different names. Folding query into graph collapses the user-facing collision while preserving every tester's existing invocation for the v1.13.x window.
|
|
116
40
|
|
|
117
|
-
|
|
41
|
+
Per D-09 the old command stays as a soft-alias stub for v1.13.x; removal is scheduled v1.14.0. CHANGELOG announces the rename.
|
|
118
42
|
|
|
119
|
-
##
|
|
43
|
+
## Cross-references
|
|
120
44
|
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
- Always suggest a next action: "Want me to dig deeper into that contradiction?" or "Should I check what else informs this section?"
|
|
125
|
-
- If the graph is sparse, encourage more cross-referencing: "Your graph would be richer with more [[wikilinks]] between sections."
|
|
45
|
+
- `commands/graph.md` -- the canonical target with the full graph query translator.
|
|
46
|
+
- `scripts/soft-alias-runner.cjs` -- the shared runner.
|
|
47
|
+
- Canon Part 7 (Reuse Before Build) -- consolidation rationale.
|
package/commands/radar.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: radar
|
|
3
3
|
description: Track Claude capabilities that may help MindrianOS
|
|
4
|
+
help_jtbd: "Get a radar view of where your room is strong + weak."
|
|
5
|
+
body_shape: A
|
|
4
6
|
serves_jtbd: ["understand-market"]
|
|
5
7
|
teaching: "When new Claude capabilities ship that might change what MindrianOS can do, /mos:radar tracks them so you do not have to. Capability awareness as a habit, not a one-time scan."
|
|
6
8
|
allowed-tools:
|
package/commands/reanalyze.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: reanalyze
|
|
3
3
|
description: Re-analyze filed meetings for new patterns
|
|
4
|
+
help_jtbd: "Re-run analysis on a single artifact or section."
|
|
4
5
|
body_shape: E (Action Report)
|
|
5
6
|
body_shape_detail: Before/after delta showing new insights discovered
|
|
6
7
|
serves_jtbd: ["file-meeting"]
|
package/commands/research.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: research
|
|
3
3
|
description: Research the web and cross-reference with Brain
|
|
4
|
+
help_jtbd: "Spawn a research sub-agent for a specific question."
|
|
5
|
+
body_shape: C
|
|
4
6
|
argument-hint: [topic]
|
|
5
7
|
serves_jtbd: ["explore", "understand-market"]
|
|
6
8
|
teaching: "When you need fresh evidence from the web cross-referenced with the Brain methodology graph, /mos:research runs the dual-source pull. Public signal plus calibrated framework."
|
package/commands/room.md
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: room
|
|
3
3
|
description: View, launch, or navigate the Data Room
|
|
4
|
+
help_jtbd: "Open your current room's view in this terminal."
|
|
4
5
|
argument-hint: [overview|<section>]
|
|
6
|
+
body_shape: C
|
|
5
7
|
body_shape_overview: B (Semantic Tree)
|
|
6
8
|
body_shape_section: C (Room Card)
|
|
7
9
|
serves_jtbd: ["audit-room"]
|
package/commands/rooms.md
CHANGED
package/commands/root-cause.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: root-cause
|
|
3
3
|
description: Trace root cause via 5-Whys, Fishbone, Fault Tree
|
|
4
|
+
help_jtbd: "Trace the root cause of a symptom in your venture."
|
|
5
|
+
body_shape: "methodology"
|
|
4
6
|
serves_jtbd: ["find-problem"]
|
|
5
7
|
teaching: "When the symptom keeps coming back, /mos:root-cause traces it via 5-Whys, Fishbone, and Fault Tree. Treats the cause, not the recurrence."
|
|
6
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
package/commands/rs-experts.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: rs-experts
|
|
3
3
|
description: Resolve the expert network for a topic via Aura Cypher MATCH
|
|
4
|
+
help_jtbd: "Surface the expert profiles for a reverse salient."
|
|
4
5
|
body_shape: D (Comparison Matrix)
|
|
5
6
|
serves_jtbd: ["find-bottleneck", "connect-domains"]
|
|
6
7
|
teaching: "When you need to know who in the world is working on a reverse salient you found, /mos:rs-experts resolves the expert network via Brain Cypher MATCH. Routes you to the people who already know."
|
package/commands/rs-explain.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: rs-explain
|
|
3
3
|
description: Bidirectional NL-Graph entry point. NL question to graph queries to Larry-voiced explanation.
|
|
4
|
+
help_jtbd: "Explain a reverse salient finding in plain language."
|
|
4
5
|
body_shape: E (Action Report)
|
|
5
6
|
serves_jtbd: ["find-bottleneck"]
|
|
6
7
|
teaching: "When you have a question about a Reverse Salient discovery, /mos:rs-explain takes natural language in and returns a Larry-voiced explanation grounded in the graph. Bidirectional NL to graph and back."
|
package/commands/rs-fetch.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: rs-fetch
|
|
3
3
|
description: Run the full Reverse Salient discovery pipeline for a topic
|
|
4
|
+
help_jtbd: "Fetch the latest reverse salient analysis for your room."
|
|
4
5
|
body_shape: E (Action Report)
|
|
5
6
|
serves_jtbd: ["find-bottleneck", "surface-contradiction"]
|
|
6
7
|
teaching: "When you need the full Reverse Salient pipeline run on a topic, /mos:rs-fetch executes the discovery end-to-end: corpus, math, cross-domain match, thesis. The complete sweep, not a sample."
|
package/commands/rs-thesis.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: rs-thesis
|
|
3
3
|
description: Read the thesis for a prior Reverse Salient discovery
|
|
4
|
+
help_jtbd: "Compose the thesis statement from your reverse salient findings."
|
|
4
5
|
body_shape: E (Action Report)
|
|
5
6
|
serves_jtbd: ["find-bottleneck"]
|
|
6
7
|
teaching: "When you ran a Reverse Salient discovery earlier and want the thesis read back, /mos:rs-thesis surfaces the analytic conclusion in plain language. Best for revisiting old findings before a meeting."
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: scenario-plan
|
|
3
3
|
description: Build a 2x2 scenario matrix of plausible futures
|
|
4
|
+
help_jtbd: "Branch into scenarios and compare outcomes."
|
|
5
|
+
body_shape: "methodology"
|
|
4
6
|
serves_jtbd: ["compare-options", "plan-execution"]
|
|
5
7
|
teaching: "When the future could go two different ways on two key uncertainties, /mos:scenario-plan builds the 2x2 matrix and names each quadrant. Forces you to plan for the world you do not expect."
|
|
6
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: scheduled-tasks
|
|
3
3
|
description: Define Cowork scheduled tasks for the room
|
|
4
|
+
help_jtbd: "View and manage scheduled background sweeps."
|
|
4
5
|
body_shape: E (Action Report)
|
|
5
6
|
serves_jtbd: ["plan-execution"]
|
|
6
7
|
teaching: "When you want Cowork to run something on a schedule against this room, /mos:scheduled-tasks defines the recurring job. Best for nightly grant sweeps or weekly meeting digests."
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: score-innovation
|
|
3
3
|
description: Score cross-domain innovation via HSI
|
|
4
|
+
help_jtbd: "Score the innovation potential of your venture."
|
|
5
|
+
body_shape: "methodology"
|
|
4
6
|
serves_jtbd: ["compare-options", "validate-idea"]
|
|
5
7
|
teaching: "When you are choosing between cross-domain innovation candidates, /mos:score-innovation runs HSI scoring to rank them by semantic surprise. The math reveals which idea is actually novel."
|
|
6
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
package/commands/scout.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: scout
|
|
3
3
|
description: Run sentinel scans across the room
|
|
4
|
+
help_jtbd: "Scout the competitive landscape for a specific axis."
|
|
4
5
|
body_shape: E (Action Report)
|
|
5
6
|
serves_jtbd: ["explore", "understand-market"]
|
|
6
7
|
teaching: "When you want background scans running across the room without driving them yourself, /mos:scout fires the sentinel checks. The proactive layer, not the reactive one."
|
package/commands/setup.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: setup
|
|
3
3
|
description: Configure optional integrations (Brain, Velma)
|
|
4
|
+
help_jtbd: "Add optional integrations: graph, Brain, MCP servers."
|
|
5
|
+
body_shape: E
|
|
4
6
|
argument-hint: [brain|velma|graph]
|
|
5
7
|
serves_jtbd: ["explore"]
|
|
6
8
|
teaching: "When you want to wire optional integrations like Brain or Velma, /mos:setup walks you through configuration. MindrianOS works without them; they make it work harder."
|
package/commands/snapshot.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: snapshot
|
|
3
3
|
description: Package a Data Room snapshot for sharing
|
|
4
|
+
help_jtbd: "Capture a snapshot of your room at this moment."
|
|
5
|
+
body_shape: E
|
|
4
6
|
argument-hint: '[<room-path>] [--open]'
|
|
5
7
|
serves_jtbd: ["prepare-pitch", "audit-room"]
|
|
6
8
|
teaching: "When you need a frozen Data Room artifact to share with someone outside the team, /mos:snapshot packages everything into a portable bundle. Read-only by design."
|
package/commands/speakers.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: speakers
|
|
3
3
|
description: Show who spoke in your meetings and their roles
|
|
4
|
+
help_jtbd: "Surface speaker profiles from filed meetings."
|
|
4
5
|
body_shape: C (Room Card)
|
|
5
6
|
body_shape_detail: Each speaker as a card with role, expertise, meeting count
|
|
6
7
|
serves_jtbd: ["file-meeting"]
|
package/commands/splash.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: splash
|
|
3
3
|
description: Display the MindrianOS Mondrian banner
|
|
4
|
-
|
|
4
|
+
help_jtbd: "See the MindrianOS welcome panel + version."
|
|
5
|
+
body_shape: E
|
|
5
6
|
serves_jtbd: ["explore"]
|
|
6
7
|
teaching: "When you want the MindrianOS Mondrian banner, /mos:splash displays it. Mostly decorative; useful for screenshots and demo openings."
|
|
7
8
|
allowed-tools:
|
|
@@ -14,12 +15,14 @@ Display the MindrianOS De Stijl Mondrian banner + the owned-emotion tagline (D-0
|
|
|
14
15
|
|
|
15
16
|
## What to do
|
|
16
17
|
|
|
17
|
-
Run the banner script. It auto-reads the version from plugin.json -- no arguments needed
|
|
18
|
+
Run the banner script. It auto-reads the version from plugin.json -- no arguments needed. The banner now stamps the running version of record at the top per Phase 121.5-05 Sub-plan F (SEED-007 absorption); ensure the response shows the banner output verbatim so the user sees "MindrianOS v<version>" without typing `claude plugin list`:
|
|
18
19
|
|
|
19
20
|
```bash
|
|
20
21
|
bash "${CLAUDE_PLUGIN_ROOT}/scripts/banner"
|
|
21
22
|
```
|
|
22
23
|
|
|
24
|
+
The first line of the banner output is the canonical version stamp -- format `MindrianOS v<version>`, sourced from `${CLAUDE_PLUGIN_ROOT}/lib/core/first-touch-version-stamper.cjs` (`stampVersion('splash')` returns the long form `MindrianOS v<version> -- conversation as the product surface` if you need to echo the stamp in prose).
|
|
25
|
+
|
|
23
26
|
After the banner renders, print the owned-emotion tagline on its own line, verbatim (this is `lib/copy/115-spec-strings.cjs` SPLASH_COPY -- do NOT paraphrase per Pitfall 1):
|
|
24
27
|
|
|
25
28
|
> Stuck on a decision you can't name? Let's find the shape of it.
|
package/commands/status.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: status
|
|
3
3
|
description: Show governing thought per section + health glyphs
|
|
4
|
+
help_jtbd: "See your room's section-by-section status at a glance."
|
|
4
5
|
argument-hint: "[section] [--stale-only]"
|
|
5
6
|
body_shape: E (Action Report)
|
|
6
7
|
serves_jtbd: ["audit-room", "explore"]
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: structure-argument
|
|
3
3
|
description: Structure an argument with Minto + SCQA + MECE
|
|
4
|
+
help_jtbd: "Build a Minto-Pyramid argument from your room's evidence."
|
|
5
|
+
body_shape: "methodology"
|
|
4
6
|
serves_jtbd: ["validate-idea", "explore"]
|
|
5
7
|
teaching: "When an argument is muddled and you cannot say why, /mos:structure-argument restructures it with Minto pyramid, SCQA, and MECE. The right structure usually surfaces the missing premise."
|
|
6
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
package/commands/suggest-next.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: suggest-next
|
|
3
3
|
description: Suggest the next move using the room graph
|
|
4
|
+
help_jtbd: "Get the next move Larry recommends, ranked."
|
|
5
|
+
body_shape: B
|
|
4
6
|
serves_jtbd: ["plan-execution", "explore"]
|
|
5
7
|
teaching: "When you finish a step and want Larry to recommend the next move, /mos:suggest-next reads the room graph and proposes 3-5 options with reasons. The Navigation Engine made visible."
|
|
6
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: systems-thinking
|
|
3
3
|
description: Map feedback loops, stocks, and flows
|
|
4
|
+
help_jtbd: "Apply systems-thinking lenses to a problem."
|
|
5
|
+
body_shape: "methodology"
|
|
4
6
|
serves_jtbd: ["find-bottleneck"]
|
|
5
7
|
teaching: "When the dynamics matter more than the parts, /mos:systems-thinking maps feedback loops, stocks, and flows. Surfaces where the leverage actually lives in the system."
|
|
6
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
package/commands/think-hats.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: think-hats
|
|
3
3
|
description: Rotate through De Bono's Six Thinking Hats
|
|
4
|
+
help_jtbd: "Get a six-thinking-hats pass from the AI team."
|
|
5
|
+
body_shape: "methodology"
|
|
4
6
|
serves_jtbd: ["explore", "compare-options"]
|
|
5
7
|
teaching: "When the team keeps wearing the same hat and missing perspectives, /mos:think-hats rotates them through de Bono's six. The discomfort is the point; that is where the new thought lives."
|
|
6
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
package/commands/update.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: update
|
|
3
3
|
description: Check for MindrianOS updates and install via Claude Code's native plugin loader
|
|
4
|
+
help_jtbd: "Update the plugin to the latest version."
|
|
5
|
+
body_shape: E
|
|
4
6
|
argument-hint: [check|reapply|force]
|
|
5
7
|
serves_jtbd: ["audit-room"]
|
|
6
8
|
teaching: "When you suspect MindrianOS has a newer version waiting, /mos:update checks and installs via Claude Code's native plugin loader. Stale plugins quietly diverge from the docs."
|
package/commands/user-needs.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: user-needs
|
|
3
3
|
description: Map user needs with importance vs satisfaction
|
|
4
|
+
help_jtbd: "Map user needs against your value proposition."
|
|
5
|
+
body_shape: "methodology"
|
|
4
6
|
serves_jtbd: ["find-problem"]
|
|
5
7
|
teaching: "When you need to map what users actually want versus what they say they want, /mos:user-needs plots importance against satisfaction. The gap is where the opportunity lives."
|
|
6
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
package/commands/validate.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: validate
|
|
3
3
|
description: Validate ideas via importance-satisfaction scoring
|
|
4
|
+
help_jtbd: "Validate a specific claim or hypothesis against evidence."
|
|
5
|
+
body_shape: C
|
|
4
6
|
serves_jtbd: ["validate-idea"]
|
|
5
7
|
teaching: "When an idea needs a real test before more investment, /mos:validate runs importance-satisfaction scoring against the customer segment. Validation is a measurement, not a feeling."
|
|
6
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: validate-proposition
|
|
3
3
|
description: Score your value proposition against 3 VP gates
|
|
4
|
+
help_jtbd: "Compose the value proposition canvas for your room."
|
|
5
|
+
body_shape: "methodology"
|
|
4
6
|
serves_jtbd: ["validate-idea", "prepare-pitch"]
|
|
5
7
|
teaching: "When you have a value proposition but no proof it holds, /mos:validate-proposition scores it against the three PWS VP gates with sequential math. A clean gate failure beats a vague pass."
|
|
6
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
package/commands/vault.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: vault
|
|
3
3
|
description: Export the Data Room as an Obsidian vault
|
|
4
|
+
help_jtbd: "Export your room as an Obsidian vault."
|
|
4
5
|
argument-hint: '[<room-name>] [--path <dir>]'
|
|
5
6
|
disable-model-invocation: true
|
|
7
|
+
body_shape: E
|
|
6
8
|
body_shape_overview: E (Mini Report)
|
|
7
9
|
serves_jtbd: ["prepare-pitch"]
|
|
8
10
|
teaching: "When you want the Data Room available in Obsidian for offline reading, /mos:vault exports it as a nested vault with wikilinks intact. Graph view comes free."
|
package/commands/visualize.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: visualize
|
|
3
|
-
description: Open room diagrams in the browser
|
|
4
|
-
|
|
3
|
+
description: "[Deprecated] Open room diagrams in the browser (use /mos:dashboard --mermaid)"
|
|
4
|
+
help_jtbd: "Generate visualizations of your room's graph (deprecated: use /mos:dashboard --mermaid)."
|
|
5
|
+
argument-hint: "[structure|graph|chart]"
|
|
5
6
|
body_shape: D (Document View)
|
|
6
7
|
serves_jtbd: ["audit-room", "prepare-pitch"]
|
|
7
|
-
|
|
8
|
+
deprecated: true
|
|
9
|
+
deprecated_redirect: "dashboard --mermaid"
|
|
10
|
+
deprecated_removal: "v1.14.0"
|
|
11
|
+
teaching: "Deprecated alias. Use /mos:dashboard --mermaid to open the De Stijl knowledge-graph viewer with Mermaid output; visualize folds into the dashboard surface. Scheduled removal: v1.14.0."
|
|
8
12
|
ui_reference: skills/ui-system/SKILL.md
|
|
9
13
|
allowed-tools:
|
|
10
14
|
- Bash
|
|
@@ -13,41 +17,32 @@ allowed-tools:
|
|
|
13
17
|
|
|
14
18
|
# /mos:visualize
|
|
15
19
|
|
|
16
|
-
|
|
20
|
+
> Deprecated. /mos:visualize now redirects to /mos:dashboard --mermaid. Scheduled removal: v1.14.0. Use /mos:dashboard --mermaid going forward.
|
|
17
21
|
|
|
18
|
-
|
|
22
|
+
You are Larry. The user invoked /mos:visualize. Per D-09 + the Phase 121.5-08 planner decision (LOCKED 2026-05-16, Sub-plan J) /mos:visualize is a soft-alias stub for the v1.13.x window. The canonical surface is /mos:dashboard --mermaid.
|
|
19
23
|
|
|
20
|
-
|
|
21
|
-
- `/mos:visualize graph` -- Knowledge graph view (LazyGraph nodes and edges)
|
|
22
|
-
- `/mos:visualize chain` -- Latest methodology chain flowchart
|
|
23
|
-
- `/mos:visualize timeline` -- Meeting timeline (Gantt-style)
|
|
24
|
+
## Steps
|
|
24
25
|
|
|
25
|
-
|
|
26
|
+
1. Emit the deprecation note above as a single cyan line (Larry voice; no em-dash; one sentence per skills/ui-system/SKILL.md Section 6).
|
|
26
27
|
|
|
27
|
-
|
|
28
|
-
If browser is unavailable, outputs Mermaid code block that renders in GitHub/Obsidian.
|
|
28
|
+
2. Invoke /mos:dashboard --mermaid with the user's original arguments. Run:
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
```bash
|
|
31
|
+
node "${CLAUDE_PLUGIN_ROOT}/scripts/soft-alias-runner.cjs" --from visualize --to "dashboard --mermaid" --remaining-args $ARGUMENTS
|
|
32
|
+
```
|
|
31
33
|
|
|
32
|
-
|
|
33
|
-
Larry: Runs `/mos:visualize room` -- opens browser with interactive Mermaid flowchart
|
|
34
|
+
The runner emits `{redirect, deprecation_note, args, ok}`. Use the redirect to confirm the target, then proceed with /mos:dashboard --mermaid behavior. The user sees ONE deprecation note + the dashboard render (browser open OR Mermaid code block fallback).
|
|
34
35
|
|
|
35
|
-
|
|
36
|
-
Larry: Runs `/mos:visualize graph` -- opens browser with force-directed graph view
|
|
36
|
+
3. Pass through dashboard's output verbatim. The dashboard already renders the room as Cytoscape; the --mermaid flag adds the Mermaid code-block fallback that /mos:visualize used to provide.
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
Larry: Runs `/mos:visualize chain` -- opens flowchart of diagnose -> framework -> apply -> file -> cross-ref -> graph-update
|
|
38
|
+
## Why this is a soft-alias
|
|
40
39
|
|
|
41
|
-
|
|
40
|
+
Cluster 5 audit (2026-05-15) flagged that /mos:visualize and /mos:dashboard both rendered the room's graph. The dashboard already opens the Cytoscape viewer; visualize's Mermaid output is one render mode of the same underlying graph. Folding visualize into /mos:dashboard --mermaid collapses the surface area while preserving every render mode (room structure, knowledge graph, methodology chain, meeting timeline).
|
|
42
41
|
|
|
43
|
-
|
|
44
|
-
|---------|--------|
|
|
45
|
-
| CLI | Browser opens with De Stijl themed HTML + Mermaid syntax to stdout |
|
|
46
|
-
| Desktop | Mermaid code block returned (copy-pasteable, renders in Obsidian/GitHub) |
|
|
47
|
-
| Cowork | Mermaid code block in shared context (renders for all participants) |
|
|
42
|
+
Per D-09 the old command stays as a soft-alias stub for v1.13.x; removal is scheduled v1.14.0. CHANGELOG announces the rename.
|
|
48
43
|
|
|
49
|
-
##
|
|
44
|
+
## Cross-references
|
|
50
45
|
|
|
51
|
-
-
|
|
52
|
-
-
|
|
53
|
-
-
|
|
46
|
+
- `commands/dashboard.md` -- the canonical target with --mermaid as a render flag.
|
|
47
|
+
- `scripts/soft-alias-runner.cjs` -- the shared runner.
|
|
48
|
+
- Canon Part 7 (Reuse Before Build) -- consolidation rationale.
|
package/commands/whitespace.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: whitespace
|
|
3
3
|
description: Detect whitespace gaps in the room's coverage
|
|
4
|
-
|
|
4
|
+
help_jtbd: "Map the whitespace zones in your domain."
|
|
5
|
+
body_shape: "methodology"
|
|
5
6
|
serves_jtbd: ["connect-domains", "find-problem"]
|
|
6
7
|
teaching: "When you suspect a gap exists in the room's coverage of a domain, /mos:whitespace runs HSI scoring across the artifact corpus to find under-explored zones. Best after the room has 20+ entries."
|
|
7
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
package/commands/wiki.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: wiki
|
|
3
3
|
description: Open the Data Room wiki of room sections
|
|
4
|
+
help_jtbd: "Open your room as a localhost wiki, hyperlinks via graph."
|
|
4
5
|
body_shape: D (Document View)
|
|
5
6
|
serves_jtbd: ["audit-room", "prepare-pitch"]
|
|
6
7
|
teaching: "When you want to read the Data Room as linked wiki pages, /mos:wiki opens the wiki view. Section by section, with cross-references rendered as hyperlinks."
|