When you want several methodologies chained instead of run one-by-one,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.
/mos:pipeline executes a multi-step pipeline with the room as the connecting tissue. It Brain-derives the framework sequence, composes it into resolver-verified /mos: commands, and runs the autonomous steps unattended — stopping only where human judgment is genuinely required. The Week 7 pattern for serious venture work.
Usage
| Alias | Canonical token |
|---|---|
undefined | UDP |
ill-defined | IDP |
well-defined | WDP |
Entry modes
room/STATE.md and recommends:
- Discovery pipeline for Pre-Opportunity or Discovery stage
- Thesis pipeline for Design or Investment stage
What happens
Chain composition
The helper script calls
recommendFrameworkChain (a FEEDS_INTO traversal — framework names and problem-type enums only, never command strings or user content), then composes the result into /mos: commands via composeWorkflow reading only the local data/command-registry.json. The resolved run order is printed before execution begins.Resume check
Before Stage 1,
reconcileResume(roomDir) reads room/.mindrian/pipeline-state.json — the sole chain-state source of truth. If a prior run exists, Larry offers: “I see you’ve already completed Stage N of the [chain] pipeline. Want to continue from Stage N+1? Or start fresh?”Stage execution loop
For each stage: read the stage contract, extract structured input from the previous stage’s artifact, run the methodology command with that context pre-loaded, stamp the artifact with pipeline provenance metadata, then pause or continue per the autonomy gate.
Autonomy gate
Steps marked
autonomous_safe: true run unattended. Non-safe steps pause with a “needs you here” gate — Larry explains why human judgment is required at this point before proceeding.The autonomy gate
The autonomy gate is Canon Part 3’s “human confirms” clause made literal.
/mos:act --chain runs the autonomous_safe prefix unattended and stops at the first non-safe step. /mos:pipeline does the same inside its stage loop — every stop is a deliberate judgment checkpoint, not a limitation.Command-less framework steps
If a framework in the chain has no corresponding/mos: command, the resolver prints:
Tier 0 behavior (no Brain)
When Brain MCP is not connected, the--from-problem-type and --from-framework helpers fall back to the local data/command-registry.json. The resolver still produces a valid command sequence — framework-only advice degrades gracefully through the same resolver path, never fabricating a command.
Standard chains
These chains are defined in the plugin’s pipeline architecture and available as named pipelines. Each arrow represents aFEEDS_INTO relationship where the left stage’s output becomes the right stage’s structured input.
| Chain | Stages | Best for |
|---|---|---|
| A — Problem-to-Thesis | Domain Explorer → Bono → JTBD → Minto → DA → Investment | Well-defined problems ready for thesis framing |
| B — Discovery-to-Validation | HSI → Domain Explorer → Validation → Minto | Testing early hypotheses against market signals |
| C — System Analysis | Domain Explorer → Reverse Salient → JTBD → Bono → Minto | Wicked or ill-defined systemic problems |
| D — Full Venture | Domain Explorer → HSI → Bono → JTBD → Scenario → Minto → DA → Investment | Complete venture build from landscape to thesis |
Pipeline chaining rules
The structured handoffs between stages — what each stage’s output becomes as the next stage’s input:| From | Output | To | Becomes |
|---|---|---|---|
| Domain Explorer | Sub-domains | Bono | Hats (one per perspective) |
| Domain Explorer | Sub-domains | JTBD | Personas (one per stakeholder) |
| Domain Explorer | Sub-domains | Scenario | Uncertainty axes |
| Bono | Hat insights | JTBD | Context per persona |
| Bono | Hat insights | Minto | Evidence for the pyramid |
| JTBD | Unmet jobs | Minto | SCQA complication |
| JTBD | Unmet jobs | Devil’s Advocate | Assumptions to test |
| Minto | Thesis | Devil’s Advocate | Target for destruction |
| Minto | Thesis | Investment Thesis | Core thesis |
| Devil’s Advocate | Survivors | Investment Thesis | Validated evidence |
| HSI | Bridges | Domain Explorer | New domains to map |
| Reverse Salient | Bottlenecks | Minto | Complication framing |
Output / Artifacts
Each stage creates its own artifact — the pipeline is additive, never destructive. Artifacts are stamped with pipeline provenance in their YAML frontmatter:pipeline and pipeline_stage fields serve as the secondary confirming index for resume. The authoritative chain state lives in room/.mindrian/pipeline-state.json.
Example
Related commands
/mos:suggest-next
Get a ranked recommendation before committing to a full pipeline run.
/mos:grade
Score the room after the pipeline completes to measure what changed.
/mos:status
Check which sections are populated and healthy before choosing a chain.
/mos:graph
Inspect the FEEDS_INTO relationships that drive Brain-derived chain selection.