When you finish a step and want Larry to recommend the next move,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:suggest-next reads the room graph and proposes 3–5 options with reasons. This is the Navigation Engine made visible — the same signal that guides Larry’s suggestions throughout every session, surfaced as a transparent ranked list you can act on directly.
Usage
What happens
Read room state
Larry reads
room/STATE.md for the active ProblemType, active JTBD, and the methodology sections that already exist. This is the input to the recommendation engine — not memory, not a guess.Run the command resolver
The helper script reads the room state and calls
lib/brain/chain-recommender.cjs recommendFrameworkChain — a FEEDS_INTO traversal through the Brain’s framework graph. It then composes that chain into actual /mos: commands via lib/workflow/command-resolver.cjs composeWorkflow, reading only the local data/command-registry.json.Query Brain for co-occurrence patterns (Brain mode only)
When Brain MCP is connected, Larry additionally queries
brain_find_patterns to surface frameworks that commonly co-occur with the current set — drawing on real venture patterns across 100+ projects.Synthesize and rank
Recommendations are ranked by confidence score from the framework chain, problem-type alignment, and co-occurrence patterns. Each recommendation names the framework AND the resolved
/mos: command.The resolver guarantee
If a framework in the recommended chain has no corresponding/mos: command yet, the resolver renders it as:
Outputs
- Top-3 next-move commands, ranked with confidence scores and relationship types from the FEEDS_INTO graph (e.g., “Explore Domains FEEDS_INTO Analyze Needs with 0.85 confidence”)
- Accept / defer / reject / none-fit affordances — the F.1 selector closes every response
- Decision capture: each accepted or rejected suggestion is recorded as a
memory_eventand a typed cascade edge in the room graph (DEFERREDorREJECTED), so the pattern becomes part of your venture’s decision history
Tier 0 behavior (no Brain)
When Brain MCP is not connected, the resolver still produces a valid command sequence from the localdata/command-registry.json. Framework-only advice degrades gracefully — the output is still resolver-composed, still true, still actionable. The deeper co-occurrence narrative and confidence scores from the live graph are skipped; the command sequence stands.
When the room is empty
If no frameworks have been applied yet, Brain queries are skipped — there’s no input signal to traverse from. Larry recommends the standard starting points instead:Example
room/STATE.md (ProblemType: ill-defined, active JTBD: IT integration bottleneck), traverses the FEEDS_INTO graph, and returns:
Related commands
/mos:pipeline
Run the full recommended chain end-to-end instead of step by step.
/mos:grade
Score the room first — a low component score sharpens what suggest-next recommends.
/mos:status
See the room’s current health before deciding which direction to move.
/mos:graph
Inspect the FEEDS_INTO graph that drives suggest-next’s recommendations directly.