Skip to content

Installation

The fastest install is the one you don’t do yourself.

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.

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:

Terminal window
# 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.mdx

Or install it globally:

Terminal window
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.mdx

Either 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.

Download the example plan, or use any plan your agent has written:

Terminal window
# 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.mdx

Open plan.html in your browser, and you should see this:

The example plan rendered in the Big Plan viewer, with section navigation, a comparison table, and themed reading column.

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