Deep-Linking & Session URLs
The Brainstorm Reactor supports URL-driven session initialization. By appending standard query parameters to the application URL, you can pre-load specific thinking recipes, pre-populate prompt input fields, force direct mode, or guarantee an isolated initial state.
This is ideal for bookmarking recurring workflows, sharing interactive prompts with colleagues, embedding links in team dashboards (Notion, Obsidian, Slack), or conducting guided workshops.
Supported URL Parameters
| Parameter | Function | Value Example |
|---|---|---|
recipe | Activates a specific multi-step recipe | recipe=rcp_swot_swarm_v1 |
q | Pre-fills the primary input field | q=Evaluate+our+pricing+model |
ignite | Forces an isolated clean session (bypasses local cache) | ignite=true |
mode | Forces execution into Direct Mode | mode=direct |
1. Parameter Breakdown
recipe (Select Workflow)
Pre-selects an automated multi-step recipe from the cognitive library and opens the workspace directly in Workflow Mode.
https://brainstormreactor.com/reactor?recipe=rcp_swot_swarm_v1Common Recipe Keys:
rcp_swot_swarm_v1— Enterprise SWOT Swarm (Multi-Model)rcp_triz_aletheia_loop_v1— TRIZ Aletheia Conflict Solverrcp_sixami_matchmaking_v1— sixami Matchmaker & Strategic Fitrcp_chain_of_density_v1— Chain of Density Synthesis
q (Pre-Fill Prompt Input)
Pre-populates the central input container with a specific briefing, question, or text template. Spaces must be encoded as + or %20.
https://brainstormreactor.com/reactor?q=Analyze+the+competitive+landscape+of+B2B+fintechignite=true (Clean State Initialization)
Guarantees that the session starts from a fresh, isolated state. If a user previously worked on the same recipe with a cached draft, ignite=true clears stale input buffers and mounts a clean workspace.
https://brainstormreactor.com/reactor?recipe=rcp_swot_swarm_v1&ignite=true[!NOTE] For security and clean navigation, the
igniteflag is automatically cleared from the browser address bar after mounting (window.history.replaceState), preventing unwanted resets on manual page reloads.
mode=direct (Direct Mode Enforcement)
Forces the engine directly into Direct Mode (single-step rapid ideation), bypassing the recipe stepper.
https://brainstormreactor.com/reactor?mode=direct&q=Summarize+the+following+thesis2. Practical Examples for Teams & Creators
Strategy Review Link
Share a ready-to-use SWOT analysis template with pre-filled context:
https://brainstormreactor.com/reactor?recipe=rcp_swot_swarm_v1&ignite=true&q=Audit+our+Q3+distribution+strategyDirect Mode Quick-Start
Bookmark a fast prompt sandbox in your browser toolbar:
https://brainstormreactor.com/reactor?mode=direct&ignite=trueWorkshop Exercise Distribution
Distribute clean workshop templates to participants without risk of cross-pollinated session states:
https://brainstormreactor.com/reactor?recipe=rcp_triz_aletheia_loop_v1&ignite=trueRelated Documentation
- Direct Mode — Fast single-turn execution
- Core Interface & The Pool — Managing session context
- Recipe Builder — Constructing custom multi-step pipelines