Installation
The fastest install is the one you don’t do yourself.
Give this to your coding agent
Section titled “Give this to your coding agent”Copy this prompt into your agent:
Set up Big Plan for me: read https://bigplan.dev/setup.md and follow it.The agent reads the server-controlled setup guide at https://bigplan.dev/setup.md, uses the current CLI without installing it, can install the thin skill shell, adopts the plan-review workflow, and adds the rule to your project’s agent instructions so every future session keeps it.
Authoring principles stay in big-plan guidance, so package upgrades refresh them without hand-editing skill files.
Or install it yourself
Section titled “Or install it yourself”Big Plan needs Node.js 22 or newer; the published package runs under plain Node.js, so Bun is not required.
Run it with no install at all:
# Read how to write a plan humans love to review.npx -y big-plan@latest guidance# Turn plan.mdx into a self-contained plan.html review document.npx -y big-plan@latest render plan.mdxOr install it globally:
npm install -g big-plan@latest# Read how to write a plan humans love to review.big-plan guidance# Turn plan.mdx into a self-contained plan.html review document.big-plan render plan.mdxEither way, render writes plan.html next to the input.
Pass a second argument to choose the output path: big-plan render plan.mdx reviews/plan.html.
Reading guidance first is required; it unlocks render for the working directory.
Render your first plan
Section titled “Render your first plan”Download the example plan, or use any plan your agent has written:
# Download a complete example plan.curl -o plan.mdx https://bigplan.dev/demo/example-plan.md# Read how to write a plan humans love to review.npx -y big-plan@latest guidance# Turn the example into a self-contained plan.html review document.npx -y big-plan@latest render plan.mdxOpen plan.html in your browser, and you should see this:

The output is one self-contained HTML file with embedded assets, no external requests, and a complete reading experience when scripts are disabled.