Build Plan
A Build Plan is what Bridge produces when you tap "Start a venture" on a constellation: a portable, markdown-only spec set that any coding agent can read and implement against.
What triggers a Build Plan
The trigger is the Start a venture button — on a note's detail screen, on a constellation popup in the graph, or in the Plan tab. It opens the venture picker, where the source notes come pre-checked and you can add or remove notes before generating. Tap Build Plan in the picker to run.
Bridge gathers context (the notes you selected, their expansions, the constellation theme, your user-behavior memory) and runs the generator. Within about a minute, a plan artifact lands in the Plan tab.
The output
Bridge generates a spec set — markdown files designed to be agent-readable and human-readable. Each file has a strict purpose and a tight size budget so the whole set fits inside any modern coding agent's context window.
See Build Plan output files for the file-by-file breakdown.
Plus one CLI overlay file at the project root — AGENTS.md — that points your coding agent at the spec set in the right reading order.
The Plan page
Every Build Plan run lands in the Plan tab. Each artifact shows:
- Which note triggered it.
- When it was generated.
- The files, viewable in-app.
- Download options: zip, share sheet, shareable link (post-launch).
You can regenerate a plan at any time. Start a venture from the same note again — the new plan uses your current context (latest notes, latest expansions). The old version stays in the Plan tab archive so you can choose which to use.
How the agent reads it
When you drop the plan files into your project directory (or pipe them to your terminal), the AGENTS.md overlay at the project root tells your coding agent the reading order:
00_index.mdorients the agent07_scope.mdcaptures the constraints early01_brief.mdprovides what and why03_architecture.mdsets stack and structure04_data_model.mddefines pre-named structures05_tasks.mdis the work checklist
06_acceptance.md is consulted for "done" criteria. 02_user_flow.md is consulted for the demonstrable end-to-end flow.
05_tasks.md is agent-maintained — the agent updates it as work progresses, marking each task done and adding a one-line deviation note if implementation diverged. The plan files themselves become the status; Bridge doesn't track it externally.
How chat interacts with a plan
On the Refine tier, chat can read AND write plan files. When you scope a chat to a plan, the AI can propose edits that you see as inline diffs. You approve each diff, and the change writes through to the plan file.
See Chat for the chat-with-plan workflow.
Tier gating
Build Plan generation is a Build tier feature. The Refine tier adds plan-editing chat. Discover tier and Free tier can read plans you've already generated (when shared) but can't generate new ones.
See Tier comparison.
Next
- See Build Plan output files for the eight files + overlay in detail.
- See Sharing a plan for download, share, and terminal-pipe workflows.
- See Refining a plan for the Refine-tier editing workflow.