@mindrian_os/install 1.13.0-beta.13 → 1.13.0-beta.14
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 +16 -11
- package/README.md +74 -572
- package/commands/act.md +1 -0
- package/commands/admin.md +1 -0
- package/commands/analyze-needs.md +1 -0
- package/commands/analyze-systems.md +1 -0
- package/commands/analyze-timing.md +1 -0
- package/commands/auto-explore.md +1 -0
- package/commands/beautiful-question.md +1 -0
- package/commands/brain-derive.md +1 -0
- package/commands/build-knowledge.md +1 -0
- package/commands/build-thesis.md +1 -0
- package/commands/causal.md +1 -0
- package/commands/challenge-assumptions.md +1 -0
- package/commands/compare-ventures.md +1 -0
- package/commands/dashboard.md +1 -0
- package/commands/deep-grade.md +1 -0
- package/commands/diagnose.md +1 -0
- package/commands/diagnostics.md +1 -0
- package/commands/doctor.md +1 -0
- package/commands/dominant-designs.md +1 -0
- package/commands/explain-decision.md +1 -0
- package/commands/explore-domains.md +1 -0
- package/commands/explore-futures.md +1 -0
- package/commands/explore-trends.md +1 -0
- package/commands/export.md +1 -0
- package/commands/feynman-timeline-refresh.md +78 -0
- package/commands/file-meeting.md +1 -0
- package/commands/find-analogies.md +1 -0
- package/commands/find-bottlenecks.md +1 -0
- package/commands/find-connections.md +1 -0
- package/commands/funding.md +1 -0
- package/commands/grade.md +1 -0
- package/commands/graph.md +1 -0
- package/commands/hat-briefing.md +1 -0
- package/commands/heal.md +1 -0
- package/commands/help.md +1 -0
- package/commands/hmi-status.md +1 -0
- package/commands/jtbd.md +1 -0
- package/commands/leadership.md +1 -0
- package/commands/lean-canvas.md +1 -0
- package/commands/macro-trends.md +1 -0
- package/commands/map-unknowns.md +1 -0
- package/commands/memory.md +1 -0
- package/commands/models.md +1 -0
- package/commands/mos-reason.md +1 -0
- package/commands/mullins.md +1 -0
- package/commands/new-project.md +1 -0
- package/commands/onboard.md +1 -0
- package/commands/operator.md +1 -0
- package/commands/opportunities.md +1 -0
- package/commands/organize.md +1 -0
- package/commands/persona.md +1 -0
- package/commands/pipeline.md +1 -0
- package/commands/present.md +1 -0
- package/commands/publish.md +1 -0
- package/commands/query.md +1 -0
- package/commands/radar.md +1 -0
- package/commands/reanalyze.md +1 -0
- package/commands/research.md +1 -0
- package/commands/room.md +1 -0
- package/commands/rooms.md +1 -0
- package/commands/root-cause.md +1 -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 +1 -0
- package/commands/scheduled-tasks.md +1 -0
- package/commands/score-innovation.md +1 -0
- package/commands/scout.md +1 -0
- package/commands/setup.md +1 -0
- package/commands/snapshot.md +1 -0
- package/commands/speakers.md +1 -0
- package/commands/splash.md +1 -0
- package/commands/status.md +1 -0
- package/commands/structure-argument.md +1 -0
- package/commands/suggest-next.md +1 -0
- package/commands/systems-thinking.md +1 -0
- package/commands/think-hats.md +1 -0
- package/commands/update.md +1 -0
- package/commands/user-needs.md +1 -0
- package/commands/validate.md +1 -0
- package/commands/value-proposition.md +1 -0
- package/commands/vault.md +1 -0
- package/commands/visualize.md +1 -0
- package/commands/whitespace.md +1 -0
- package/commands/wiki.md +1 -0
- package/lib/brain/framework-chain-slice.cjs +193 -0
- package/lib/core/feynman/ROOM.md +25 -0
- package/lib/core/feynman/timeline-renderer.cjs +197 -0
- package/lib/core/feynman/timeline-runner.cjs +281 -0
- package/lib/core/navigation/edges.cjs +86 -0
- package/lib/core/navigation/insights.cjs +37 -0
- package/lib/core/navigation/memory-events.cjs +39 -0
- package/lib/core/navigation/packet.cjs +89 -9
- package/lib/core/navigation/projections.cjs +201 -0
- package/lib/core/navigation.cjs +25 -0
- package/lib/mcp/larry-server-instructions.md +1 -1
- package/lib/memory/brain-cypher-chain-slice.test.cjs +368 -0
- package/lib/memory/f-selector-ranker.test.cjs +593 -0
- package/lib/memory/navigation-projections.test.cjs +241 -0
- package/lib/memory/navigation-write-edge.test.cjs +206 -0
- package/lib/memory/packet-chain-hint.test.cjs +407 -0
- package/lib/memory/packet-schema-validation.test.cjs +317 -0
- package/lib/memory/per-command-jtbd-derivation.test.cjs +130 -0
- package/lib/memory/per-command-teaching.test.cjs +110 -0
- package/lib/memory/run-feynman-tests.cjs +36 -0
- package/lib/memory/selector-decisions.test.cjs +417 -0
- package/lib/memory/selector-miss.test.cjs +290 -0
- package/lib/workflow/f-selector-ranker.cjs +420 -0
- package/lib/workflow/selector-decisions.cjs +368 -0
- package/package.json +1 -1
- package/references/design/email-template-standard.md +1 -1
- package/references/user-research/2026-04-05-leah-lawrence-session.md +3 -3
package/commands/act.md
CHANGED
|
@@ -4,6 +4,7 @@ description: Run Larry's best-pick methodology for your room state
|
|
|
4
4
|
argument-hint: '[--chain] [--swarm] [--dry-run]'
|
|
5
5
|
body_shape: E (Action Report)
|
|
6
6
|
serves_jtbd: ["plan-execution"]
|
|
7
|
+
teaching: "When you have analyses on the table but no clear next step, /mos:act picks the best-fit methodology for your current room state and runs it. Saves you from analysis paralysis."
|
|
7
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
8
9
|
kind: meta
|
|
9
10
|
frameworks: []
|
package/commands/admin.md
CHANGED
|
@@ -4,6 +4,7 @@ description: Manage Brain API keys from the admin panel
|
|
|
4
4
|
argument-hint: [subcommand]
|
|
5
5
|
body_shape: A (Mondrian Board)
|
|
6
6
|
serves_jtbd: ["audit-room"]
|
|
7
|
+
teaching: "When you need to inspect or rotate Brain API keys, /mos:admin opens the admin panel. Read-only by default; rotation is gated behind a confirm prompt."
|
|
7
8
|
ui_reference: skills/ui-system/SKILL.md
|
|
8
9
|
visibility: admin
|
|
9
10
|
allowed-tools:
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: analyze-needs
|
|
3
3
|
description: Score customer jobs with importance and satisfaction
|
|
4
4
|
serves_jtbd: ["find-problem"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Jobs to Be Done (JTBD)"]
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: analyze-systems
|
|
3
3
|
description: Decompose a system into layers and leverage points
|
|
4
4
|
serves_jtbd: ["find-bottleneck"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Systems Thinking"]
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: analyze-timing
|
|
3
3
|
description: Place a technology on the S-Curve timing clock
|
|
4
4
|
serves_jtbd: ["understand-market"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["S-Curve Analysis"]
|
package/commands/auto-explore.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
description: "Manually trigger auto-explore on a specific file (Desktop fallback when PostToolUse hook does not fire per RESEARCH 4.8)"
|
|
3
3
|
argument-hint: "<file_path>"
|
|
4
4
|
serves_jtbd: ["find-problem", "understand-market", "explore"]
|
|
5
|
+
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."
|
|
5
6
|
allowed-tools:
|
|
6
7
|
- "Bash"
|
|
7
8
|
- "Read"
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: beautiful-question
|
|
3
3
|
description: Reframe a challenge as Why / What-if / How
|
|
4
4
|
serves_jtbd: ["find-problem", "explore"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Beautiful Question Framework"]
|
package/commands/brain-derive.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
description: Derive BRAIN.md for section(s) now
|
|
3
3
|
argument-hint: "[section] [--all] [--cross-room] [--dry-run]"
|
|
4
4
|
serves_jtbd: ["audit-room"]
|
|
5
|
+
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."
|
|
5
6
|
disable-model-invocation: false
|
|
6
7
|
allowed-tools: Bash(node *)
|
|
7
8
|
---
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: build-knowledge
|
|
3
3
|
description: Climb Ackoff's DIKW pyramid across the room
|
|
4
4
|
serves_jtbd: ["explore"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Ackoff Pyramid"]
|
package/commands/build-thesis.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: build-thesis
|
|
3
3
|
description: Run the Ten-Questions investment thesis gate
|
|
4
4
|
serves_jtbd: ["decide-pursue", "prepare-pitch"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["PWS Value Proposition"]
|
package/commands/causal.md
CHANGED
|
@@ -3,6 +3,7 @@ name: causal
|
|
|
3
3
|
description: Trace causal edges in the room's graph
|
|
4
4
|
argument-hint: [extract|trace|predict]
|
|
5
5
|
serves_jtbd: ["find-problem", "find-bottleneck"]
|
|
6
|
+
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."
|
|
6
7
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
7
8
|
kind: methodology
|
|
8
9
|
frameworks: ["Root Cause Analysis"]
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: challenge-assumptions
|
|
3
3
|
description: Stress-test assumptions with Devil's Advocate
|
|
4
4
|
serves_jtbd: ["validate-idea", "surface-contradiction"]
|
|
5
|
+
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."
|
|
5
6
|
allowed-tools:
|
|
6
7
|
- Read
|
|
7
8
|
- Write
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: compare-ventures
|
|
3
3
|
description: Compare against ventures that tried this before
|
|
4
4
|
serves_jtbd: ["compare-options"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["PWS Triple Validation Compass"]
|
package/commands/dashboard.md
CHANGED
|
@@ -3,6 +3,7 @@ name: dashboard
|
|
|
3
3
|
description: Open the Data Room dashboard (live or snapshot)
|
|
4
4
|
body_shape: raw
|
|
5
5
|
serves_jtbd: ["audit-room", "prepare-pitch"]
|
|
6
|
+
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."
|
|
6
7
|
ui_reference: skills/ui-system/SKILL.md
|
|
7
8
|
argument-hint: [live|stop|open]
|
|
8
9
|
allowed-tools:
|
package/commands/deep-grade.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: deep-grade
|
|
3
3
|
description: Grade a venture against 100+ calibrated projects
|
|
4
4
|
serves_jtbd: ["audit-room", "compare-options"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["PWS Triple Validation Compass"]
|
package/commands/diagnose.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: diagnose
|
|
3
3
|
description: Classify problem type against the PWS matrix
|
|
4
4
|
serves_jtbd: ["decide-pursue"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Problem Definition Transformation Framework"]
|
package/commands/diagnostics.md
CHANGED
|
@@ -3,6 +3,7 @@ name: diagnostics
|
|
|
3
3
|
description: Run Wave-1 algorithmic fingerprint on the room
|
|
4
4
|
body_shape: E
|
|
5
5
|
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."
|
|
6
7
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
7
8
|
kind: methodology
|
|
8
9
|
frameworks: ["HSI Semantic Surprise Analysis Assistant"]
|
package/commands/doctor.md
CHANGED
|
@@ -5,6 +5,7 @@ argument-hint: "[--fix] [--cascade-rooms] [--verify-surface] [--room-md] [--ui-c
|
|
|
5
5
|
body_shape: E (Action Report)
|
|
6
6
|
body_shape_detail: per-class status rows with [before → after] pattern, summary totals, F.1 Next Move selector when drift detected without --fix
|
|
7
7
|
serves_jtbd: ["audit-room"]
|
|
8
|
+
teaching: "When something feels off with the install, /mos:doctor diagnoses install-cache drift, ROOM.md gaps, statusline visibility, and UI compliance. Optionally repairs with --fix."
|
|
8
9
|
allowed-tools:
|
|
9
10
|
- Bash
|
|
10
11
|
- Read
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: dominant-designs
|
|
3
3
|
description: Spot dominant designs with Utterback-Abernathy
|
|
4
4
|
serves_jtbd: ["understand-market"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Dominant Design"]
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
description: Show Navigation Engine decision trace for last turn
|
|
3
3
|
argument-hint: "[--last N] [--session SESSIONID]"
|
|
4
4
|
serves_jtbd: ["audit-room"]
|
|
5
|
+
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."
|
|
5
6
|
disable-model-invocation: true
|
|
6
7
|
allowed-tools: Bash(node *)
|
|
7
8
|
---
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: explore-domains
|
|
3
3
|
description: Map domains through IKA + Feynman decomposition
|
|
4
4
|
serves_jtbd: ["find-problem", "understand-market", "explore"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Domain Selection"]
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: explore-futures
|
|
3
3
|
description: Synthesize TTA + Scenario + S-Curve futures
|
|
4
4
|
serves_jtbd: ["compare-options", "explore"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Scenario Planning"]
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: explore-trends
|
|
3
3
|
description: Push trends to extremes to surface future problems
|
|
4
4
|
serves_jtbd: ["understand-market", "explore"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["S-Curve Analysis"]
|
package/commands/export.md
CHANGED
|
@@ -5,6 +5,7 @@ argument-hint: [hub|thesis|summary|report]
|
|
|
5
5
|
disable-model-invocation: true
|
|
6
6
|
body_shape: E (Action Report)
|
|
7
7
|
serves_jtbd: ["prepare-pitch"]
|
|
8
|
+
teaching: "When you need to share a Data Room view with someone outside the room, /mos:export packages it as a De Stijl HTML artifact. Investor-ready, no install required on their side."
|
|
8
9
|
ui_reference: skills/ui-system/SKILL.md
|
|
9
10
|
allowed-tools:
|
|
10
11
|
- Bash
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Refresh FEYNMAN.md ## Timeline (auto) section for one or all room sections
|
|
3
|
+
argument-hint: "[--all | --section <slug>]"
|
|
4
|
+
serves_jtbd: ["validate-idea", "audit-room"]
|
|
5
|
+
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."
|
|
6
|
+
disable-model-invocation: false
|
|
7
|
+
allowed-tools: Bash(node *)
|
|
8
|
+
kind: utility
|
|
9
|
+
frameworks: []
|
|
10
|
+
produces: "room/*/FEYNMAN.md"
|
|
11
|
+
inputs: []
|
|
12
|
+
autonomous_safe: true
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# /mos:feynman-timeline-refresh
|
|
16
|
+
|
|
17
|
+
Force-refresh the `## Timeline (auto)` sentinel-bounded section in each section's `FEYNMAN.md`. The renderer reads from `room.db` via the Phase 109 `navigation.cjs` chokepoint; the runner writes back atomically with the human-authored body byte-preserved. This is the manual knob the user reaches for when the automatic session-start cascade is not enough -- explicit redraw, ignore the watermark.
|
|
18
|
+
|
|
19
|
+
## Modes
|
|
20
|
+
|
|
21
|
+
- `/mos:feynman-timeline-refresh` -- refresh every section in the active room (default; equivalent to `--all`).
|
|
22
|
+
- `/mos:feynman-timeline-refresh --all` -- refresh every section in the active room.
|
|
23
|
+
- `/mos:feynman-timeline-refresh --section <slug>` -- refresh one section.
|
|
24
|
+
|
|
25
|
+
## Output
|
|
26
|
+
|
|
27
|
+
F.0 Action Report (Canon Part 3 UI Ruling System; same shape as `/mos:brain-derive`'s Shape E). Three summary rows + a PER SECTION breakdown + a NEXT action footer:
|
|
28
|
+
|
|
29
|
+
- Sections refreshed: N
|
|
30
|
+
- Sections skipped (watermark fresh): S
|
|
31
|
+
- Sections failed: F
|
|
32
|
+
|
|
33
|
+
When more than 3 target sections, per-section progress streams to stderr as each completes: `[1/7] market-analysis: refreshed`. The final report renders to stdout at the end.
|
|
34
|
+
|
|
35
|
+
## Graceful degradation
|
|
36
|
+
|
|
37
|
+
- **No active room**: exit 1 with "Set one with /mos:rooms switch <slug>".
|
|
38
|
+
- **Invalid section slug**: exit 1 with a pointer to the active room and a hint to list sections.
|
|
39
|
+
- **room.db missing**: single-line "room.db not found for active room; the runner needs the Phase 109 SQL spine" message, exit 0 (soft-fail; the timeline section is enrichment, not a gate).
|
|
40
|
+
- **Runner exception per section**: the failure is logged via `feynman_timeline_refresh_failed` memory_event; the per-section row in the report names the failure; other sections still process.
|
|
41
|
+
|
|
42
|
+
## Canon references
|
|
43
|
+
|
|
44
|
+
- **Canon Part 3 (Tri-Context Decision Gate)**: output uses the F.0 / Shape E Action Report so the user sees a LOCAL snapshot of what was refreshed.
|
|
45
|
+
- **Canon Part 7 (Reuse Before Build)**: the command wraps `lib/core/feynman/timeline-runner.cjs` (Plan 124-02). No new render logic at the command layer.
|
|
46
|
+
- **Canon Part 8 (Graph Boundary)**: zero net new Brain surface. The renderer reads ONLY `room.db` via `navigation.cjs`. The runner writes ONLY FEYNMAN.md inside the sentinels.
|
|
47
|
+
- **Canon Part 9 (Memory Locality)**: this is the Larry-explains face of `memory_event` -- the rendered timeline section IS the human-readable view of the SQL log.
|
|
48
|
+
|
|
49
|
+
## Invocation
|
|
50
|
+
|
|
51
|
+
Run the dispatcher via Bash:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
node ${CLAUDE_PLUGIN_ROOT}/scripts/feynman-timeline-refresh-command.cjs $ARGUMENTS
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Examples
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
/mos:feynman-timeline-refresh
|
|
61
|
+
/mos:feynman-timeline-refresh --all
|
|
62
|
+
/mos:feynman-timeline-refresh --section market-analysis
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Exit codes
|
|
66
|
+
|
|
67
|
+
| Exit | Meaning |
|
|
68
|
+
| --- | --- |
|
|
69
|
+
| 0 | Success (including soft-fail paths: room.db missing, every section watermark-skipped) |
|
|
70
|
+
| 1 | Invocation error: no active room, invalid section slug, malformed args |
|
|
71
|
+
|
|
72
|
+
## Cross-surface adaptation
|
|
73
|
+
|
|
74
|
+
- **CLI**: full power. Slash command resolves via Claude Code's plugin hook substrate and runs the dispatcher through the Bash tool. F.0 report renders in the terminal.
|
|
75
|
+
- **Desktop**: the same slash command runs when the plugin is connected. Larry may narrate the result conversationally; the underlying dispatcher is identical.
|
|
76
|
+
- **Cowork**: same as CLI. Team members see the regenerated FEYNMAN.md `## Timeline (auto)` block through the shared `00_Context/` snapshot on their next session-start.
|
|
77
|
+
|
|
78
|
+
No surface-specific code exists anywhere in the dispatcher.
|
package/commands/file-meeting.md
CHANGED
|
@@ -3,6 +3,7 @@ name: file-meeting
|
|
|
3
3
|
description: File a meeting transcript into the Data Room
|
|
4
4
|
argument-hint: [--latest|--paste|<file>]
|
|
5
5
|
serves_jtbd: ["file-meeting"]
|
|
6
|
+
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."
|
|
6
7
|
allowed-tools:
|
|
7
8
|
- Read
|
|
8
9
|
- Write
|
|
@@ -3,6 +3,7 @@ name: find-analogies
|
|
|
3
3
|
description: Find cross-domain analogies with SAPPhIRE + TRIZ
|
|
4
4
|
body_shape: D (Comparison Matrix)
|
|
5
5
|
serves_jtbd: ["connect-domains"]
|
|
6
|
+
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."
|
|
6
7
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
7
8
|
kind: methodology
|
|
8
9
|
frameworks: ["Four Lenses of Innovation"]
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: find-bottlenecks
|
|
3
3
|
description: Find lagging components via Reverse Salient
|
|
4
4
|
serves_jtbd: ["find-bottleneck"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Reverse Salient Analysis"]
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: find-connections
|
|
3
3
|
description: Find cross-domain patterns that touch your work
|
|
4
4
|
serves_jtbd: ["connect-domains"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Usher's Model of Cumulative Synthesis"]
|
package/commands/funding.md
CHANGED
|
@@ -4,6 +4,7 @@ description: Track grant opportunities through their lifecycle
|
|
|
4
4
|
argument-hint: [list|add|update]
|
|
5
5
|
body_shape: B (Semantic Tree)
|
|
6
6
|
serves_jtbd: ["prepare-pitch", "decide-pursue"]
|
|
7
|
+
teaching: "When you need to track grants and investors as a real pipeline, /mos:funding manages the lifecycle from spotted to applied to decided. Funding is a process, not a one-shot event."
|
|
7
8
|
allowed-tools:
|
|
8
9
|
- Read
|
|
9
10
|
- Write
|
package/commands/grade.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: grade
|
|
3
3
|
description: Grade problem-discovery quality (6 components)
|
|
4
4
|
serves_jtbd: ["audit-room"]
|
|
5
|
+
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."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["PWS Triple Validation Compass"]
|
package/commands/graph.md
CHANGED
|
@@ -4,6 +4,7 @@ description: Explore the knowledge graph by asking questions
|
|
|
4
4
|
body_shape: C (Room Card)
|
|
5
5
|
body_shape_detail: Query results as cards, graph stats as header
|
|
6
6
|
serves_jtbd: ["audit-room", "explore"]
|
|
7
|
+
teaching: "When you want to ask the knowledge graph a question without writing Cypher, /mos:graph translates plain English into the right traversal. Larry walks the edges so you do not have to."
|
|
7
8
|
ui_reference: skills/ui-system/SKILL.md
|
|
8
9
|
allowed-tools:
|
|
9
10
|
- Bash
|
package/commands/hat-briefing.md
CHANGED
|
@@ -4,6 +4,7 @@ description: Consolidate Six Hats briefings from hat memory
|
|
|
4
4
|
body_shape: C (Dashboard Grid)
|
|
5
5
|
body_shape_detail: 6-panel hat grid + synthesis strip
|
|
6
6
|
serves_jtbd: ["prepare-pitch"]
|
|
7
|
+
teaching: "When you have run several Six Hats sessions and need them consolidated, /mos:hat-briefing pulls the hat memory into one briefing. Best right before a stakeholder review."
|
|
7
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
8
9
|
kind: methodology
|
|
9
10
|
frameworks: ["Six Thinking Hats"]
|
package/commands/heal.md
CHANGED
|
@@ -5,6 +5,7 @@ argument-hint: "[room-dir]"
|
|
|
5
5
|
body_shape: E (Action Report)
|
|
6
6
|
body_shape_detail: 10-step heal table mirrors recipe provenance section
|
|
7
7
|
serves_jtbd: ["audit-room"]
|
|
8
|
+
teaching: "When a plugin upgrade leaves the room with structural drift, /mos:heal repairs the missing ROOM.md, broken backlinks, and stale section state. Use after every major version bump."
|
|
8
9
|
ui_reference: skills/ui-system/SKILL.md
|
|
9
10
|
allowed-tools:
|
|
10
11
|
- Bash
|
package/commands/help.md
CHANGED
|
@@ -5,6 +5,7 @@ argument-hint: [command-name]
|
|
|
5
5
|
body_shape: B (Semantic Tree)
|
|
6
6
|
body_shape_detail: -- (inline, no zones)
|
|
7
7
|
serves_jtbd: ["explore"]
|
|
8
|
+
teaching: "When you forget which /mos: command does what, /mos:help groups them by flow in tldr style. Start here when the surface feels overwhelming."
|
|
8
9
|
ui_reference: skills/ui-system/SKILL.md
|
|
9
10
|
allowed-tools:
|
|
10
11
|
- Read
|
package/commands/hmi-status.md
CHANGED
|
@@ -5,6 +5,7 @@ argument-hint: "[--json]"
|
|
|
5
5
|
body_shape: E (Action Report)
|
|
6
6
|
body_shape_detail: 4-zone Shape E rendering of the side-channel at <roomDir>/.mindrian/last-hmi-poll.json (status + counts + top-5 priorities + operator-shape mismatches); --json emits raw envelope; graceful Shape E when poll absent or tier 0
|
|
7
7
|
serves_jtbd: ["audit-room"]
|
|
8
|
+
teaching: "When you need to know how well the UI is honoring the ruling system, /mos:hmi-status shows the latest compliance poll with operator-aware drift summaries. Read-only; fix via /mos:doctor."
|
|
8
9
|
locks_operator: null
|
|
9
10
|
min_tier: 0
|
|
10
11
|
concurrency: sequential
|
package/commands/jtbd.md
CHANGED
|
@@ -5,6 +5,7 @@ argument-hint: "[set <jtbd> | clear | list | history] [--json]"
|
|
|
5
5
|
body_shape: E (Action Report)
|
|
6
6
|
body_shape_detail: current state + last 5 history (default), 13 entries (list), full history (history), Shape F.1 picker (set with no arg), Shape E confirmation (clear, set <jtbd>)
|
|
7
7
|
serves_jtbd: ["audit-room"]
|
|
8
|
+
teaching: "When you need to see or set the active job-to-be-done for this room, /mos:jtbd shows the per-room signal that tells Larry what kind of work you are doing right now."
|
|
8
9
|
locks_operator: null
|
|
9
10
|
min_tier: 0
|
|
10
11
|
concurrency: sequential
|
package/commands/leadership.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: leadership
|
|
3
3
|
description: Diagnose the leadership shape your team needs
|
|
4
4
|
serves_jtbd: ["explore"]
|
|
5
|
+
teaching: "When the team feels wrong-shaped for the stage, /mos:leadership diagnoses which leadership pattern you actually need. Different stages of a venture need different leadership shapes."
|
|
5
6
|
allowed-tools:
|
|
6
7
|
- Read
|
|
7
8
|
- Write
|
package/commands/lean-canvas.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: lean-canvas
|
|
3
3
|
description: Fill the Lean Canvas in one page (9 boxes)
|
|
4
4
|
serves_jtbd: ["prepare-pitch", "validate-idea"]
|
|
5
|
+
teaching: "When you need the whole business model on one page, /mos:lean-canvas fills the nine boxes from your room data. The fastest way to get a defensible canvas in front of someone."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Lean Canvas"]
|
package/commands/macro-trends.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: macro-trends
|
|
3
3
|
description: Map macro changes with PEST across a domain
|
|
4
4
|
serves_jtbd: ["understand-market"]
|
|
5
|
+
teaching: "When you need to map the forces shaping a domain, /mos:macro-trends runs PEST across Political, Economic, Social, and Technological dimensions. The wide-angle lens before you zoom in."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["PEST Analysis"]
|
package/commands/map-unknowns.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: map-unknowns
|
|
3
3
|
description: Map known, unknown, and unknowable (Rumsfeld)
|
|
4
4
|
serves_jtbd: ["validate-idea"]
|
|
5
|
+
teaching: "When you cannot tell what you do not know, /mos:map-unknowns plots known, unknown, and unknowable in a Rumsfeld matrix. The unknowable column is usually where the risk lives."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Knowns and Unknowns Matrix Framework"]
|
package/commands/memory.md
CHANGED
|
@@ -5,6 +5,7 @@ argument-hint: "[query <jtbd> | cross-room | resume | park <jtbd> | complete <jt
|
|
|
5
5
|
body_shape: E (Action Report)
|
|
6
6
|
body_shape_detail: 4-zone Shape E for default + park + complete + opt-out; Shape G (Comparison Matrix) for query when Phase 101 ships (Shape E fallback otherwise); Shape G Mode A or Shape E Mode B for cross-room depending on Brain availability; Shape F.6 (or F.1 fallback) for resume picker.
|
|
7
7
|
serves_jtbd: ["audit-room"]
|
|
8
|
+
teaching: "When you need to inspect what the room remembers, /mos:memory shows the three layers: within-session, across-session, and cross-room. Memory locality is a Canon Part 9 invariant."
|
|
8
9
|
locks_operator: null
|
|
9
10
|
min_tier: 0
|
|
10
11
|
concurrency: sequential
|
package/commands/models.md
CHANGED
|
@@ -4,6 +4,7 @@ description: View or switch model-routing profiles
|
|
|
4
4
|
argument-hint: [list|set|show]
|
|
5
5
|
body_shape: C (Information Card)
|
|
6
6
|
serves_jtbd: ["compare-options"]
|
|
7
|
+
teaching: "When you want to see or switch which model routes which kind of work, /mos:models opens the routing profile. Different tasks deserve different models."
|
|
7
8
|
ui_reference: skills/ui-system/SKILL.md
|
|
8
9
|
allowed-tools:
|
|
9
10
|
- Read
|
package/commands/mos-reason.md
CHANGED
|
@@ -4,6 +4,7 @@ command: mos:reason
|
|
|
4
4
|
description: Generate Feynman-MINTO reasoning for a section
|
|
5
5
|
usage: /mos:reason [--section <name>] [--regenerate-all]
|
|
6
6
|
serves_jtbd: ["explore"]
|
|
7
|
+
teaching: "When a section needs Feynman-MINTO reasoning generated against its artifacts, /mos:mos-reason produces the pyramid: governing thought down to grounded support. Larry's structured thinking surface."
|
|
7
8
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
8
9
|
kind: methodology
|
|
9
10
|
frameworks: ["The Pyramid Principle"]
|
package/commands/mullins.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: mullins
|
|
3
3
|
description: Run Mullins 7-Domains on a business opportunity
|
|
4
4
|
serves_jtbd: ["understand-market"]
|
|
5
|
+
teaching: "When you need the most rigorous opportunity screen ever published, /mos:mullins runs the 7-Domains Model from Mullins' New Business Road Test. Best before you commit real resources."
|
|
5
6
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
6
7
|
kind: methodology
|
|
7
8
|
frameworks: ["Mullins Model"]
|
package/commands/new-project.md
CHANGED
|
@@ -3,6 +3,7 @@ name: new-project
|
|
|
3
3
|
description: Start a new venture project and create its room
|
|
4
4
|
argument-hint: [name]
|
|
5
5
|
serves_jtbd: ["explore"]
|
|
6
|
+
teaching: "When you are starting a new venture, /mos:new-project creates the room scaffolding and registers it in the room registry. The first move of every Mindrian journey."
|
|
6
7
|
allowed-tools:
|
|
7
8
|
- Read
|
|
8
9
|
- Write
|
package/commands/onboard.md
CHANGED
|
@@ -4,6 +4,7 @@ description: Walk through MindrianOS and build your first room
|
|
|
4
4
|
body_shape: B (Semantic Tree)
|
|
5
5
|
body_shape_detail: Steps as conversational flow, context building as nested nodes
|
|
6
6
|
serves_jtbd: ["explore"]
|
|
7
|
+
teaching: "When you just installed MindrianOS, /mos:onboard walks you through the system and builds your first room. Designed so a stranger can self-activate without Larry holding their hand."
|
|
7
8
|
ui_reference: skills/ui-system/SKILL.md
|
|
8
9
|
allowed-tools:
|
|
9
10
|
- Read
|
package/commands/operator.md
CHANGED
|
@@ -5,6 +5,7 @@ argument-hint: "[history] [set <op>] [reset] [--json]"
|
|
|
5
5
|
body_shape: E (Action Report)
|
|
6
6
|
body_shape_detail: current state + last 5 history (default), full history (history subcommand), Shape F.1 picker (set subcommand), Shape F.4 confirmation (reset subcommand)
|
|
7
7
|
serves_jtbd: ["explore"]
|
|
8
|
+
teaching: "When you want to see or set how Larry should render right now, /mos:operator shows the conversation state machine: JUST_TALK, EXPLORE_CAPTURE, BUILD_ROOM, METHODOLOGY, or DECISION_GATE."
|
|
8
9
|
allowed-tools:
|
|
9
10
|
- Bash
|
|
10
11
|
- Read
|
|
@@ -4,6 +4,7 @@ description: Discover and manage grants in the Opportunity Bank
|
|
|
4
4
|
argument-hint: [list|add|scan]
|
|
5
5
|
body_shape: E (Action Report)
|
|
6
6
|
serves_jtbd: ["explore"]
|
|
7
|
+
teaching: "When you need to manage grants as a live pipeline rather than a list, /mos:opportunities surfaces the Opportunity Bank with HSI scores and decision states. Funding deserves the same rigor as product."
|
|
7
8
|
allowed-tools:
|
|
8
9
|
- Read
|
|
9
10
|
- Write
|
package/commands/organize.md
CHANGED
|
@@ -4,6 +4,7 @@ description: Navigate room hierarchy with graph-aware tree
|
|
|
4
4
|
argument-hint: [tree|propose|compound]
|
|
5
5
|
body_shape: B (Semantic Tree)
|
|
6
6
|
serves_jtbd: ["audit-room"]
|
|
7
|
+
teaching: "When the room hierarchy has grown messy, /mos:organize navigates it with a graph-aware tree that respects sub-room boundaries. The structural overview, not the content view."
|
|
7
8
|
ui_reference: skills/ui-system/SKILL.md
|
|
8
9
|
allowed-tools:
|
|
9
10
|
- Read
|
package/commands/persona.md
CHANGED
|
@@ -3,6 +3,7 @@ name: persona
|
|
|
3
3
|
description: Generate Six-Hats lenses from room data
|
|
4
4
|
body_shape: C (Room Card)
|
|
5
5
|
serves_jtbd: ["prepare-pitch"]
|
|
6
|
+
teaching: "When you need fresh perspectives on the room, /mos:persona generates Six-Hats lenses from your room data. Each persona argues from a different stance; you decide what holds."
|
|
6
7
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
7
8
|
kind: methodology
|
|
8
9
|
frameworks: ["Six Thinking Hats"]
|
package/commands/pipeline.md
CHANGED
|
@@ -3,6 +3,7 @@ name: pipeline
|
|
|
3
3
|
description: Chain a multi-step methodology pipeline
|
|
4
4
|
argument-hint: '[pipeline-name] [--from-problem-type <x>] [--from-framework <x>]'
|
|
5
5
|
serves_jtbd: ["plan-execution"]
|
|
6
|
+
teaching: "When you want several methodologies chained instead of run one-by-one, /mos:pipeline executes a multi-step pipeline with the room as the connecting tissue. Week 7 pattern."
|
|
6
7
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
7
8
|
kind: meta
|
|
8
9
|
frameworks: []
|
package/commands/present.md
CHANGED
|
@@ -4,6 +4,7 @@ description: Generate the 6-view presentation and open it
|
|
|
4
4
|
body_shape: E (Action Report)
|
|
5
5
|
body_shape_detail: Generation results as action items, 6 views listed as outputs
|
|
6
6
|
serves_jtbd: ["prepare-pitch"]
|
|
7
|
+
teaching: "When you need to walk someone through the room visually, /mos:present generates the 6-view presentation and opens it. Dashboard, Wiki, Deck, Insights, Diagrams, Graph in one artifact."
|
|
7
8
|
ui_reference: skills/ui-system/SKILL.md
|
|
8
9
|
allowed-tools:
|
|
9
10
|
- Bash
|
package/commands/publish.md
CHANGED
|
@@ -3,6 +3,7 @@ name: publish
|
|
|
3
3
|
description: Publish the Data Room presentation to Vercel
|
|
4
4
|
argument-hint: [--all|<view>]
|
|
5
5
|
serves_jtbd: ["prepare-pitch"]
|
|
6
|
+
teaching: "When the Data Room is ready to share publicly, /mos:publish deploys the presentation to Vercel with a one-click link. From local artifact to shareable URL in one move."
|
|
6
7
|
disable-model-invocation: true
|
|
7
8
|
allowed-tools:
|
|
8
9
|
- Read
|
package/commands/query.md
CHANGED
|
@@ -3,6 +3,7 @@ name: query
|
|
|
3
3
|
description: Query the knowledge graph in natural language
|
|
4
4
|
argument-hint: [question]
|
|
5
5
|
serves_jtbd: ["audit-room", "explore"]
|
|
6
|
+
teaching: "When you need to ask the knowledge graph something specific, /mos:query translates natural language into the right traversal and returns the answer with its graph path."
|
|
6
7
|
allowed-tools:
|
|
7
8
|
- Read
|
|
8
9
|
- Bash
|
package/commands/radar.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: radar
|
|
3
3
|
description: Track Claude capabilities that may help MindrianOS
|
|
4
4
|
serves_jtbd: ["understand-market"]
|
|
5
|
+
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."
|
|
5
6
|
allowed-tools:
|
|
6
7
|
- Read
|
|
7
8
|
- Write
|
package/commands/reanalyze.md
CHANGED
|
@@ -4,6 +4,7 @@ description: Re-analyze filed meetings for new patterns
|
|
|
4
4
|
body_shape: E (Action Report)
|
|
5
5
|
body_shape_detail: Before/after delta showing new insights discovered
|
|
6
6
|
serves_jtbd: ["file-meeting"]
|
|
7
|
+
teaching: "When a meeting was filed earlier and the room has since grown, /mos:reanalyze re-runs the cascade pattern detection. New context can change what an old meeting meant."
|
|
7
8
|
ui_reference: skills/ui-system/SKILL.md
|
|
8
9
|
allowed-tools:
|
|
9
10
|
- Bash
|
package/commands/research.md
CHANGED
|
@@ -3,6 +3,7 @@ name: research
|
|
|
3
3
|
description: Research the web and cross-reference with Brain
|
|
4
4
|
argument-hint: [topic]
|
|
5
5
|
serves_jtbd: ["explore", "understand-market"]
|
|
6
|
+
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."
|
|
6
7
|
# --- Phase 122 workflow-layer frontmatter ---
|
|
7
8
|
kind: methodology
|
|
8
9
|
frameworks: ["Hypothesis-Driven Problem Solving"]
|
package/commands/room.md
CHANGED
|
@@ -5,6 +5,7 @@ argument-hint: [overview|<section>]
|
|
|
5
5
|
body_shape_overview: B (Semantic Tree)
|
|
6
6
|
body_shape_section: C (Room Card)
|
|
7
7
|
serves_jtbd: ["audit-room"]
|
|
8
|
+
teaching: "When you need to view or launch the active Data Room, /mos:room opens the room view with its current state. The default entry point for room navigation."
|
|
8
9
|
ui_reference: skills/ui-system/SKILL.md
|
|
9
10
|
allowed-tools:
|
|
10
11
|
- Read
|