@mindrian_os/install 1.13.0-beta.11
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 +21 -0
- package/.mcp.json +9 -0
- package/CHANGELOG.md +3333 -0
- package/LICENSE +123 -0
- package/README.md +673 -0
- package/agents/brain-query.md +80 -0
- package/agents/framework-runner.md +237 -0
- package/agents/grading.md +188 -0
- package/agents/investor.md +128 -0
- package/agents/larry-extended.md +135 -0
- package/agents/opportunity-scanner.md +91 -0
- package/agents/persona-analyst.md +132 -0
- package/agents/research.md +89 -0
- package/agents/reverse-salient-agent.md +27 -0
- package/bin/cli.js +142 -0
- package/bin/mindrian-mcp-server.cjs +182 -0
- package/bin/mindrian-tools.cjs +765 -0
- package/commands/act.md +439 -0
- package/commands/admin.md +404 -0
- package/commands/analyze-needs.md +42 -0
- package/commands/analyze-systems.md +39 -0
- package/commands/analyze-timing.md +42 -0
- package/commands/auto-explore.md +64 -0
- package/commands/beautiful-question.md +40 -0
- package/commands/brain-derive.md +78 -0
- package/commands/build-knowledge.md +42 -0
- package/commands/build-thesis.md +46 -0
- package/commands/causal.md +234 -0
- package/commands/challenge-assumptions.md +33 -0
- package/commands/compare-ventures.md +83 -0
- package/commands/dashboard.md +110 -0
- package/commands/deep-grade.md +82 -0
- package/commands/diagnose.md +58 -0
- package/commands/diagnostics.md +151 -0
- package/commands/doctor.md +151 -0
- package/commands/dominant-designs.md +40 -0
- package/commands/explain-decision.md +87 -0
- package/commands/explore-domains.md +42 -0
- package/commands/explore-futures.md +40 -0
- package/commands/explore-trends.md +42 -0
- package/commands/export.md +103 -0
- package/commands/file-meeting.md +724 -0
- package/commands/find-analogies.md +188 -0
- package/commands/find-bottlenecks.md +62 -0
- package/commands/find-connections.md +76 -0
- package/commands/funding.md +81 -0
- package/commands/grade.md +203 -0
- package/commands/graph.md +128 -0
- package/commands/hat-briefing.md +125 -0
- package/commands/heal.md +196 -0
- package/commands/help.md +399 -0
- package/commands/hmi-status.md +172 -0
- package/commands/jtbd.md +241 -0
- package/commands/leadership.md +73 -0
- package/commands/lean-canvas.md +40 -0
- package/commands/macro-trends.md +40 -0
- package/commands/map-unknowns.md +40 -0
- package/commands/memory.md +173 -0
- package/commands/models.md +175 -0
- package/commands/mos-reason.md +285 -0
- package/commands/mullins.md +120 -0
- package/commands/new-project.md +481 -0
- package/commands/onboard.md +434 -0
- package/commands/operator.md +149 -0
- package/commands/opportunities.md +144 -0
- package/commands/organize.md +497 -0
- package/commands/persona.md +198 -0
- package/commands/pipeline.md +112 -0
- package/commands/present.md +91 -0
- package/commands/publish.md +201 -0
- package/commands/query.md +124 -0
- package/commands/radar.md +72 -0
- package/commands/reanalyze.md +91 -0
- package/commands/research.md +196 -0
- package/commands/room.md +352 -0
- package/commands/rooms.md +598 -0
- package/commands/root-cause.md +40 -0
- package/commands/rs-experts.md +85 -0
- package/commands/rs-explain.md +100 -0
- package/commands/rs-fetch.md +94 -0
- package/commands/rs-thesis.md +85 -0
- package/commands/scenario-plan.md +40 -0
- package/commands/scheduled-tasks.md +285 -0
- package/commands/score-innovation.md +43 -0
- package/commands/scout.md +239 -0
- package/commands/setup.md +618 -0
- package/commands/snapshot.md +147 -0
- package/commands/speakers.md +84 -0
- package/commands/splash.md +28 -0
- package/commands/status.md +75 -0
- package/commands/structure-argument.md +42 -0
- package/commands/suggest-next.md +80 -0
- package/commands/systems-thinking.md +40 -0
- package/commands/think-hats.md +42 -0
- package/commands/update.md +181 -0
- package/commands/user-needs.md +40 -0
- package/commands/validate.md +40 -0
- package/commands/value-proposition.md +61 -0
- package/commands/vault.md +180 -0
- package/commands/visualize.md +52 -0
- package/commands/whitespace.md +507 -0
- package/commands/wiki.md +69 -0
- package/hooks/hooks.json +381 -0
- package/hooks/run-hook.cmd +64 -0
- package/lib/__init__.py +0 -0
- package/lib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/lib/agents/auto-explore-agent.cjs +1043 -0
- package/lib/agents/reverse-salient-agent.cjs +679 -0
- package/lib/agents/tension-hook-agent.cjs +544 -0
- package/lib/brain/ROOM.md +44 -0
- package/lib/brain/chain-recommender.cjs +301 -0
- package/lib/chat/chat-context.js +185 -0
- package/lib/chat/chat-panel.js +721 -0
- package/lib/chat/fabric-chat.cjs +288 -0
- package/lib/chat/generative-tools.js +219 -0
- package/lib/conversation/ROOM.md +39 -0
- package/lib/conversation/classifier-rules.json +38 -0
- package/lib/conversation/classifier.cjs +264 -0
- package/lib/conversation/operator.cjs +287 -0
- package/lib/copy/115-spec-strings.cjs +55 -0
- package/lib/core/__init__.py +0 -0
- package/lib/core/__nav-stub.cjs +14 -0
- package/lib/core/__pycache__/__init__.cpython-312.pyc +0 -0
- package/lib/core/__pycache__/rs-math.cpython-312.pyc +0 -0
- package/lib/core/__pycache__/rs_cache.cpython-312.pyc +0 -0
- package/lib/core/__pycache__/rs_corpus.cpython-312.pyc +0 -0
- package/lib/core/__pycache__/rs_hybrid.cpython-312.pyc +0 -0
- package/lib/core/__pycache__/rs_math.cpython-312.pyc +0 -0
- package/lib/core/__pycache__/rs_rooms.cpython-312.pyc +0 -0
- package/lib/core/artifact-id.cjs +148 -0
- package/lib/core/asset-ops.cjs +151 -0
- package/lib/core/auto-commit-throttle.cjs +129 -0
- package/lib/core/bearer-token.cjs +199 -0
- package/lib/core/brain-client.cjs +865 -0
- package/lib/core/brain-derivation-prompts.cjs +326 -0
- package/lib/core/brain-derivation-queue.cjs +431 -0
- package/lib/core/brain-derivation.cjs +580 -0
- package/lib/core/brain-md-schema.cjs +528 -0
- package/lib/core/brain-md-staleness.cjs +357 -0
- package/lib/core/brain-response-sanitize.cjs +188 -0
- package/lib/core/bridge-writer.cjs +477 -0
- package/lib/core/chat-context-builder.cjs +253 -0
- package/lib/core/cross-room-aggregator.cjs +762 -0
- package/lib/core/daily-briefing.cjs +438 -0
- package/lib/core/decision-capture.cjs +618 -0
- package/lib/core/deep-links.cjs +82 -0
- package/lib/core/dispatch-optimizer.cjs +354 -0
- package/lib/core/dual-path-detector.cjs +84 -0
- package/lib/core/dual-path-detector.test.cjs +334 -0
- package/lib/core/exports-log.cjs +79 -0
- package/lib/core/feynman-minto-invariants.cjs +605 -0
- package/lib/core/folder-memory-async.cjs +338 -0
- package/lib/core/folder-memory-shared.cjs +890 -0
- package/lib/core/folder-memory.cjs +416 -0
- package/lib/core/framework-chain-composer.cjs +411 -0
- package/lib/core/frontmatter-schemas.cjs +330 -0
- package/lib/core/git-ops.cjs +141 -0
- package/lib/core/graph-ops.cjs +258 -0
- package/lib/core/hat-persistence.cjs +362 -0
- package/lib/core/index.cjs +60 -0
- package/lib/core/integration-registry.cjs +232 -0
- package/lib/core/intelligence-cascade.cjs +661 -0
- package/lib/core/lazygraph-ops.cjs +1057 -0
- package/lib/core/lru-cache.cjs +139 -0
- package/lib/core/mcp-profiles.cjs +182 -0
- package/lib/core/meeting-ops.cjs +54 -0
- package/lib/core/memory-ops.cjs +600 -0
- package/lib/core/migrations/ROOM.md +33 -0
- package/lib/core/migrations/phase-109-nodes-provenance.cjs +339 -0
- package/lib/core/migrations/phase-109-session-focus.cjs +99 -0
- package/lib/core/model-profiles.cjs +246 -0
- package/lib/core/mullins-scaffold.cjs +160 -0
- package/lib/core/nav-dial.cjs +316 -0
- package/lib/core/navigation/ROOM.md +15 -0
- package/lib/core/navigation/explanation.cjs +43 -0
- package/lib/core/navigation/focus.cjs +135 -0
- package/lib/core/navigation/ingestion.cjs +82 -0
- package/lib/core/navigation/insights.cjs +350 -0
- package/lib/core/navigation/memory-events.cjs +118 -0
- package/lib/core/navigation/neighborhood.cjs +78 -0
- package/lib/core/navigation/packet.cjs +182 -0
- package/lib/core/navigation/room-home.cjs +127 -0
- package/lib/core/navigation/transitions.cjs +82 -0
- package/lib/core/navigation-engine-shared.cjs +242 -0
- package/lib/core/navigation-engine.cjs +664 -0
- package/lib/core/navigation.cjs +60 -0
- package/lib/core/nl-graph-queries.cjs +164 -0
- package/lib/core/offer-presenter.cjs +406 -0
- package/lib/core/opportunity-extractor.cjs +183 -0
- package/lib/core/opportunity-ops.cjs +1371 -0
- package/lib/core/persona-ops.cjs +537 -0
- package/lib/core/persona-taxonomy.cjs +190 -0
- package/lib/core/platform-gates.cjs +120 -0
- package/lib/core/platform.cjs +257 -0
- package/lib/core/proactive-intelligence.cjs +528 -0
- package/lib/core/problem-type-router.cjs +315 -0
- package/lib/core/reasoning-ops.cjs +639 -0
- package/lib/core/reverse-salient-persona-suffix.cjs +115 -0
- package/lib/core/room-classifier-strict-mode.cjs +229 -0
- package/lib/core/room-db.cjs +127 -0
- package/lib/core/room-ops-async.cjs +92 -0
- package/lib/core/room-ops-shared.cjs +64 -0
- package/lib/core/room-ops-sync.cjs +70 -0
- package/lib/core/room-ops.cjs +32 -0
- package/lib/core/room-type-detector.cjs +386 -0
- package/lib/core/rs-brain-substrate-prompts.cjs +129 -0
- package/lib/core/rs-brain-substrate.cjs +570 -0
- package/lib/core/rs-breakthrough-scorer.cjs +255 -0
- package/lib/core/rs-canon-violations.cjs +82 -0
- package/lib/core/rs-chain-feeder.cjs +343 -0
- package/lib/core/rs-commercial-assessor.cjs +280 -0
- package/lib/core/rs-differential-scorer.cjs +376 -0
- package/lib/core/rs-domain-analyzer.cjs +385 -0
- package/lib/core/rs-egress-prompts.cjs +113 -0
- package/lib/core/rs-egress-telemetry.cjs +225 -0
- package/lib/core/rs-egress-violations.cjs +53 -0
- package/lib/core/rs-expert-mapper.cjs +467 -0
- package/lib/core/rs-fetcher-academic.cjs +697 -0
- package/lib/core/rs-fetcher-experts.cjs +314 -0
- package/lib/core/rs-fetcher-industry.cjs +731 -0
- package/lib/core/rs-fetcher-patents.cjs +564 -0
- package/lib/core/rs-innovation-classifier.cjs +194 -0
- package/lib/core/rs-mind-map.cjs +656 -0
- package/lib/core/rs-neo4j-writer.cjs +388 -0
- package/lib/core/rs-nl-to-query.cjs +425 -0
- package/lib/core/rs-pinecone-bridge.cjs +303 -0
- package/lib/core/rs-preprocessor.cjs +350 -0
- package/lib/core/rs-query-matrix.cjs +316 -0
- package/lib/core/rs-query-to-text.cjs +438 -0
- package/lib/core/rs-sqlite-mirror.cjs +443 -0
- package/lib/core/rs-thesis-generator.cjs +188 -0
- package/lib/core/rs_cache.py +479 -0
- package/lib/core/rs_corpus.py +468 -0
- package/lib/core/rs_hybrid.py +586 -0
- package/lib/core/rs_math.py +287 -0
- package/lib/core/rs_rooms.py +193 -0
- package/lib/core/scheduled-scanner.cjs +463 -0
- package/lib/core/scratchpad-ops.cjs +201 -0
- package/lib/core/section-8-trace-schema.cjs +138 -0
- package/lib/core/section-registry.cjs +111 -0
- package/lib/core/session-state.cjs +144 -0
- package/lib/core/shallow-doc-parser.cjs +174 -0
- package/lib/core/shallow-doc-parser.test.cjs +226 -0
- package/lib/core/skill-activation-router.cjs +284 -0
- package/lib/core/state-ops.cjs +46 -0
- package/lib/core/statusline-cache.cjs +266 -0
- package/lib/core/token-estimator.cjs +348 -0
- package/lib/core/user-archetype.cjs +239 -0
- package/lib/core/user-md-ops.cjs +524 -0
- package/lib/core/visual-ops.cjs +624 -0
- package/lib/core/write-lock.cjs +149 -0
- package/lib/graph/canvas-graph.js +467 -0
- package/lib/graph/constellation-config.cjs +299 -0
- package/lib/graph/graph-detail-panel.js +165 -0
- package/lib/hmi/ROOM.md +47 -0
- package/lib/hmi/across-session-memory.cjs +604 -0
- package/lib/hmi/cross-room-memory.cjs +575 -0
- package/lib/hmi/decoy-tier.cjs +395 -0
- package/lib/hmi/jtbd-classifier.cjs +219 -0
- package/lib/hmi/jtbd-state.cjs +199 -0
- package/lib/hmi/jtbd-taxonomy.json +392 -0
- package/lib/hmi/selector-dispatcher.cjs +546 -0
- package/lib/hmi/selector-telemetry.cjs +263 -0
- package/lib/hmi/shape-f0-renderer.cjs +139 -0
- package/lib/hmi/shape-f1-fallback.cjs +80 -0
- package/lib/hmi/shape-f1-renderer.cjs +138 -0
- package/lib/hmi/shape-f2-renderer.cjs +132 -0
- package/lib/hmi/shape-f3-renderer.cjs +66 -0
- package/lib/hmi/shape-f4-renderer.cjs +72 -0
- package/lib/hmi/shape-f5-renderer.cjs +155 -0
- package/lib/hmi/shape-f6-plan-review-renderer.cjs +312 -0
- package/lib/hmi/shape-f6-renderer.cjs +144 -0
- package/lib/hmi/shape-g-renderer.cjs +219 -0
- package/lib/hmi/shape-h-renderer.cjs +222 -0
- package/lib/hmi/tier-check.cjs +63 -0
- package/lib/import/PRECONDITIONS.md +41 -0
- package/lib/import/branding.cjs +210 -0
- package/lib/import/branding.test.cjs +235 -0
- package/lib/import/classifications-sync.cjs +104 -0
- package/lib/import/classifications-sync.test.cjs +129 -0
- package/lib/import/enricher.cjs +296 -0
- package/lib/import/enricher.test.cjs +273 -0
- package/lib/import/integration.test.cjs +376 -0
- package/lib/import/manifest.cjs +129 -0
- package/lib/import/manifest.schema.json +185 -0
- package/lib/import/manifest.test.cjs +123 -0
- package/lib/import/meeting-detector.cjs +92 -0
- package/lib/import/meeting-detector.test.cjs +100 -0
- package/lib/import/person-detector.cjs +229 -0
- package/lib/import/person-detector.test.cjs +149 -0
- package/lib/import/report.cjs +186 -0
- package/lib/import/report.test.cjs +186 -0
- package/lib/import/room-md-scaffolder.cjs +49 -0
- package/lib/import/router.cjs +224 -0
- package/lib/import/router.test.cjs +356 -0
- package/lib/import/run-all-tests.cjs +36 -0
- package/lib/import/smoke-test.cjs +213 -0
- package/lib/import/smoke-test.test.cjs +148 -0
- package/lib/import/test-fixtures/collision-vault/preexisting-room/STATE.md +8 -0
- package/lib/import/test-fixtures/collision-vault/preexisting-room/problem-definition/onboarding/onboarding.md +7 -0
- package/lib/import/test-fixtures/collision-vault/source/onboarding.md +5 -0
- package/lib/import/test-fixtures/obsidian-vault/.obsidian/workspace.json +1 -0
- package/lib/import/test-fixtures/obsidian-vault/notes/with-wikilinks.md +4 -0
- package/lib/import/test-fixtures/tiny-vault/notes/2026-01-15-team-sync.md +9 -0
- package/lib/import/test-fixtures/tiny-vault/notes/empty.md +3 -0
- package/lib/import/test-fixtures/tiny-vault/notes/onboarding.md +5 -0
- package/lib/import/test-fixtures/tiny-vault/notes/pricing.md +5 -0
- package/lib/import/test-fixtures/tiny-vault/notes/random.md +4 -0
- package/lib/import/undo.test.cjs +199 -0
- package/lib/import/vault-scanner.cjs +105 -0
- package/lib/import/vault-scanner.test.cjs +67 -0
- package/lib/mcp/app-html/dashboard.html +316 -0
- package/lib/mcp/app-html/graph.html +428 -0
- package/lib/mcp/app-html/mindrian-platform.html +1841 -0
- package/lib/mcp/app-html/wiki.html +383 -0
- package/lib/mcp/app-views.cjs +322 -0
- package/lib/mcp/brain-router.cjs +418 -0
- package/lib/mcp/capability-registry.cjs +62 -0
- package/lib/mcp/larry-context.cjs +46 -0
- package/lib/mcp/larry-server-instructions.md +114 -0
- package/lib/mcp/pipeline-state.cjs +275 -0
- package/lib/mcp/prompts.cjs +302 -0
- package/lib/mcp/resources.cjs +227 -0
- package/lib/mcp/session-catchup.cjs +327 -0
- package/lib/mcp/surface-detect.cjs +75 -0
- package/lib/mcp/tool-router.cjs +1034 -0
- package/lib/memory/aaak-compress.cjs +403 -0
- package/lib/memory/aaak-compress.test.cjs +288 -0
- package/lib/memory/async-artifact-auto-commit.test.cjs +223 -0
- package/lib/memory/bearer-token.test.cjs +315 -0
- package/lib/memory/brain-cache-lru.test.cjs +259 -0
- package/lib/memory/brain-client-query-shape.test.cjs +160 -0
- package/lib/memory/brain-derivation-graceful-degradation.test.cjs +1019 -0
- package/lib/memory/brain-derivation-queue.test.cjs +539 -0
- package/lib/memory/brain-derivation.test.cjs +634 -0
- package/lib/memory/brain-derive-command.test.cjs +534 -0
- package/lib/memory/brain-md-invariants-validator.test.cjs +704 -0
- package/lib/memory/brain-md-schema.test.cjs +467 -0
- package/lib/memory/brain-md-staleness.test.cjs +525 -0
- package/lib/memory/brain-server-resolution.test.cjs +314 -0
- package/lib/memory/chain-recommender.test.cjs +233 -0
- package/lib/memory/chat-context.test.cjs +128 -0
- package/lib/memory/command-registry.test.cjs +220 -0
- package/lib/memory/cross-room-aggregator.test.cjs +909 -0
- package/lib/memory/dashboard-server.test.cjs +256 -0
- package/lib/memory/debouncer-drain-at-prompt.test.cjs +389 -0
- package/lib/memory/decision-capture.test.cjs +632 -0
- package/lib/memory/decision-capture.worker.cjs +70 -0
- package/lib/memory/explain-decision-command.test.cjs +521 -0
- package/lib/memory/explain-decision-footer.test.cjs +316 -0
- package/lib/memory/explored-materials-store.cjs +392 -0
- package/lib/memory/feynman-minto-guardian.test.cjs +736 -0
- package/lib/memory/feynman-minto-invariants.test.cjs +511 -0
- package/lib/memory/feynman-prompts-drift.test.cjs +144 -0
- package/lib/memory/feynman-prompts.cjs +151 -0
- package/lib/memory/feynman-prompts.test.cjs +96 -0
- package/lib/memory/folder-memory-quadruple.test.cjs +548 -0
- package/lib/memory/folder-memory.test.cjs +503 -0
- package/lib/memory/framework-chain-composer.test.cjs +515 -0
- package/lib/memory/frontmatter-schema-validator.test.cjs +290 -0
- package/lib/memory/heal-command.test.cjs +604 -0
- package/lib/memory/index-artifact-transaction.test.cjs +333 -0
- package/lib/memory/lazygraph-rs-discoveries-view.test.cjs +122 -0
- package/lib/memory/mcp-input-validation.test.cjs +240 -0
- package/lib/memory/mcp-server-brain-deps.test.cjs +270 -0
- package/lib/memory/mcp-stack-fallback.test.cjs +433 -0
- package/lib/memory/minto-debouncer.test.cjs +407 -0
- package/lib/memory/minto-debouncer.worker.cjs +46 -0
- package/lib/memory/minto-migration-v88.test.cjs +265 -0
- package/lib/memory/minto-schema-v88.test.cjs +390 -0
- package/lib/memory/mos-status-renderer.test.cjs +631 -0
- package/lib/memory/narrative-schema.cjs +376 -0
- package/lib/memory/narrative-schema.test.cjs +209 -0
- package/lib/memory/nav-dial.test.cjs +414 -0
- package/lib/memory/navigation-engine-core.test.cjs +722 -0
- package/lib/memory/navigation-invariants.test.cjs +483 -0
- package/lib/memory/offer-presenter.test.cjs +554 -0
- package/lib/memory/on-stop-snapshot.test.cjs +404 -0
- package/lib/memory/pending-tension-store.cjs +373 -0
- package/lib/memory/post-compact-reinjection.test.cjs +854 -0
- package/lib/memory/post-write-triple.test.cjs +317 -0
- package/lib/memory/pre-compact-snapshot.test.cjs +495 -0
- package/lib/memory/problem-type-router.test.cjs +656 -0
- package/lib/memory/query-efficiency-telemetry.test.cjs +370 -0
- package/lib/memory/recompile-room-references.test.cjs +392 -0
- package/lib/memory/recompile-room-references.worker.cjs +42 -0
- package/lib/memory/record-decision-dual-write.test.cjs +454 -0
- package/lib/memory/room-classifier-strict-mode.test.cjs +417 -0
- package/lib/memory/room-minto-hook.test.cjs +398 -0
- package/lib/memory/rs-discovery-engine.test.cjs +323 -0
- package/lib/memory/run-feynman-tests.cjs +1247 -0
- package/lib/memory/security-trifecta.test.cjs +312 -0
- package/lib/memory/session-start-brain-staleness.test.cjs +363 -0
- package/lib/memory/session-start-triple-injection.test.cjs +514 -0
- package/lib/memory/sessionstart-banner-formatter.cjs +318 -0
- package/lib/memory/sessionstart-minto-banner.test.cjs +373 -0
- package/lib/memory/skill-activation-router.test.cjs +419 -0
- package/lib/memory/stamp-artifact-write.test.cjs +304 -0
- package/lib/memory/statusline-active-room.test.cjs +315 -0
- package/lib/memory/statusline-minto-segment.test.cjs +292 -0
- package/lib/memory/sync-async-entry-points.test.cjs +204 -0
- package/lib/memory/test-bridge-writer-enhanced.cjs +452 -0
- package/lib/memory/test-rs-brain-substrate-shape.cjs +529 -0
- package/lib/memory/test-rs-brain-substrate.cjs +636 -0
- package/lib/memory/test-rs-breakthrough-scorer.cjs +375 -0
- package/lib/memory/test-rs-canon-violations.cjs +218 -0
- package/lib/memory/test-rs-chain-feeder-core.cjs +344 -0
- package/lib/memory/test-rs-chain-feeder-skill-spawn.cjs +297 -0
- package/lib/memory/test-rs-commercial-assessor.cjs +385 -0
- package/lib/memory/test-rs-differential-scorer.cjs +480 -0
- package/lib/memory/test-rs-discovery-engine.cjs +603 -0
- package/lib/memory/test-rs-domain-analyzer.cjs +492 -0
- package/lib/memory/test-rs-egress-primitives.cjs +420 -0
- package/lib/memory/test-rs-expert-mapper.cjs +547 -0
- package/lib/memory/test-rs-explain-command.cjs +443 -0
- package/lib/memory/test-rs-fetcher-academic.cjs +848 -0
- package/lib/memory/test-rs-fetcher-experts.cjs +496 -0
- package/lib/memory/test-rs-fetcher-industry.cjs +702 -0
- package/lib/memory/test-rs-fetcher-patents.cjs +674 -0
- package/lib/memory/test-rs-innovation-classifier.cjs +301 -0
- package/lib/memory/test-rs-mind-map.cjs +646 -0
- package/lib/memory/test-rs-neo4j-writer.cjs +518 -0
- package/lib/memory/test-rs-nl-to-query.cjs +449 -0
- package/lib/memory/test-rs-pinecone-bridge.cjs +277 -0
- package/lib/memory/test-rs-preprocessor.cjs +433 -0
- package/lib/memory/test-rs-query-matrix.cjs +391 -0
- package/lib/memory/test-rs-query-to-text.cjs +551 -0
- package/lib/memory/test-rs-sqlite-mirror.cjs +649 -0
- package/lib/memory/test-rs-thesis-generator.cjs +360 -0
- package/lib/memory/triple-context-formatter.cjs +473 -0
- package/lib/memory/triple-context-formatter.test.cjs +442 -0
- package/lib/memory/user-md-persona.test.cjs +565 -0
- package/lib/memory/userpromptsubmit-integration.test.cjs +690 -0
- package/lib/memory/validators/README.md +157 -0
- package/lib/memory/validators/brain-md-invariants.cjs +475 -0
- package/lib/memory/validators/brain-substrate-invariants.cjs +285 -0
- package/lib/memory/validators/external-academic-invariants.cjs +249 -0
- package/lib/memory/validators/external-industry-invariants.cjs +271 -0
- package/lib/memory/validators/external-patents-invariants.cjs +266 -0
- package/lib/memory/validators/minto-invariants.cjs +62 -0
- package/lib/memory/validators/navigation-invariants.cjs +340 -0
- package/lib/memory/validators/queue-health.cjs +95 -0
- package/lib/memory/validators/snapshot-integrity.cjs +129 -0
- package/lib/memory/validators/stale-lifecycle.cjs +116 -0
- package/lib/memory/vault-section-minto-generator-atomic.test.cjs +556 -0
- package/lib/memory/vault-section-minto-generator-atomic.worker.cjs +73 -0
- package/lib/memory/write-lock-atomic.test.cjs +137 -0
- package/lib/memory/write-lock-atomic.worker.cjs +55 -0
- package/lib/parity/check-parity.cjs +83 -0
- package/lib/presentation/presentation-server.cjs +101 -0
- package/lib/presentation/presentation-watcher.cjs +123 -0
- package/lib/quickview/hub-server.cjs +719 -0
- package/lib/quickview/server.cjs +533 -0
- package/lib/render/JTBD-PALETTES.md +145 -0
- package/lib/render/ROOM.md +59 -0
- package/lib/render/render-v2.cjs +486 -0
- package/lib/render/render-v2.test.cjs +267 -0
- package/lib/render/render.cjs +65 -0
- package/lib/state/ROOM.md +46 -0
- package/lib/state/state-md-parser.cjs +215 -0
- package/lib/statusline/ROOM.md +38 -0
- package/lib/statusline/banner-suppression.cjs +50 -0
- package/lib/statusline/surface-detect.cjs +85 -0
- package/lib/update-bootstrap.sh.template +145 -0
- package/lib/vault/frontmatter-schema.cjs +297 -0
- package/lib/vault/room-scanner.cjs +352 -0
- package/lib/vault/wikilink-builder.cjs +231 -0
- package/lib/vault/wikilink-builder.test.cjs +182 -0
- package/lib/wiki/graph-links.cjs +281 -0
- package/lib/wiki/page-renderer.cjs +229 -0
- package/lib/wiki/wiki-chat.cjs +81 -0
- package/lib/wiki/wiki-layout.cjs +1459 -0
- package/lib/wiki/wiki-search.cjs +142 -0
- package/lib/wiki/wiki-server.cjs +678 -0
- package/lib/wiki/wiki-watcher.cjs +105 -0
- package/lib/workflow/ROOM.md +47 -0
- package/lib/workflow/command-resolver.cjs +155 -0
- package/lib/workflow/command-resolver.test.cjs +235 -0
- package/package.json +44 -0
- package/pipelines/analogy/01-decompose.md +80 -0
- package/pipelines/analogy/02-abstract.md +87 -0
- package/pipelines/analogy/03-search.md +135 -0
- package/pipelines/analogy/04-transfer.md +101 -0
- package/pipelines/analogy/05-validate.md +106 -0
- package/pipelines/analogy/CHAIN.md +56 -0
- package/pipelines/discovery/01-explore-domains.md +44 -0
- package/pipelines/discovery/02-think-hats.md +50 -0
- package/pipelines/discovery/03-analyze-needs.md +54 -0
- package/pipelines/discovery/CHAIN.md +37 -0
- package/pipelines/thesis/01-structure-argument.md +45 -0
- package/pipelines/thesis/02-challenge-assumptions.md +48 -0
- package/pipelines/thesis/03-build-thesis.md +54 -0
- package/pipelines/thesis/CHAIN.md +37 -0
- package/references/brain/causal-directives.md +91 -0
- package/references/brain/causal-enrichment.cypher +165 -0
- package/references/brain/command-triggers-schema.md +226 -0
- package/references/brain/graph-architecture.md +317 -0
- package/references/brain/query-patterns.md +460 -0
- package/references/brain/room-hierarchy-schema.md +218 -0
- package/references/brain/schema.md +76 -0
- package/references/capability-radar/capabilities-index.md +241 -0
- package/references/capability-radar/changelog-cache.md +81 -0
- package/references/causal/causal-schema.md +103 -0
- package/references/design/email-template-standard.md +155 -0
- package/references/design/graph-visualization-standard.md +178 -0
- package/references/document-generation.md +179 -0
- package/references/hsi/HSI-TOOLS-REFERENCE.md +222 -0
- package/references/import-config.md +141 -0
- package/references/integrations/detection-patterns.md +101 -0
- package/references/meeting/artifact-template.md +377 -0
- package/references/meeting/cross-meeting-intelligence.md +216 -0
- package/references/meeting/cross-relationship-patterns.md +202 -0
- package/references/meeting/live-join-interface.md +244 -0
- package/references/meeting/section-mapping.md +192 -0
- package/references/meeting/segment-classification.md +258 -0
- package/references/meeting/speaker-profile-template.md +219 -0
- package/references/meeting/summary-template.md +348 -0
- package/references/meeting/transcript-patterns.md +226 -0
- package/references/methodology/analyze-needs.md +135 -0
- package/references/methodology/analyze-systems.md +121 -0
- package/references/methodology/analyze-timing.md +149 -0
- package/references/methodology/beautiful-question.md +109 -0
- package/references/methodology/build-knowledge.md +161 -0
- package/references/methodology/build-thesis.md +237 -0
- package/references/methodology/challenge-assumptions.md +127 -0
- package/references/methodology/diagnose.md +169 -0
- package/references/methodology/dominant-designs.md +212 -0
- package/references/methodology/explore-domains.md +147 -0
- package/references/methodology/explore-futures.md +163 -0
- package/references/methodology/explore-trends.md +129 -0
- package/references/methodology/find-bottlenecks.md +131 -0
- package/references/methodology/grade.md +211 -0
- package/references/methodology/index.md +97 -0
- package/references/methodology/leadership.md +200 -0
- package/references/methodology/lean-canvas.md +116 -0
- package/references/methodology/macro-trends.md +192 -0
- package/references/methodology/map-unknowns.md +137 -0
- package/references/methodology/mullins-7-domains.md +104 -0
- package/references/methodology/problem-types.md +65 -0
- package/references/methodology/root-cause.md +178 -0
- package/references/methodology/sapphire-encoding.md +355 -0
- package/references/methodology/scenario-plan.md +178 -0
- package/references/methodology/score-innovation.md +154 -0
- package/references/methodology/structure-argument.md +158 -0
- package/references/methodology/systems-thinking.md +159 -0
- package/references/methodology/think-hats.md +147 -0
- package/references/methodology/triz-matrix.json +751 -0
- package/references/methodology/triz-principles.md +501 -0
- package/references/methodology/user-needs.md +199 -0
- package/references/methodology/validate.md +163 -0
- package/references/methodology/value-proposition.md +244 -0
- package/references/opportunities/funding-lifecycle.md +103 -0
- package/references/opportunities/grant-api-patterns.md +99 -0
- package/references/opportunities/opportunity-template.md +84 -0
- package/references/personality/assessment-philosophy.md +72 -0
- package/references/personality/lexicon.md +100 -0
- package/references/personality/persona-chains.md +56 -0
- package/references/personality/pws-lexicon-full.md +499 -0
- package/references/personality/voice-dna.md +156 -0
- package/references/personas/hat-perspectives.md +76 -0
- package/references/personas/persona-template.md +63 -0
- package/references/pipeline/act-output-contract.md +88 -0
- package/references/pipeline/chains-index.md +39 -0
- package/references/pws-profile-generation.md +79 -0
- package/references/reasoning/reasoning-schema.md +143 -0
- package/references/reasoning/reasoning-template.md +68 -0
- package/references/reasoning/run-template.md +38 -0
- package/references/research/RESEARCH_14_CLAUDE_CODE_SOURCE_ARCHITECTURE.md +209 -0
- package/references/research/RESEARCH_15_V1.8_OPTIMIZATION_JTBD.md +375 -0
- package/references/research/RESEARCH_16_NATIVE_FIRST_PLUGIN_ARCHITECTURE.md +575 -0
- package/references/research/RESEARCH_17_MCP_UI_FRAMEWORKS.md +272 -0
- package/references/taxonomy/TAXONOMY.md +192 -0
- package/references/templates/MINTO.md +36 -0
- package/references/user-research/2026-04-05-leah-lawrence-session.md +202 -0
- package/references/vault-kit/README.md +35 -0
- package/references/vault-kit/app.json +12 -0
- package/references/vault-kit/appearance.json +12 -0
- package/references/vault-kit/graph.json +35 -0
- package/references/vault-kit/snippets/mindrian-destijl.css +297 -0
- package/references/vault-kit/templates/new-artifact.md +37 -0
- package/references/vault-kit/templates/new-meeting-note.md +35 -0
- package/references/vault-kit/templates/new-team-profile.md +29 -0
- package/references/vault-kit/templates/new-xref.md +35 -0
- package/references/visual/symbol-system.md +151 -0
- package/skills/MOSDeckEngine/SKILL.md +325 -0
- package/skills/brain-connector/SKILL.md +114 -0
- package/skills/context-engine/SKILL.md +147 -0
- package/skills/conversation-mode/SKILL.md +102 -0
- package/skills/larry-personality/SKILL.md +219 -0
- package/skills/larry-personality/framework-chains.md +92 -0
- package/skills/larry-personality/mode-engine.md +185 -0
- package/skills/mullins-scaffold/SKILL.md +61 -0
- package/skills/mullins-scaffold/scaffold.json +146 -0
- package/skills/pws-methodology/SKILL.md +49 -0
- package/skills/room-passive/SKILL.md +165 -0
- package/skills/room-proactive/SKILL.md +250 -0
- package/skills/ui-system/SKILL.md +277 -0
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
# Lean Canvas -- Framework Reference
|
|
2
|
+
|
|
3
|
+
*Loaded on demand by `/mos:lean-canvas`*
|
|
4
|
+
|
|
5
|
+
## Framework Overview
|
|
6
|
+
|
|
7
|
+
The Lean Canvas condenses an entire business model onto one page -- nine boxes that force clarity and expose gaps. Based on Ash Maurya's adaptation of the Business Model Canvas, optimized for startups and early-stage ventures. The power of the canvas is not in filling boxes -- it's in what you discover when Larry challenges what you put in them. Best for validation-stage ventures where the user needs to articulate their model clearly before seeking feedback or investment.
|
|
8
|
+
|
|
9
|
+
## The Voice (This Methodology)
|
|
10
|
+
|
|
11
|
+
Larry as a demanding investor reviewing your pitch. Every box gets challenged. Vague answers get sent back. The canvas is only as strong as its weakest box.
|
|
12
|
+
|
|
13
|
+
Signature phrases:
|
|
14
|
+
- "What's your actual unfair advantage? Not 'we're passionate' -- that's not an advantage."
|
|
15
|
+
- "You've described a feature, not a value proposition. What changes in the customer's life?"
|
|
16
|
+
- "Revenue streams? Great. Now tell me which one you'd bet the company on."
|
|
17
|
+
- "That cost structure assumes everything goes right. What if it doesn't?"
|
|
18
|
+
- "Your problem statement is three paragraphs. If you can't say it in one sentence, you don't understand it yet."
|
|
19
|
+
|
|
20
|
+
Anti-patterns to catch:
|
|
21
|
+
- **Feature-stuffed Solution box** -- describing implementation instead of value
|
|
22
|
+
- **Vague Customer Segments** -- "everyone" or "millennials" is not a segment
|
|
23
|
+
- **Missing Unfair Advantage** -- "passion," "team," or "first mover" are not structural advantages
|
|
24
|
+
- **Revenue Streams without pricing** -- naming a model without numbers
|
|
25
|
+
- **Problem box that's actually a solution in disguise** -- "we need a platform for..." is a solution, not a problem
|
|
26
|
+
- **Empty Key Metrics** -- if you can't measure it, you can't improve it
|
|
27
|
+
|
|
28
|
+
## Phases
|
|
29
|
+
|
|
30
|
+
### Phase 1: Problem + Customer (Investigative -- turns 1-3)
|
|
31
|
+
|
|
32
|
+
"Start with pain. What hurts and who feels it?"
|
|
33
|
+
|
|
34
|
+
- What's the problem? Say it in one sentence.
|
|
35
|
+
- Who has this problem? Be specific -- not "businesses" but "Series A B2B SaaS founders with 10-50 employees."
|
|
36
|
+
- How do they solve it today? What are the existing alternatives?
|
|
37
|
+
- ONE question per response. Build the foundation before anything else.
|
|
38
|
+
|
|
39
|
+
### Phase 2: Value Proposition + Solution (turns 3-5)
|
|
40
|
+
|
|
41
|
+
"Now that you know the problem and who has it -- what changes?"
|
|
42
|
+
|
|
43
|
+
- What's the single clearest benefit? Not a feature list.
|
|
44
|
+
- How is this different from what they already use?
|
|
45
|
+
- What does the customer's life look like AFTER they use your solution?
|
|
46
|
+
|
|
47
|
+
### Phase 3: Channels + Revenue (Blend -- turns 5-7)
|
|
48
|
+
|
|
49
|
+
"How do you reach them and how do you get paid?"
|
|
50
|
+
|
|
51
|
+
- Where do your customers already hang out?
|
|
52
|
+
- What's the first revenue stream you'd test?
|
|
53
|
+
- What would you charge? Not "we'll figure that out later" -- give a number.
|
|
54
|
+
- Free-to-paid conversion path or direct sales? Pick one to start.
|
|
55
|
+
|
|
56
|
+
### Phase 4: Cost Structure + Metrics + Unfair Advantage (Insight -- turns 7+)
|
|
57
|
+
|
|
58
|
+
"The hard boxes. This is where most canvases fall apart."
|
|
59
|
+
|
|
60
|
+
- What's the burn rate to reach first paying customer?
|
|
61
|
+
- What's the ONE metric that tells you this is working?
|
|
62
|
+
- Unfair advantage: something that cannot be easily copied or bought. Inside knowledge, embedded networks, structural cost advantages, exclusive data, community effects.
|
|
63
|
+
|
|
64
|
+
Deliver the synthesis: "Here's where your canvas is strong and here's where it leaks."
|
|
65
|
+
|
|
66
|
+
## Artifact Template
|
|
67
|
+
|
|
68
|
+
```markdown
|
|
69
|
+
---
|
|
70
|
+
methodology: lean-canvas
|
|
71
|
+
created: {date}
|
|
72
|
+
depth: {quick|deep}
|
|
73
|
+
problem_type: {type}
|
|
74
|
+
venture_stage: {stage}
|
|
75
|
+
room_section: business-model
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
# Lean Canvas -- {Venture Name}
|
|
79
|
+
|
|
80
|
+
| Box | Content |
|
|
81
|
+
|-----|---------|
|
|
82
|
+
| **Problem** | {Top 1-3 problems in one sentence each} |
|
|
83
|
+
| **Customer Segments** | {Specific target -- not "everyone"} |
|
|
84
|
+
| **Unique Value Proposition** | {Single clear compelling message} |
|
|
85
|
+
| **Solution** | {How UVP is delivered -- not a feature list} |
|
|
86
|
+
| **Channels** | {Path to customer -- where they already are} |
|
|
87
|
+
| **Revenue Streams** | {How you get paid, with target pricing} |
|
|
88
|
+
| **Cost Structure** | {Key costs to reach first paying customer} |
|
|
89
|
+
| **Key Metrics** | {The ONE metric that matters most right now} |
|
|
90
|
+
| **Unfair Advantage** | {Cannot be easily copied or bought} |
|
|
91
|
+
|
|
92
|
+
## Canvas Strength Assessment
|
|
93
|
+
- Strongest box: {which one and why}
|
|
94
|
+
- Weakest box: {which one and why}
|
|
95
|
+
- Biggest gap: {what's missing or assumed}
|
|
96
|
+
|
|
97
|
+
## Homework
|
|
98
|
+
Take your weakest box and spend 48 hours gathering evidence for it. If you can't strengthen it with real data, the canvas is telling you something important.
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## Default Room
|
|
102
|
+
|
|
103
|
+
business-model
|
|
104
|
+
|
|
105
|
+
## Cross-References
|
|
106
|
+
|
|
107
|
+
- **analyze-needs**: If Customer Segments or Problem boxes need deeper investigation
|
|
108
|
+
- **structure-argument**: If the UVP needs to be sharpened into a compelling pitch
|
|
109
|
+
- **build-thesis**: If the canvas is strong enough to build an investment case
|
|
110
|
+
- **challenge-assumptions**: If the Unfair Advantage or Revenue boxes rest on unvalidated assumptions
|
|
111
|
+
- **validate**: If key boxes need evidence-based validation before proceeding
|
|
112
|
+
|
|
113
|
+
## Quick Pass vs Deep Dive
|
|
114
|
+
|
|
115
|
+
- **Quick (5-10 min)**: Fill all 9 boxes with first-pass answers. Identify the weakest box. Good for initial brainstorming.
|
|
116
|
+
- **Deep (15-30 min)**: Full four-phase session challenging each box, iterating on weak spots, producing a canvas you'd show to an investor.
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
# Macro-Changes Analysis -- Framework Reference
|
|
2
|
+
|
|
3
|
+
*Loaded on demand by `/mos:macro-trends`*
|
|
4
|
+
|
|
5
|
+
## Framework Overview
|
|
6
|
+
|
|
7
|
+
Macro-Changes Analysis helps users see the tectonic shifts reshaping entire industries and domains -- then trace them to consequences and opportunities. Instead of reacting to individual changes in isolation, you map their systemic interactions through PEST analysis, identify what is being destroyed, trace multi-order consequences (1st, 2nd, 3rd order), and find the problems worth solving that emerge from the destruction. Based on Lawrence Aronhime's PWS methodology, applied through Larry's systems-thinking teaching style.
|
|
8
|
+
|
|
9
|
+
The operating principle: The most important innovations don't come from staring at what exists today. They come from understanding what is being destroyed by macro-level changes -- and then asking: What needs to be built in its place?
|
|
10
|
+
|
|
11
|
+
## The Voice (This Methodology)
|
|
12
|
+
|
|
13
|
+
Larry in macro-analysis mode. Systems thinker. Destruction-seeker. Opportunity hunter.
|
|
14
|
+
|
|
15
|
+
Signature phrases:
|
|
16
|
+
- "Every macro trend creates a micro opportunity. Your job is to find it before your competitors do."
|
|
17
|
+
- "What is being destroyed here? And who hasn't noticed yet?"
|
|
18
|
+
- "You've identified the change. Now tell me what it's killing."
|
|
19
|
+
- "That's a first-order consequence. Go deeper -- what happens next?"
|
|
20
|
+
- "If you can't name what's being destroyed, you can't find the opportunity."
|
|
21
|
+
- "That's a newspaper headline, not an analysis. What's actually happening underneath?"
|
|
22
|
+
- "Don't give me four independent lists. Give me a system."
|
|
23
|
+
|
|
24
|
+
Anti-patterns to catch:
|
|
25
|
+
- Mapping changes without tracing destruction -- destruction is where opportunities hide
|
|
26
|
+
- Staying at first-order consequences -- 2nd and 3rd order is where the real insights live
|
|
27
|
+
- Treating PEST categories as independent lists -- they form a system with feedback loops
|
|
28
|
+
- Accepting vague macro-changes ("Things are getting more digital") -- require specifics with evidence
|
|
29
|
+
- Confusing events (a product launch) with macro-changes (structural shifts)
|
|
30
|
+
- Skipping the "problems worth solving" synthesis -- the point is opportunity identification
|
|
31
|
+
- Never teach the framework abstractly -- apply it to their actual domain
|
|
32
|
+
|
|
33
|
+
## Phases
|
|
34
|
+
|
|
35
|
+
### Phase 1: Domain Selection (Investigative -- turns 1-2)
|
|
36
|
+
|
|
37
|
+
Select a domain rich with change -- not one that's comfortable and stable.
|
|
38
|
+
|
|
39
|
+
- "What domain or industry are you interested in exploring?"
|
|
40
|
+
- "Why this domain? What changes have you already noticed?"
|
|
41
|
+
- Challenge if too broad ("Healthcare is not a domain -- it's a universe"), too narrow, or seemingly stable.
|
|
42
|
+
|
|
43
|
+
ONE question per response. Short and Socratic.
|
|
44
|
+
|
|
45
|
+
### Phase 2: Macro-Changes Mapping (Investigative -- turns 2-4)
|
|
46
|
+
|
|
47
|
+
Identify at least 5-7 important macro-changes affecting the domain.
|
|
48
|
+
|
|
49
|
+
- "What are the most important macro-changes happening in your domain right now?"
|
|
50
|
+
- A macro-change is a significant, observable shift altering the structure of the domain.
|
|
51
|
+
- NOT a product launch (event), NOT a vague feeling, NOT a prediction without evidence.
|
|
52
|
+
- For each: What evidence? How long occurring? How fast moving?
|
|
53
|
+
- "Pick one for deep analysis. Not the most comfortable one -- the one that feels most consequential."
|
|
54
|
+
|
|
55
|
+
### Phase 3: PEST Systems Analysis (Investigative to Blend -- turns 4-6)
|
|
56
|
+
|
|
57
|
+
Analyze the selected macro-change through PEST, then map systemic interactions.
|
|
58
|
+
|
|
59
|
+
- **P - Political**: Laws, regulations, government policy, trade, taxation
|
|
60
|
+
- **E - Economic**: Growth, inflation, employment, capital, pricing
|
|
61
|
+
- **S - Social**: Demographics, attitudes, behaviors, cultural shifts, values
|
|
62
|
+
- **T - Technological**: New tech, automation, digital adoption, platform shifts
|
|
63
|
+
|
|
64
|
+
"Don't give me four independent lists. Give me a system. How do these categories connect?"
|
|
65
|
+
|
|
66
|
+
### Phase 4: Destruction and Discontinuity Analysis (Blend -- turns 6-8)
|
|
67
|
+
|
|
68
|
+
For each PEST category, identify what is changing and what is being destroyed.
|
|
69
|
+
|
|
70
|
+
- What business models are becoming unviable?
|
|
71
|
+
- What jobs or roles are being eliminated?
|
|
72
|
+
- What institutions are losing relevance?
|
|
73
|
+
- What assumptions are being invalidated?
|
|
74
|
+
- What skills are becoming obsolete?
|
|
75
|
+
|
|
76
|
+
A discontinuity is where the old rules stop working and new rules have not yet been established.
|
|
77
|
+
|
|
78
|
+
### Phase 5: Multi-Order Consequences (Blend to Insight -- turns 8-10)
|
|
79
|
+
|
|
80
|
+
Trace 1st, 2nd, and 3rd order implications.
|
|
81
|
+
|
|
82
|
+
- **1st Order**: Immediate, obvious, direct consequences. The ones that make the news.
|
|
83
|
+
- **2nd Order**: Downstream, indirect, emergent. Require connecting dots across domains.
|
|
84
|
+
- **3rd Order**: Systemic, structural, paradigmatic. Almost nobody sees these. Breakthrough opportunities live here.
|
|
85
|
+
|
|
86
|
+
Challenge: "Those are obvious consequences. Every newspaper covers those. Think about what happens NEXT."
|
|
87
|
+
|
|
88
|
+
### Phase 6: Problems Worth Solving (Insight -- turns 10+)
|
|
89
|
+
|
|
90
|
+
Where are the opportunities hiding in the destruction?
|
|
91
|
+
|
|
92
|
+
For each destruction or discontinuity:
|
|
93
|
+
- What must be REPLACED? (purpose still exists but old method is dying)
|
|
94
|
+
- What must be BRIDGED? (gaps during transition)
|
|
95
|
+
- What becomes POSSIBLE that wasn't before? (old constraints removed)
|
|
96
|
+
- What NEW PROBLEMS emerge? (new systems create new problems)
|
|
97
|
+
|
|
98
|
+
End with: "The most valuable problems to solve are not the ones staring you in the face. They're the ones hiding in what's being destroyed."
|
|
99
|
+
|
|
100
|
+
## Artifact Template
|
|
101
|
+
|
|
102
|
+
```markdown
|
|
103
|
+
---
|
|
104
|
+
methodology: macro-trends
|
|
105
|
+
created: {date}
|
|
106
|
+
depth: {quick|deep}
|
|
107
|
+
problem_type: {type}
|
|
108
|
+
venture_stage: {stage}
|
|
109
|
+
room_section: market-analysis
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
# Macro-Changes Analysis -- {Domain}
|
|
113
|
+
|
|
114
|
+
## Domain
|
|
115
|
+
{Selected domain and rationale}
|
|
116
|
+
|
|
117
|
+
## Macro-Changes Identified
|
|
118
|
+
|
|
119
|
+
| # | Macro-Change | Evidence | Speed | Impact |
|
|
120
|
+
|---|-------------|----------|-------|--------|
|
|
121
|
+
| 1 | {change} | {evidence} | {slow/moderate/rapid} | {high/medium/low} |
|
|
122
|
+
|
|
123
|
+
## Selected Change for Deep Analysis
|
|
124
|
+
{The most consequential macro-change}
|
|
125
|
+
|
|
126
|
+
## PEST Systems Analysis
|
|
127
|
+
|
|
128
|
+
### Political
|
|
129
|
+
{Political dimensions and their dynamics}
|
|
130
|
+
|
|
131
|
+
### Economic
|
|
132
|
+
{Economic dimensions and their dynamics}
|
|
133
|
+
|
|
134
|
+
### Social
|
|
135
|
+
{Social dimensions and their dynamics}
|
|
136
|
+
|
|
137
|
+
### Technological
|
|
138
|
+
{Technological dimensions and their dynamics}
|
|
139
|
+
|
|
140
|
+
### System Interactions
|
|
141
|
+
{How PEST categories connect, feedback loops, reinforcing dynamics}
|
|
142
|
+
|
|
143
|
+
## Destruction Analysis
|
|
144
|
+
|
|
145
|
+
| What Is Changing | What Is Being Destroyed | Who Is Affected |
|
|
146
|
+
|-----------------|------------------------|-----------------|
|
|
147
|
+
| {change} | {business model/job/institution/assumption being destroyed} | {stakeholders} |
|
|
148
|
+
|
|
149
|
+
## Multi-Order Consequences
|
|
150
|
+
|
|
151
|
+
### 1st Order (Obvious, Direct)
|
|
152
|
+
{Immediate consequences -- the newspaper headlines}
|
|
153
|
+
|
|
154
|
+
### 2nd Order (Downstream, Emergent)
|
|
155
|
+
{Indirect consequences requiring cross-domain connection}
|
|
156
|
+
|
|
157
|
+
### 3rd Order (Systemic, Paradigmatic)
|
|
158
|
+
{Structural consequences -- where breakthrough opportunities live}
|
|
159
|
+
|
|
160
|
+
## Problems Worth Solving
|
|
161
|
+
|
|
162
|
+
### Must Be Replaced
|
|
163
|
+
{Old methods dying but purpose persists}
|
|
164
|
+
|
|
165
|
+
### Must Be Bridged
|
|
166
|
+
{Transition gaps creating temporary but real problems}
|
|
167
|
+
|
|
168
|
+
### Newly Possible
|
|
169
|
+
{Old constraints removed, new territory opened}
|
|
170
|
+
|
|
171
|
+
### Newly Created
|
|
172
|
+
{New systems creating entirely new problems}
|
|
173
|
+
|
|
174
|
+
## Homework
|
|
175
|
+
Pick your highest-impact 3rd order consequence. Find three people in different industries who are being affected by the same structural shift. Compare notes. The macro-change you've identified isn't unique to your domain -- it's a pattern. Find the pattern.
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
## Default Room
|
|
179
|
+
|
|
180
|
+
market-analysis
|
|
181
|
+
|
|
182
|
+
## Cross-References
|
|
183
|
+
|
|
184
|
+
- **explore-trends**: If individual trends need TTA-style absurd extrapolation
|
|
185
|
+
- **scenario-plan**: If macro-changes drive critical uncertainties for scenario planning
|
|
186
|
+
- **analyze-timing**: If the pace of change matters for strategic timing
|
|
187
|
+
- **dominant-designs**: If macro-changes are disrupting established dominant designs
|
|
188
|
+
|
|
189
|
+
## Quick Pass vs Deep Dive
|
|
190
|
+
|
|
191
|
+
- **Quick (10-15 min)**: Identify 3-4 macro-changes, quick PEST scan of the most consequential one, trace to 1st and 2nd order consequences. Good when the user already has a change in mind.
|
|
192
|
+
- **Deep (30-60 min)**: Full six-phase arc, comprehensive macro-change mapping, complete PEST systems analysis, destruction analysis, full three-order consequence chain, problems worth solving synthesis. Best for strategic exploration of domains undergoing significant structural change.
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# Known/Unknown Matrix -- Framework Reference
|
|
2
|
+
|
|
3
|
+
*Loaded on demand by `/mos:map-unknowns`*
|
|
4
|
+
|
|
5
|
+
## Framework Overview
|
|
6
|
+
|
|
7
|
+
The Known/Unknown Matrix maps the landscape of what you know and don't know -- because the most dangerous risks live in what you don't know you don't know. A four-quadrant matrix built through iterative conversation, not a one-pass checklist. Best for ill-defined problems where the user needs to surface hidden assumptions and blind spots before choosing a direction.
|
|
8
|
+
|
|
9
|
+
## The Voice (This Methodology)
|
|
10
|
+
|
|
11
|
+
Larry in risk-intelligence mode. Calm, methodical, but relentless. Every "known" gets challenged. Every empty quadrant gets investigated.
|
|
12
|
+
|
|
13
|
+
Signature phrases:
|
|
14
|
+
- "The dangerous quadrant isn't what you don't know -- it's what you think you know that isn't true."
|
|
15
|
+
- "You listed that as a known. Prove it."
|
|
16
|
+
- "That's not a fact -- that's a hypothesis. Let's put it in the right quadrant."
|
|
17
|
+
- "The scariest quadrant isn't the one with the most items. It's the one that's empty -- because it means you haven't looked hard enough."
|
|
18
|
+
- "Your blind spots aren't random. They follow a pattern. Let's find it."
|
|
19
|
+
|
|
20
|
+
Anti-patterns to catch:
|
|
21
|
+
- Filling the matrix in one pass -- it takes iteration
|
|
22
|
+
- Empty "unknown unknowns" quadrant -- that means they haven't tried
|
|
23
|
+
- Treating this as a checklist exercise instead of a thinking exercise
|
|
24
|
+
- Skipping the Camera Test on "known knowns" (could a camera see this, or is it interpretation?)
|
|
25
|
+
- Confusing assumptions with facts
|
|
26
|
+
|
|
27
|
+
## The Matrix
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
KNOWN TO YOU UNKNOWN TO YOU
|
|
31
|
+
+------------------+---------------------+
|
|
32
|
+
KNOWN TO | KNOWN KNOWNS | BLIND SPOTS |
|
|
33
|
+
OTHERS | Your facts. | Others see it. |
|
|
34
|
+
| Validate them. | You don't. Ask. |
|
|
35
|
+
+------------------+---------------------+
|
|
36
|
+
UNKNOWN TO | HIDDEN KNOWNS | UNKNOWN UNKNOWNS |
|
|
37
|
+
OTHERS | You know it | Nobody sees it. |
|
|
38
|
+
| but haven't | Catastrophe AND |
|
|
39
|
+
| articulated it. | opportunity live |
|
|
40
|
+
| Surface it. | here. |
|
|
41
|
+
+------------------+---------------------+
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Phases
|
|
45
|
+
|
|
46
|
+
### Phase 1: Inventory the Known Knowns (Investigative -- turns 1-3)
|
|
47
|
+
|
|
48
|
+
"What are you most confident about? Good. Now let's find out what you're wrong about."
|
|
49
|
+
|
|
50
|
+
- "What do you KNOW is true? How do you know?"
|
|
51
|
+
- Apply the Camera Test: could a camera see this, or is it interpretation?
|
|
52
|
+
- Separate fact from assumption. Most "known knowns" are actually assumptions wearing a lab coat.
|
|
53
|
+
|
|
54
|
+
ONE question per response. Build the inventory slowly.
|
|
55
|
+
|
|
56
|
+
### Phase 2: Surface the Blind Spots (turns 3-5)
|
|
57
|
+
|
|
58
|
+
"Who else is looking at this problem? What would they see that you can't?"
|
|
59
|
+
|
|
60
|
+
- "If your competitor looked at this, what would they exploit?"
|
|
61
|
+
- "What feedback have you ignored or dismissed?"
|
|
62
|
+
- "Who disagrees with your core assumption? What do they see?"
|
|
63
|
+
|
|
64
|
+
### Phase 3: Excavate Hidden Knowns (turns 5-7)
|
|
65
|
+
|
|
66
|
+
"What do you know from experience that you haven't put into words yet?"
|
|
67
|
+
|
|
68
|
+
- "What pattern have you noticed but not named?"
|
|
69
|
+
- "What does your gut tell you that your spreadsheet doesn't?"
|
|
70
|
+
- "What's the thing you keep coming back to but can't articulate?"
|
|
71
|
+
|
|
72
|
+
### Phase 4: Hunt the Unknown Unknowns (Insight -- turns 7+)
|
|
73
|
+
|
|
74
|
+
"What question should you be asking that you haven't thought to ask?"
|
|
75
|
+
|
|
76
|
+
- "What would have to be true for your entire plan to be wrong?"
|
|
77
|
+
- "What happened to the last five companies that tried this?"
|
|
78
|
+
- "What's the question that, if answered, would change everything?"
|
|
79
|
+
|
|
80
|
+
Deliver the pattern: "Here's what your matrix reveals about your thinking: [specific blind spot pattern]."
|
|
81
|
+
|
|
82
|
+
## Artifact Template
|
|
83
|
+
|
|
84
|
+
```markdown
|
|
85
|
+
---
|
|
86
|
+
methodology: map-unknowns
|
|
87
|
+
created: {date}
|
|
88
|
+
depth: {quick|deep}
|
|
89
|
+
problem_type: {type}
|
|
90
|
+
venture_stage: {stage}
|
|
91
|
+
room_section: problem-definition
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
# Known/Unknown Matrix -- {Topic}
|
|
95
|
+
|
|
96
|
+
## Known Knowns (Validated Facts)
|
|
97
|
+
| # | What We Know | Evidence | Camera Test |
|
|
98
|
+
|---|-------------|----------|-------------|
|
|
99
|
+
| 1 | {fact} | {evidence} | {pass/fail} |
|
|
100
|
+
|
|
101
|
+
## Blind Spots (Others See It, We Don't)
|
|
102
|
+
| # | Blind Spot | Who Sees It | How to Investigate |
|
|
103
|
+
|---|-----------|-------------|-------------------|
|
|
104
|
+
| 1 | {spot} | {who} | {action} |
|
|
105
|
+
|
|
106
|
+
## Hidden Knowns (We Know But Haven't Articulated)
|
|
107
|
+
| # | Hidden Knowledge | Why It Matters | How to Surface |
|
|
108
|
+
|---|-----------------|----------------|----------------|
|
|
109
|
+
| 1 | {knowledge} | {importance} | {action} |
|
|
110
|
+
|
|
111
|
+
## Unknown Unknowns (Nobody Sees It Yet)
|
|
112
|
+
| # | Potential Unknown | What Would Reveal It | Risk Level |
|
|
113
|
+
|---|------------------|---------------------|------------|
|
|
114
|
+
| 1 | {unknown} | {investigation} | {high/medium/low} |
|
|
115
|
+
|
|
116
|
+
## Pattern Analysis
|
|
117
|
+
{What the matrix reveals about the user's thinking -- specific blind spot patterns}
|
|
118
|
+
|
|
119
|
+
## Homework
|
|
120
|
+
Take your three biggest "known knowns" and try to disprove them. If you can't, they're real. If you can -- you just found what was hiding in your blind spots.
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
## Default Room
|
|
124
|
+
|
|
125
|
+
problem-definition
|
|
126
|
+
|
|
127
|
+
## Cross-References
|
|
128
|
+
|
|
129
|
+
- **challenge-assumptions**: If the matrix reveals fragile assumptions that need stress-testing
|
|
130
|
+
- **explore-domains**: If blind spots point to unexplored domains
|
|
131
|
+
- **root-cause**: If unknown unknowns suggest deeper systemic issues
|
|
132
|
+
- **analyze-systems**: If the matrix reveals system-level blind spots
|
|
133
|
+
|
|
134
|
+
## Quick Pass vs Deep Dive
|
|
135
|
+
|
|
136
|
+
- **Quick (5-10 min)**: Focus on Known Knowns (Camera Test) and one round of Blind Spots. Produce a starter matrix the user can iterate on.
|
|
137
|
+
- **Deep (15-30 min)**: Full four-phase exploration, multiple iterations per quadrant, pattern analysis across quadrants. Best when the user is making a major decision.
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# Mullins 7 Domains Model
|
|
2
|
+
|
|
3
|
+
**Source:** John W. Mullins, "The New Business Road Test" (4th ed., 2017, FT Press)
|
|
4
|
+
**Purpose:** Screen a business opportunity across 7 independent domains before committing resources. The weakest domain caps the opportunity.
|
|
5
|
+
|
|
6
|
+
## The Core Thesis
|
|
7
|
+
|
|
8
|
+
Most business plans fail because the founders fell in love with an idea and never stress-tested it. Mullins argues that any opportunity must score well on ALL seven domains to be worth pursuing. A GREEN team cannot rescue a RED market. A GREEN market cannot rescue a RED team.
|
|
9
|
+
|
|
10
|
+
This framework is designed for **Validation stage** -- after the problem is defined, before capital is deployed.
|
|
11
|
+
|
|
12
|
+
## The Seven Domains
|
|
13
|
+
|
|
14
|
+
### Market Domains (Is there demand?)
|
|
15
|
+
|
|
16
|
+
**Domain 1: Target Segment Benefits and Attractiveness (Micro-Market)**
|
|
17
|
+
- Who EXACTLY is the target customer?
|
|
18
|
+
- What pain or benefit does the product deliver?
|
|
19
|
+
- How severe is the pain? How often does it occur?
|
|
20
|
+
- Are customers willing and able to pay?
|
|
21
|
+
- Is the target segment reachable through identifiable channels?
|
|
22
|
+
|
|
23
|
+
**Key question:** Is there a specific, reachable group of people who will gladly buy this?
|
|
24
|
+
|
|
25
|
+
**Domain 2: Market Attractiveness (Macro-Market)**
|
|
26
|
+
- How large is the total market?
|
|
27
|
+
- What is the market growth rate?
|
|
28
|
+
- Are there macro trends that favor the opportunity?
|
|
29
|
+
- Is the market currently in growth, maturity, or decline?
|
|
30
|
+
|
|
31
|
+
**Key question:** Is the market big enough and growing fast enough to support a serious business?
|
|
32
|
+
|
|
33
|
+
### Industry Domains (Is the playing field favorable?)
|
|
34
|
+
|
|
35
|
+
**Domain 3: Industry Attractiveness (Macro-Industry, Porter's Five Forces)**
|
|
36
|
+
- Supplier power: Can suppliers squeeze margins?
|
|
37
|
+
- Buyer power: Can customers dictate terms?
|
|
38
|
+
- Threat of substitutes: What else can customers use instead?
|
|
39
|
+
- Threat of new entrants: How hard is it for competitors to enter?
|
|
40
|
+
- Competitive rivalry: How intense is the fight for customers?
|
|
41
|
+
|
|
42
|
+
**Key question:** Is this an industry where money can be made?
|
|
43
|
+
|
|
44
|
+
**Domain 4: Sustainable Advantage (Micro-Industry)**
|
|
45
|
+
- Do you have proprietary capabilities (IP, data, process, relationships)?
|
|
46
|
+
- Are your capabilities superior to existing players'?
|
|
47
|
+
- Can customers get SIGNIFICANT economic benefit from what you offer?
|
|
48
|
+
- Can you MAINTAIN the advantage over time?
|
|
49
|
+
|
|
50
|
+
**Key question:** Do you have something the competition can't copy fast?
|
|
51
|
+
|
|
52
|
+
### Team Domains (Can you pull it off?)
|
|
53
|
+
|
|
54
|
+
**Domain 5: Mission, Aspirations, Propensity for Risk**
|
|
55
|
+
- Is this opportunity aligned with what the founders actually want out of life?
|
|
56
|
+
- Are the founders' risk tolerances compatible with what this opportunity demands?
|
|
57
|
+
- Is the founding mission inspiring enough to survive the hard years?
|
|
58
|
+
|
|
59
|
+
**Key question:** Are the right PEOPLE doing this for the right REASONS?
|
|
60
|
+
|
|
61
|
+
**Domain 6: Ability to Execute on Critical Success Factors**
|
|
62
|
+
- What are the 3-5 things this specific opportunity DEMANDS be done well?
|
|
63
|
+
- Does the team have proven capability in each of those things?
|
|
64
|
+
- If not, can the team realistically hire or partner for them?
|
|
65
|
+
|
|
66
|
+
**Key question:** Can THIS team actually execute THIS plan?
|
|
67
|
+
|
|
68
|
+
**Domain 7: Connectedness Up, Down, and Across the Value Chain**
|
|
69
|
+
- Does the team know the suppliers?
|
|
70
|
+
- Does the team know the distribution channels?
|
|
71
|
+
- Does the team know the customers?
|
|
72
|
+
- Does the team know the regulators, influencers, and industry gatekeepers?
|
|
73
|
+
|
|
74
|
+
**Key question:** Can the team pick up the phone and reach the people who matter?
|
|
75
|
+
|
|
76
|
+
## Scoring System
|
|
77
|
+
|
|
78
|
+
Each domain gets a 1-5 score:
|
|
79
|
+
|
|
80
|
+
| Score | Status | Meaning |
|
|
81
|
+
|-------|--------|---------|
|
|
82
|
+
| 5 | GREEN | Strong evidence, proven |
|
|
83
|
+
| 4 | GREEN | Good signal, reasonable confidence |
|
|
84
|
+
| 3 | YELLOW | Mixed evidence, needs work |
|
|
85
|
+
| 2 | RED | Weak evidence, major concern |
|
|
86
|
+
| 1 | RED | No evidence or negative evidence |
|
|
87
|
+
|
|
88
|
+
## Decision Rules
|
|
89
|
+
|
|
90
|
+
- **All 7 GREEN** → PROCEED with conviction
|
|
91
|
+
- **1-2 REDs** → KILL OR PIVOT. Do not soldier on.
|
|
92
|
+
- **3+ YELLOWs** → NOT-YET. Fix the weakest two before committing.
|
|
93
|
+
- **Mixed REDs and GREENs** → The GREENs do NOT rescue the REDs. Weakest domain caps the opportunity.
|
|
94
|
+
|
|
95
|
+
## Why This Framework Is In The Door Pool
|
|
96
|
+
|
|
97
|
+
Mullins is the most rigorous go/no-go framework in the PWS methodology. A room that has a filed Mullins artifact has been stress-tested across all three dimensions that matter (market, industry, team) -- which is exactly what an investor, an advisor, or a future teammate wants to see on the landing page of a data room.
|
|
98
|
+
|
|
99
|
+
## Cross-Framework Connections
|
|
100
|
+
|
|
101
|
+
- **Before Mullins:** `/mos:analyze-needs` (feeds Domain 1), `/mos:macro-trends` (feeds Domain 2), `/mos:explore-domains` (feeds Domain 3)
|
|
102
|
+
- **Weakens Mullins:** A failed `/mos:challenge-assumptions` on Domain 4 (sustainable advantage)
|
|
103
|
+
- **Complements Mullins:** `/mos:leadership` (deepens Domains 5-7)
|
|
104
|
+
- **Chains from Mullins:** A GREEN Mullins → `/mos:build-thesis` (full investment thesis)
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Problem Type Classification -- Reference
|
|
2
|
+
|
|
3
|
+
*Loaded on demand by `/mos:diagnose` and used by `/mos:help` for framework routing.*
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Two-Dimensional Classification Matrix
|
|
8
|
+
|
|
9
|
+
Every venture problem sits on two axes. Larry uses this to route users to the right methodology.
|
|
10
|
+
|
|
11
|
+
### Axis 1: Definition Level
|
|
12
|
+
|
|
13
|
+
| Level | Signal | What It Looks Like |
|
|
14
|
+
|-------|--------|--------------------|
|
|
15
|
+
| **Undefined** | Future unclear, no constraints named, systemic | "I want to do something in climate tech" |
|
|
16
|
+
| **Ill-defined** | Something is broken but they cannot name it | "Customers aren't buying but I don't know why" |
|
|
17
|
+
| **Well-defined** | Clear parameters, specific constraints | "We need to reduce churn by 15% in Q2" |
|
|
18
|
+
|
|
19
|
+
### Axis 2: Complexity (Cynefin-Informed)
|
|
20
|
+
|
|
21
|
+
| Level | Signal | What It Looks Like |
|
|
22
|
+
|-------|--------|--------------------|
|
|
23
|
+
| **Simple** | Obvious cause-effect, best practice exists | "How do I structure my pitch deck?" |
|
|
24
|
+
| **Complicated** | Multiple possible causes, analysis needed | "Why is our conversion rate dropping?" |
|
|
25
|
+
| **Complex** | Entangled causes, emergent behavior | "How do we compete in a market that doesn't exist yet?" |
|
|
26
|
+
| **Wicked** | Multiple stakeholders, conflicting values, no stopping rule | "How do we make healthcare accessible AND profitable?" |
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## Methodology Routing Table
|
|
31
|
+
|
|
32
|
+
| Definition \ Complexity | Simple | Complicated | Complex | Wicked |
|
|
33
|
+
|------------------------|--------|-------------|---------|--------|
|
|
34
|
+
| **Undefined** | beautiful-question, lean-canvas | explore-domains, build-knowledge | explore-trends, scenario-plan | explore-futures, systems-thinking |
|
|
35
|
+
| **Ill-defined** | analyze-needs, structure-argument | root-cause, find-bottlenecks | map-unknowns, analyze-systems | think-hats, leadership |
|
|
36
|
+
| **Well-defined** | lean-canvas, structure-argument | analyze-timing, validate | challenge-assumptions, dominant-designs | scenario-plan, macro-trends |
|
|
37
|
+
|
|
38
|
+
Use this table as guidance, not gospel. Multiple methodologies may apply. Larry picks based on conversation context.
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## Evolution Rules
|
|
43
|
+
|
|
44
|
+
Problem type is NOT static. It evolves as the Room fills:
|
|
45
|
+
|
|
46
|
+
1. **Start**: Most ventures begin as Undefined + Complex (the default)
|
|
47
|
+
2. **After problem-definition fills**: Reclassify to Ill-defined (they can name something)
|
|
48
|
+
3. **After market-analysis fills**: Reclassify complexity based on evidence density
|
|
49
|
+
4. **After competitive-analysis fills**: Often shifts to Well-defined + Complicated
|
|
50
|
+
5. **After solution-design fills**: Full reclassification -- may reveal Wicked dimensions
|
|
51
|
+
|
|
52
|
+
The state script computes problem type from Room section fill levels. Larry uses this to adjust recommendations in `/mos:help`.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## Brain-Ready Interface
|
|
57
|
+
|
|
58
|
+
When Brain MCP connects (Phase 4), problem type classification gains:
|
|
59
|
+
|
|
60
|
+
- `ADDRESSES_PROBLEM_TYPE` relationship from the teaching graph
|
|
61
|
+
- Calibrated confidence scores per methodology-problem pairing
|
|
62
|
+
- Cross-user pattern matching (anonymized)
|
|
63
|
+
- Dynamic reclassification based on conversation signals
|
|
64
|
+
|
|
65
|
+
Until then, the routing table above provides Tier 0 classification.
|