@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,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: team
|
|
3
|
+
section: team
|
|
4
|
+
created: {{date:YYYY-MM-DD}}
|
|
5
|
+
room:
|
|
6
|
+
role:
|
|
7
|
+
expertise: []
|
|
8
|
+
contributions: []
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# {{title}}
|
|
12
|
+
|
|
13
|
+
> [!abstract] Role
|
|
14
|
+
>
|
|
15
|
+
|
|
16
|
+
## Background
|
|
17
|
+
|
|
18
|
+
## Expertise
|
|
19
|
+
|
|
20
|
+
-
|
|
21
|
+
|
|
22
|
+
## Contributions to This Room
|
|
23
|
+
|
|
24
|
+
| Date | Artifact | Type |
|
|
25
|
+
|------|----------|------|
|
|
26
|
+
| | [[]] | |
|
|
27
|
+
|
|
28
|
+
> [!info] How to reach
|
|
29
|
+
>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: xref
|
|
3
|
+
section:
|
|
4
|
+
created: {{date:YYYY-MM-DD}}
|
|
5
|
+
room:
|
|
6
|
+
source-artifact:
|
|
7
|
+
target-artifacts: []
|
|
8
|
+
relationship-type:
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# xref-{{title}}
|
|
12
|
+
|
|
13
|
+
> [!example] Cross-Reference
|
|
14
|
+
> Connects [[source]] to [[target]] via .
|
|
15
|
+
|
|
16
|
+
## Source
|
|
17
|
+
|
|
18
|
+
- [[]]
|
|
19
|
+
|
|
20
|
+
## Target(s)
|
|
21
|
+
|
|
22
|
+
- [[]]
|
|
23
|
+
|
|
24
|
+
## Reasoning
|
|
25
|
+
|
|
26
|
+
> [!info] Why this cross-reference exists
|
|
27
|
+
> One sentence -- per ARCH-06 quality filter.
|
|
28
|
+
|
|
29
|
+
## Implications
|
|
30
|
+
|
|
31
|
+
> [!success] Convergence
|
|
32
|
+
>
|
|
33
|
+
|
|
34
|
+
> [!warning] Contradiction
|
|
35
|
+
>
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
# MindrianOS Symbol System Reference
|
|
2
|
+
|
|
3
|
+
> Single source of truth for all visual symbols used across CLI, Desktop, and Cowork surfaces.
|
|
4
|
+
> Import from: `lib/core/visual-ops.cjs`
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Brand
|
|
9
|
+
|
|
10
|
+
| Symbol | Unicode | Name | Usage |
|
|
11
|
+
|--------|---------|------|-------|
|
|
12
|
+
| ⬡ | U+2B21 | Hexagon | MindrianOS brand mark. Prefix for project name in statusline. |
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Venture Stages
|
|
17
|
+
|
|
18
|
+
The five stages of the Innovation Certainty Model (ICM). Each stage has a symbol reflecting increasing solidity — from open circle to filled star.
|
|
19
|
+
|
|
20
|
+
| Symbol | Unicode | Stage | Description |
|
|
21
|
+
|--------|---------|-------|-------------|
|
|
22
|
+
| ◌ | U+25CC | Pre-Opportunity | Dotted circle — idea is forming, nothing solid yet |
|
|
23
|
+
| ◎ | U+25CE | Discovery | Bullseye — actively exploring, finding signal |
|
|
24
|
+
| ◉ | U+25C9 | Validation | Fisheye — testing assumptions, narrowing focus |
|
|
25
|
+
| ◆ | U+25C6 | Design | Filled diamond — shaping the solution |
|
|
26
|
+
| ★ | U+2605 | Investment Ready | Filled star — venture is ready for commitment |
|
|
27
|
+
|
|
28
|
+
**Usage:** `stageSymbol('discovery')` returns `◎`
|
|
29
|
+
|
|
30
|
+
Accepted inputs: kebab-case (`pre-opportunity`), camelCase (`preOpportunity`), lowercase (`discovery`).
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Edge Types (Cross-Relationships)
|
|
35
|
+
|
|
36
|
+
Edges represent structural relationships between room sections. Each edge type has a semantic color from the De Stijl palette.
|
|
37
|
+
|
|
38
|
+
| Symbol | Unicode | Edge Type | Color | Meaning |
|
|
39
|
+
|--------|---------|-----------|-------|---------|
|
|
40
|
+
| → | U+2192 | INFORMS | Blue (#1E3A6E) | This section provides input to another |
|
|
41
|
+
| ⊗ | U+2297 | CONTRADICTS | Red (#A63D2F) | This section conflicts with another |
|
|
42
|
+
| ⊕ | U+2295 | CONVERGES | Yellow (#C8A43C) | Themes appear across 3+ sections |
|
|
43
|
+
| ▶ | U+25B6 | ENABLES | Green (#2D6B4A) | This section unblocks another |
|
|
44
|
+
| ⊘ | U+2298 | INVALIDATES | Sienna (#B5602A) | This section makes another stale |
|
|
45
|
+
|
|
46
|
+
**Usage:** `edgeSymbol('INFORMS')` returns `→`
|
|
47
|
+
|
|
48
|
+
**Formatted:** `formatEdge('problem-definition', 'market-analysis', 'INFORMS')`
|
|
49
|
+
produces: `problem-definition →INFORMS→ market-analysis` (with blue coloring in terminal)
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## Larry Modes
|
|
54
|
+
|
|
55
|
+
The three conversation modes that shape Larry's behavior.
|
|
56
|
+
|
|
57
|
+
| Symbol | Unicode | Mode | Description |
|
|
58
|
+
|--------|---------|------|-------------|
|
|
59
|
+
| ? | ASCII | Investigative | Asking questions, probing assumptions |
|
|
60
|
+
| ⇌ | U+21CC | Blend | Balanced mix of questioning and insight |
|
|
61
|
+
| ! | ASCII | Insight | Delivering synthesized understanding |
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Section Health
|
|
66
|
+
|
|
67
|
+
Health symbols indicate the state of a room section's content.
|
|
68
|
+
|
|
69
|
+
| Symbol | Unicode | State | Condition |
|
|
70
|
+
|--------|---------|-------|-----------|
|
|
71
|
+
| ■ | U+25A0 | Populated | Section has 1+ artifacts |
|
|
72
|
+
| □ | U+25A1 | Empty | Section has 0 artifacts (gap) |
|
|
73
|
+
| ▪ | U+25AA | Partial | Explicitly flagged as incomplete |
|
|
74
|
+
|
|
75
|
+
**Usage:** `healthSymbol(3)` returns `■`, `healthSymbol(0)` returns `□`
|
|
76
|
+
|
|
77
|
+
**Formatted:** `formatSectionHeader('problem-definition', 3, 'discovery')`
|
|
78
|
+
produces: `◎ problem-definition ■ 3 artifacts`
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## Box Drawing Characters
|
|
83
|
+
|
|
84
|
+
Used for room structure diagrams (Unicode box art).
|
|
85
|
+
|
|
86
|
+
| Symbol | Unicode | Name | Position |
|
|
87
|
+
|--------|---------|------|----------|
|
|
88
|
+
| ┌ | U+250C | Top-left | Corner |
|
|
89
|
+
| ┐ | U+2510 | Top-right | Corner |
|
|
90
|
+
| └ | U+2514 | Bottom-left | Corner |
|
|
91
|
+
| ┘ | U+2518 | Bottom-right | Corner |
|
|
92
|
+
| ─ | U+2500 | Horizontal | Edge |
|
|
93
|
+
| │ | U+2502 | Vertical | Edge |
|
|
94
|
+
| ├ | U+251C | Left-tee | Junction |
|
|
95
|
+
| ┤ | U+2524 | Right-tee | Junction |
|
|
96
|
+
| ┬ | U+252C | Top-tee | Junction |
|
|
97
|
+
| ┴ | U+2534 | Bottom-tee | Junction |
|
|
98
|
+
| ┼ | U+253C | Cross | Junction |
|
|
99
|
+
|
|
100
|
+
**Example — Room Structure Diagram:**
|
|
101
|
+
```
|
|
102
|
+
┌─problem-definition──┐ ┌─market-analysis──────┐
|
|
103
|
+
│ ■ 3 artifacts │→│ ■ 5 artifacts │
|
|
104
|
+
│ ◎ Discovery │ │ ⊗ 1 contradiction │
|
|
105
|
+
└──────────────────────┘ └───────────────────────┘
|
|
106
|
+
↓ INFORMS ↓ ENABLES
|
|
107
|
+
┌─solution-design──────┐ ┌─competitive-analysis─┐
|
|
108
|
+
│ □ EMPTY — GAP │ │ ■ 2 artifacts │
|
|
109
|
+
│ │ │ ⊕ converges with 3 │
|
|
110
|
+
└──────────────────────┘ └───────────────────────┘
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## De Stijl ANSI Color Palette
|
|
116
|
+
|
|
117
|
+
24-bit true color codes for terminal output (statusline, Bash scripts).
|
|
118
|
+
|
|
119
|
+
| Name | Hex | ANSI Code | Usage |
|
|
120
|
+
|------|-----|-----------|-------|
|
|
121
|
+
| Red | #A63D2F | `\x1b[38;2;166;61;47m` | CONTRADICTS edges, error states |
|
|
122
|
+
| Blue | #1E3A6E | `\x1b[38;2;30;58;110m` | INFORMS edges, informational |
|
|
123
|
+
| Yellow | #C8A43C | `\x1b[38;2;200;164;60m` | CONVERGES edges, warnings |
|
|
124
|
+
| Green | #2D6B4A | `\x1b[38;2;45;107;74m` | ENABLES edges, healthy state |
|
|
125
|
+
| Sienna | #B5602A | `\x1b[38;2;181;96;42m` | INVALIDATES edges, alerts |
|
|
126
|
+
| Amethyst | #6B4E8B | `\x1b[38;2;107;78;139m` | Persona/mode indicators |
|
|
127
|
+
| Teal | #2A6B5E | `\x1b[38;2;42;107;94m` | Brand accent |
|
|
128
|
+
| Cream | #F5F0E8 | `\x1b[38;2;245;240;232m` | Primary text |
|
|
129
|
+
| Muted | #A09A90 | `\x1b[38;2;160;154;144m` | Secondary text, separators |
|
|
130
|
+
|
|
131
|
+
16-color fallbacks available via `ANSI_BASIC` for terminals without true color support.
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## Statusline Format
|
|
136
|
+
|
|
137
|
+
```
|
|
138
|
+
⬡ ProjectName │ ◎ Discovery │ ■ 5 sections │ □ 2 gaps │ ████░░ 40%
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
Components:
|
|
142
|
+
- `⬡` brand mark in teal
|
|
143
|
+
- Stage symbol + name in stage-appropriate color
|
|
144
|
+
- Section count with health symbol
|
|
145
|
+
- Gap count (red if > 0, green if 0)
|
|
146
|
+
- Context window usage bar with threshold colors
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
*Reference: .planning/phases/17-visual-identity/17-CONTEXT.md*
|
|
151
|
+
*Module: lib/core/visual-ops.cjs*
|
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: MOSDeckEngine
|
|
3
|
+
description: >
|
|
4
|
+
Use when translating complex engineering, technical, or scientific concepts into
|
|
5
|
+
clear investor-grade presentation decks. Runs a 6-stage Feynman first-principles
|
|
6
|
+
pipeline: reduce to essence, translate to plain language, expose confusion, build
|
|
7
|
+
mental models, simplify until it breaks, teach it back. Outputs YC-quality slides.
|
|
8
|
+
Triggers: pitch deck, explain complex concept, simplify for investors, technical
|
|
9
|
+
storytelling, demo day, fundraising deck.
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Feynman Engine -- Complexity to Clarity Pipeline
|
|
13
|
+
|
|
14
|
+
Transform complex engineering concepts into YC-quality presentation decks through
|
|
15
|
+
Richard Feynman's first-principles decomposition method.
|
|
16
|
+
|
|
17
|
+
## The Problem
|
|
18
|
+
|
|
19
|
+
The Curse of Knowledge. Technical founders cannot unsee their own complexity.
|
|
20
|
+
They drown investors in architecture diagrams, system specs, and jargon.
|
|
21
|
+
This skill is the antidote.
|
|
22
|
+
|
|
23
|
+
## When to Use
|
|
24
|
+
|
|
25
|
+
- Preparing a pitch deck from technical material
|
|
26
|
+
- Explaining a complex system to non-technical stakeholders
|
|
27
|
+
- Translating engineering architecture into investor language
|
|
28
|
+
- Simplifying a whitepaper or technical document for a presentation
|
|
29
|
+
- Any time someone says "make this simple" about something that is not
|
|
30
|
+
|
|
31
|
+
## When NOT to Use
|
|
32
|
+
|
|
33
|
+
- Writing technical documentation for engineers (keep the complexity)
|
|
34
|
+
- Internal architecture reviews (wrong audience)
|
|
35
|
+
- Academic papers (different communication standard)
|
|
36
|
+
|
|
37
|
+
## Input
|
|
38
|
+
|
|
39
|
+
Accept any of these:
|
|
40
|
+
- **Live conversation** -- explain the concept, the pipeline runs interactively
|
|
41
|
+
- **Pasted text** -- whitepaper excerpt, technical doc, architecture description
|
|
42
|
+
- **File path** -- reads a document and processes it
|
|
43
|
+
|
|
44
|
+
## The Pipeline
|
|
45
|
+
|
|
46
|
+
Six stages, run sequentially. Each stage produces a visible artifact the user
|
|
47
|
+
reviews before the next stage fires. This is interactive, not autonomous.
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
Complex Concept
|
|
51
|
+
|
|
|
52
|
+
v
|
|
53
|
+
[1. REDUCE TO ESSENCE] -- Strip to fundamental truths
|
|
54
|
+
|
|
|
55
|
+
v
|
|
56
|
+
[2. TRANSLATE] -- Rewrite for smart generalists
|
|
57
|
+
|
|
|
58
|
+
v
|
|
59
|
+
[3. EXPOSE CONFUSION] -- Find and fix hidden gaps (may loop 2-3x)
|
|
60
|
+
|
|
|
61
|
+
v
|
|
62
|
+
[4. BUILD MENTAL MODELS] -- Create 2-3 powerful analogies
|
|
63
|
+
|
|
|
64
|
+
v
|
|
65
|
+
[5. SIMPLIFY UNTIL BREAKS] -- Find the sweet spot boundary
|
|
66
|
+
|
|
|
67
|
+
v
|
|
68
|
+
[6. TEACH IT BACK] -- Quality gate: does it stand alone?
|
|
69
|
+
|
|
|
70
|
+
v
|
|
71
|
+
YC-Quality Deck
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## Stage 1: REDUCE TO ESSENCE
|
|
77
|
+
|
|
78
|
+
**Goal:** Strip the concept to irreducible fundamental truths.
|
|
79
|
+
|
|
80
|
+
**Run this prompt against the input:**
|
|
81
|
+
|
|
82
|
+
> Remove all jargon, assumptions, and surface-level explanations from this concept.
|
|
83
|
+
> Break it into its most fundamental truths -- pieces that cannot be simplified
|
|
84
|
+
> further without losing meaning. Show how they connect logically. Identify what
|
|
85
|
+
> is ESSENTIAL vs what is DECORATIVE.
|
|
86
|
+
|
|
87
|
+
**Produce:**
|
|
88
|
+
- Bullet list of irreducible truths (max 5-7)
|
|
89
|
+
- Connection map showing how pieces relate
|
|
90
|
+
- One-paragraph essence summary (3-4 sentences max)
|
|
91
|
+
|
|
92
|
+
**Challenge the user:** "That's not a fundamental truth -- that's an implementation
|
|
93
|
+
detail. What's underneath it?"
|
|
94
|
+
|
|
95
|
+
**Gate:** Ask "Does this capture the real core? What did I miss?" -- wait for response.
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## Stage 2: TRANSLATE TO PLAIN LANGUAGE
|
|
100
|
+
|
|
101
|
+
**Goal:** Convert the essence into language a non-technical investor absorbs on first read.
|
|
102
|
+
|
|
103
|
+
**Run this prompt against Stage 1 output:**
|
|
104
|
+
|
|
105
|
+
> Rewrite using simple words, short sentences, everyday language. Replace abstract
|
|
106
|
+
> terms with concrete descriptions. Target: a smart generalist who sees 1,000
|
|
107
|
+
> pitches a year. No academic tone. Conversational clarity that feels obvious
|
|
108
|
+
> on first read.
|
|
109
|
+
|
|
110
|
+
**Produce:**
|
|
111
|
+
- The "elevator version" (30 seconds, 3-4 sentences)
|
|
112
|
+
- Glossary of unavoidable terms, rewritten simply
|
|
113
|
+
- The "12-year-old version" (stripped to absolute minimum, still true)
|
|
114
|
+
|
|
115
|
+
**Challenge:** "If you need the word 'leverages' to explain this, you don't
|
|
116
|
+
understand it yet."
|
|
117
|
+
|
|
118
|
+
**Gate:** Ask "Read the 12-year-old version. Does it still feel true?" -- wait for response.
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## Stage 3: EXPOSE CONFUSION
|
|
123
|
+
|
|
124
|
+
**Goal:** Ruthlessly find hidden weakness in the simplified version.
|
|
125
|
+
|
|
126
|
+
**Run this prompt against Stage 2 output:**
|
|
127
|
+
|
|
128
|
+
> Examine every sentence for vagueness, skipped steps, or buried assumptions.
|
|
129
|
+
> Pinpoint exactly where the explanation breaks and WHY. Turn every weak spot
|
|
130
|
+
> into a specific question that forces deeper thinking. Do NOT accept partial
|
|
131
|
+
> understanding.
|
|
132
|
+
|
|
133
|
+
**Produce:**
|
|
134
|
+
- Numbered gap list with severity (CRITICAL / MODERATE / MINOR)
|
|
135
|
+
- Root cause of each gap
|
|
136
|
+
- Priority questions that must be answered
|
|
137
|
+
- Investor impact: which gaps lose a YC partner in 3 seconds?
|
|
138
|
+
|
|
139
|
+
**Challenge:** "Paragraph two -- you jumped from problem to solution without
|
|
140
|
+
explaining why THIS solution. An investor notices that in 3 seconds."
|
|
141
|
+
|
|
142
|
+
**Gate:** This stage LOOPS. Fix critical gaps, re-expose, repeat until clean.
|
|
143
|
+
Expect 2-3 iterations. Only proceed when no CRITICAL gaps remain.
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## Stage 4: BUILD MENTAL MODELS
|
|
148
|
+
|
|
149
|
+
**Goal:** Create analogies that make the concept instantly graspable.
|
|
150
|
+
|
|
151
|
+
**Run this prompt against the gap-fixed output:**
|
|
152
|
+
|
|
153
|
+
> Design 2-3 powerful analogies that map this concept to familiar experiences.
|
|
154
|
+
> Each model must preserve the STRUCTURE of the original idea while making it
|
|
155
|
+
> intuitive. Map each analogy element to the real element. Identify where each
|
|
156
|
+
> analogy breaks down.
|
|
157
|
+
|
|
158
|
+
**Produce:**
|
|
159
|
+
- 2-3 mental models with explicit mapping (analogy -> reality)
|
|
160
|
+
- Limitations of each (where it stops being accurate)
|
|
161
|
+
- Recommendation: best for 3-minute vs 30-minute explanation
|
|
162
|
+
|
|
163
|
+
**Challenge:** "The best analogy isn't clever -- it's obvious. When someone
|
|
164
|
+
hears it, they should think 'of course.'"
|
|
165
|
+
|
|
166
|
+
**Gate:** Ask "Which analogy resonates most? We'll lead the deck with that one."
|
|
167
|
+
-- wait for response.
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
## Stage 5: SIMPLIFY UNTIL IT BREAKS
|
|
172
|
+
|
|
173
|
+
**Goal:** Find the exact boundary between useful simplification and distortion.
|
|
174
|
+
|
|
175
|
+
**Run this prompt against the chosen model:**
|
|
176
|
+
|
|
177
|
+
> Take the best explanation and simplify it further, step by step. At each level,
|
|
178
|
+
> check: is the meaning still preserved? Push until further reduction WOULD
|
|
179
|
+
> distort the truth. Identify the exact boundary and explain why it exists.
|
|
180
|
+
|
|
181
|
+
**Produce:**
|
|
182
|
+
- Simplification ladder (4-5 rungs from detailed to ultra-simple)
|
|
183
|
+
- The breaking point: what cannot be simplified further and why
|
|
184
|
+
- The sweet spot: simplest version that is still TRUE
|
|
185
|
+
|
|
186
|
+
**Challenge:** "We just crossed the line. That last simplification turned your
|
|
187
|
+
distributed ledger into 'a shared spreadsheet' -- and that's wrong in a way
|
|
188
|
+
that matters. Step back one."
|
|
189
|
+
|
|
190
|
+
**Gate:** Ask "This is your presentation language. Sound right?" -- wait for response.
|
|
191
|
+
|
|
192
|
+
---
|
|
193
|
+
|
|
194
|
+
## Stage 6: TEACH IT BACK (Quality Gate)
|
|
195
|
+
|
|
196
|
+
**Goal:** Validate the final version stands alone without external context.
|
|
197
|
+
|
|
198
|
+
**Run this prompt against the sweet-spot version:**
|
|
199
|
+
|
|
200
|
+
> Present this concept from scratch. Start from basics, build up logically.
|
|
201
|
+
> Target: smart generalists. Evaluate for clarity, completeness, logical flow,
|
|
202
|
+
> persuasiveness. The listener should be able to explain this to someone else.
|
|
203
|
+
|
|
204
|
+
**Produce:**
|
|
205
|
+
- Polished teach-back version (this becomes the deck narrative)
|
|
206
|
+
- Remaining weakness (if any)
|
|
207
|
+
- Confidence rating: LOW / MEDIUM / HIGH / YC-READY
|
|
208
|
+
|
|
209
|
+
**Challenge:** "Read this out loud. If you stumble anywhere, that's where the
|
|
210
|
+
investor zones out."
|
|
211
|
+
|
|
212
|
+
**Final gate:** Only proceed to deck generation if confidence is HIGH or YC-READY.
|
|
213
|
+
If MEDIUM, loop back to the weakest stage. If LOW, restart from Stage 3.
|
|
214
|
+
|
|
215
|
+
---
|
|
216
|
+
|
|
217
|
+
## Deck Generation
|
|
218
|
+
|
|
219
|
+
After all 6 stages pass, generate a presentation deck.
|
|
220
|
+
|
|
221
|
+
### Slide Architecture (10-12 slides)
|
|
222
|
+
|
|
223
|
+
| # | Slide | Content Source |
|
|
224
|
+
|---|-------|---------------|
|
|
225
|
+
| 1 | Title | Essence summary (Stage 1) |
|
|
226
|
+
| 2 | The Problem | First-principles WHY this matters (Stage 1) |
|
|
227
|
+
| 3 | The Insight | The "aha" from Stage 5's sweet spot |
|
|
228
|
+
| 4 | The Solution | Plain language (Stage 2) + best analogy (Stage 4) |
|
|
229
|
+
| 5 | How It Works | Mental model DIAGRAM -- not technical architecture |
|
|
230
|
+
| 6 | Why Now | Simplified causal chain from Stage 1 fundamentals |
|
|
231
|
+
| 7 | Market | Numbers with Stage 2 plain language context |
|
|
232
|
+
| 8 | Business Model | One sentence + one visual |
|
|
233
|
+
| 9 | Traction | Evidence that validates the simplified story |
|
|
234
|
+
| 10 | Team | Why THIS team for THIS simplified problem |
|
|
235
|
+
| 11 | The Ask | What money buys, in sweet-spot language |
|
|
236
|
+
|
|
237
|
+
### Design Principles
|
|
238
|
+
|
|
239
|
+
- **One idea per slide.** Two sentences = two slides.
|
|
240
|
+
- **Headline carries the Feynman message.** Supporting text adds one layer of detail.
|
|
241
|
+
- **Diagrams over bullets.** Mental models from Stage 4 become visuals.
|
|
242
|
+
- **Whitespace is confidence.** Crowded slides signal unclear thinking.
|
|
243
|
+
|
|
244
|
+
### Visual Specifications
|
|
245
|
+
|
|
246
|
+
Generate as responsive HTML presentation:
|
|
247
|
+
- 16:9 aspect ratio with mobile/tablet breakpoints
|
|
248
|
+
- Keyboard navigation (arrows, space, home, end)
|
|
249
|
+
- Clean, minimal design -- investor-grade, not conference-talk flashy
|
|
250
|
+
|
|
251
|
+
**Color palette (professional, high-contrast):**
|
|
252
|
+
- Background: #FAFAFA (light) or #0A0A0A (dark)
|
|
253
|
+
- Primary text: #1A1A1A (light) or #F5F5F5 (dark)
|
|
254
|
+
- Accent: one bold color that matches the venture's energy
|
|
255
|
+
- Data/highlight: one complementary color
|
|
256
|
+
|
|
257
|
+
**Typography:**
|
|
258
|
+
- Headings: bold sans-serif (Inter, Helvetica Neue, or system)
|
|
259
|
+
- Body: regular sans-serif, 18px+ for readability at distance
|
|
260
|
+
- Data: monospace for numbers and metrics
|
|
261
|
+
|
|
262
|
+
**If ui-ux-pro-max skill is available**, use it for richer design intelligence:
|
|
263
|
+
```bash
|
|
264
|
+
python3 skills/ui-ux-pro-max/scripts/search.py "investor pitch deck minimal professional" --design-system
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
### Output
|
|
268
|
+
|
|
269
|
+
Save deck as HTML file. Report location to user.
|
|
270
|
+
|
|
271
|
+
---
|
|
272
|
+
|
|
273
|
+
## Adapting to Context
|
|
274
|
+
|
|
275
|
+
### With MindrianOS Data Room
|
|
276
|
+
- Pull technical content from room sections automatically
|
|
277
|
+
- File the Feynman analysis as a room artifact
|
|
278
|
+
- Cross-reference simplified concepts with existing room entries
|
|
279
|
+
- Use De Stijl design system for deck visuals
|
|
280
|
+
|
|
281
|
+
### Without MindrianOS (Standalone)
|
|
282
|
+
- Accept input via conversation or pasted text
|
|
283
|
+
- Output deck to current working directory
|
|
284
|
+
- No filing, no room integration
|
|
285
|
+
- Still runs the full 6-stage pipeline at identical quality
|
|
286
|
+
|
|
287
|
+
### With Brain Connection (MindrianOS + Brain)
|
|
288
|
+
- Query Brain for cross-domain analogies (Stage 4 enrichment)
|
|
289
|
+
- Pull SUCCESs Framework patterns for stickiness testing
|
|
290
|
+
- Use Minto Pyramid from Brain for SCQA structure validation
|
|
291
|
+
- Surface Golden Circle framing for the "Why Now" slide
|
|
292
|
+
|
|
293
|
+
---
|
|
294
|
+
|
|
295
|
+
## Common Patterns
|
|
296
|
+
|
|
297
|
+
### Technical Architecture -> Investor Deck
|
|
298
|
+
Input: "We built a distributed event-sourced system with CQRS and saga orchestration"
|
|
299
|
+
Stage 1 essence: "We built a system where every change is recorded, decisions are separated from data storage, and complex multi-step processes complete reliably even if parts fail"
|
|
300
|
+
Stage 5 sweet spot: "Think of it like a flight recorder for your business -- every decision is tracked, nothing gets lost, and the system heals itself"
|
|
301
|
+
|
|
302
|
+
### Research Paper -> Demo Day Pitch
|
|
303
|
+
Input: 3,000-word technical paper with citations
|
|
304
|
+
Stage 2 elevator: 4 sentences, zero jargon
|
|
305
|
+
Stage 4 analogy: maps to something every YC partner has experienced
|
|
306
|
+
Stage 6 teach-back: the partner could explain it to their colleagues
|
|
307
|
+
|
|
308
|
+
### Complex Algorithm -> Board Presentation
|
|
309
|
+
Input: ML model with attention mechanisms and transformer architecture
|
|
310
|
+
Stage 5 breaking point: "AI that reads" (too simple -- loses the mechanism that matters)
|
|
311
|
+
Stage 5 sweet spot: "AI that reads every document simultaneously and finds what connects them" (simplified but structurally true)
|
|
312
|
+
|
|
313
|
+
---
|
|
314
|
+
|
|
315
|
+
## Quality Standards
|
|
316
|
+
|
|
317
|
+
A Feynman-processed deck meets ALL of these:
|
|
318
|
+
|
|
319
|
+
- [ ] No jargon survives without a plain-language companion
|
|
320
|
+
- [ ] Every slide passes the "say it out loud" test
|
|
321
|
+
- [ ] At least one mental model that a non-expert remembers a week later
|
|
322
|
+
- [ ] The 12-year-old version is true (not just simple)
|
|
323
|
+
- [ ] Stage 3 found and fixed at least 2 gaps (if it found zero, the analysis was weak)
|
|
324
|
+
- [ ] The sweet spot is identified -- not the simplest version, but the simplest TRUE version
|
|
325
|
+
- [ ] Deck tells a story, not a feature list
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: brain-connector
|
|
3
|
+
description: >
|
|
4
|
+
Brain enrichment for Larry. Passive: weaves graph context into responses.
|
|
5
|
+
Proactive: surfaces contradictions and gaps. Active when Brain API key is
|
|
6
|
+
set (MINDRIAN_BRAIN_KEY in .env) or Brain MCP server is configured.
|
|
7
|
+
activation: "env:MINDRIAN_BRAIN_KEY"
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Brain Connector -- Enrichment Layer
|
|
11
|
+
|
|
12
|
+
## Detection
|
|
13
|
+
|
|
14
|
+
Check Brain availability in order:
|
|
15
|
+
1. `MINDRIAN_BRAIN_KEY` env var (CLI users)
|
|
16
|
+
2. `mcp__mindrian-brain__brain_schema` tool (Desktop/Cowork MCP)
|
|
17
|
+
3. `mcp__neo4j-brain__get_neo4j_schema` tool (legacy)
|
|
18
|
+
|
|
19
|
+
Any success = Brain active. All fail = silent fallback. Never mention failures to user.
|
|
20
|
+
|
|
21
|
+
Pinecone RESOURCE_EXHAUSTED (429): fall back to Neo4j Cypher only via `brain_query`.
|
|
22
|
+
|
|
23
|
+
### Offer-to-Setup
|
|
24
|
+
|
|
25
|
+
When Brain detection fails AND request would benefit (framework queries, grading, cross-domain): answer with local references first, then offer once: "I'd give you more here with Brain connected -- `/mos:setup brain`"
|
|
26
|
+
|
|
27
|
+
## Passive Enrichment (Every Turn)
|
|
28
|
+
|
|
29
|
+
- Framework mention: find related frameworks, weave naturally
|
|
30
|
+
- Methodology session: check if Brain recommends different next step
|
|
31
|
+
- Simple fast lookups only. Complex queries: delegate to Brain Agent.
|
|
32
|
+
- Prefer Cypher over Pinecone (no quota limits)
|
|
33
|
+
|
|
34
|
+
### Team-Execution Enrichment
|
|
35
|
+
|
|
36
|
+
When the user is discussing team, leadership, or working in team-execution section:
|
|
37
|
+
|
|
38
|
+
1. Query Brain for leadership frameworks matching the discussion:
|
|
39
|
+
```cypher
|
|
40
|
+
MATCH (f:Framework)-[:RELATED_TO]->(:Concept {name: 'Causal Reasoning'})
|
|
41
|
+
WHERE f.name IN ['Tuckman Team Stages', 'Psychological Safety', 'Adaptive Leadership',
|
|
42
|
+
'Emotional Intelligence in Leadership', 'High-Performing Teams']
|
|
43
|
+
OPTIONAL MATCH (f)-[:TYPICAL_AT]->(s:VentureStage {name: $venture_stage})
|
|
44
|
+
RETURN f.name, s IS NOT NULL AS matches_stage
|
|
45
|
+
ORDER BY matches_stage DESC
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
2. Surface the leadership FEEDS_INTO chain relevant to the conversation:
|
|
49
|
+
```cypher
|
|
50
|
+
MATCH path = (f:Framework {name: $current_framework})-[:FEEDS_INTO*1..3]->(next:Framework)
|
|
51
|
+
WHERE next.name IN ['Adaptive Leadership', 'Situational Leadership', 'High-Performing Teams',
|
|
52
|
+
'Distributed Leadership', 'Systems Leadership', 'Transformational Leadership']
|
|
53
|
+
RETURN next.name AS suggested, [r IN relationships(path) | r.confidence] AS confidence
|
|
54
|
+
ORDER BY confidence DESC LIMIT 3
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
3. Weave naturally: "The teaching graph connects what you're describing to [framework] -- it addresses the [specific gap] you mentioned."
|
|
58
|
+
|
|
59
|
+
## Proactive Surfacing (SessionStart + PostToolUse)
|
|
60
|
+
|
|
61
|
+
After room changes and session start:
|
|
62
|
+
- Run gap assessment and contradiction check against room frameworks
|
|
63
|
+
- Max 2 HIGH-confidence findings
|
|
64
|
+
- Voice: "Hold on -- I noticed something..."
|
|
65
|
+
- For Brain users, replaces room-proactive bash analysis (superset)
|
|
66
|
+
|
|
67
|
+
### Leadership Proactive Signals
|
|
68
|
+
|
|
69
|
+
On SessionStart, if room has team-execution entries:
|
|
70
|
+
|
|
71
|
+
1. Check if any leadership frameworks from the graph have been used vs. available:
|
|
72
|
+
```cypher
|
|
73
|
+
MATCH (f:Framework)-[:TYPICAL_AT]->(s:VentureStage {name: $stage})
|
|
74
|
+
WHERE f.name IN ['Tuckman Team Stages', 'Psychological Safety', 'Adaptive Leadership',
|
|
75
|
+
'Emotional Intelligence in Leadership', 'High-Performing Teams',
|
|
76
|
+
'Servant Leadership', 'Distributed Leadership', 'Transformational Leadership']
|
|
77
|
+
RETURN f.name AS available_framework
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
2. Compare against frameworks already applied in room (from STATE.md `frameworks_used`)
|
|
81
|
+
3. If 3+ unused leadership frameworks are available for the current stage, surface: "Your team section has data but you haven't used [N] leadership frameworks that match your stage. /mos:leadership to explore."
|
|
82
|
+
|
|
83
|
+
## Gating Rules
|
|
84
|
+
|
|
85
|
+
- Max 2 proactive findings per greeting
|
|
86
|
+
- HIGH confidence only for auto-surfacing
|
|
87
|
+
- Never interrupt methodology sessions
|
|
88
|
+
- Silent fallback on all failures
|
|
89
|
+
- Pinecone quota exhausted: use Neo4j only
|
|
90
|
+
|
|
91
|
+
## Brain-Powered Command Suggestions
|
|
92
|
+
|
|
93
|
+
Brain has Command nodes linked to Frameworks, VentureStages, SignalTypes. Level 3 intelligence from 100+ real projects.
|
|
94
|
+
|
|
95
|
+
Query `brain_proactive_command` for ranked suggestions with JTBD framing, trigger conditions, stage impact. Pick top match for current Room Signals. Present via JTBD formula from Command node fields.
|
|
96
|
+
|
|
97
|
+
Multi-hop: Room frameworks -> FOLLOWS_FRAMEWORK -> Command -> TRIGGERED_BY_SIGNAL -> Signals -> RELEVANT_AT_STAGE -> Stage
|
|
98
|
+
|
|
99
|
+
Fallback: local Room heuristics from larry-personality provoked suggestions.
|
|
100
|
+
|
|
101
|
+
## Delegation
|
|
102
|
+
|
|
103
|
+
Delegate to `agents/brain-query.md` for: 2+ graph hops, explicit connection exploration, cross-domain discovery, multi-venture patterns, deep proactive reasoning.
|
|
104
|
+
|
|
105
|
+
## Primary Tool: brain_ask
|
|
106
|
+
|
|
107
|
+
Always use `brain_ask` first -- natural language, auto-routes Pinecone/Neo4j, handles fallback. Only use `brain_query` (raw Cypher) for specific complex queries.
|
|
108
|
+
|
|
109
|
+
## Tool Names
|
|
110
|
+
|
|
111
|
+
| Surface | Smart | Neo4j | Pinecone | Schema |
|
|
112
|
+
|---------|-------|-------|----------|--------|
|
|
113
|
+
| mindrian-brain | brain_ask | brain_query | brain_search | brain_schema |
|
|
114
|
+
| neo4j-brain (legacy) | N/A | read_neo4j_cypher | search-records | get_neo4j_schema |
|