Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/jsagir/mindrian-os-plugin/llms.txt

Use this file to discover all available pages before exploring further.

When you are starting a new venture, /mos:new-project creates the room scaffolding and registers it in the room registry — the first move of every Mindrian journey. It creates the folder structure, initializes the SQLite knowledge graph, and seeds initial entries from anything you shared in the conversation. In most cases you will not invoke this directly — /mos:ignite calls it for you after the B2 blueprint approval gate. Direct invocation still works, and the full conversation-to-room flow is preserved either way.
/mos:ignite is the recommended front door. It adds the persona-pick gate (B1), the blueprint approval gate (B2), and the first-win gate (B3) on top of what /mos:new-project does alone. Use /mos:new-project directly when you need the scaffold backend without the birth conversation.

What Gets Created

A new room is created at ~/MindrianRooms/<slug>/ with eight standard sections aligned to due-diligence stages:
~/MindrianRooms/<slug>/
  problem-definition/
  market-analysis/
  solution-design/
  business-model/
  competitive-analysis/
  team-execution/
  legal-ip/
  financial-model/
  team/
  assets/
  .intelligence/
  .snapshots/
  USER.md
  STATE.md
Each section gets a ROOM.md that carries the section’s purpose, venture-stage relevance, and starter questions tailored to what you shared in the conversation. Sections where no content was discussed are created empty — no placeholder entries are invented.

The SQLite Knowledge Graph

The room’s SQLite knowledge graph (room.db) is initialized as part of room creation. This is the local mind that powers contradiction detection, cross-section connection finding, and evidence tiering. Every claim you make and every decision you record lands here as a typed edge.

Room Registration

After the folder is created, the room is registered in the global registry at ~/MindrianRooms/.rooms/registry.json. The new room is set as the active room automatically, and the previous active room is parked.

Fast Paths

Two flags skip the exploration conversation and jump directly to the blueprint gate:
FlagWhat it does
--expressUse current session context as blueprint input
--from-brief <sha8>Read an MVA brief from a prior session and use it as blueprint input
Both flags preserve the B2 blueprint approval gate — nothing is created until you approve the blueprint.

Usage

# Start a new room with a guided conversation
/mos:new-project
# Name the room directly
/mos:new-project my-startup-idea
# Skip the conversation, use current context
/mos:new-project --express
If you already have rooms in ~/MindrianRooms/, the command will tell you how many exist and create the new one alongside them. Rooms never collide.

Build docs developers (and LLMs) love