Use with Claude Code
Claude Code is Anthropic's terminal-based AI coding agent. Your VisualPRD export is structured specifically to work with it.
1. Export your blueprint
From the schematic viewer, click Export Build Instructions. This downloads a ZIP containing:
CLAUDE.md— the master context file Claude Code reads on startup- One
build.mdper flow - Architecture overview and data models
- Test scripts per flow
2. Drop CLAUDE.md into your project root
Create a new folder for your project, drop in the exported CLAUDE.md, and open Claude Code:
mkdir my-app && cd my-app cp ~/Downloads/export/CLAUDE.md . claude
→ TipClaude Code reads
CLAUDE.md automatically on every session. It sets the rules, architecture, and constraints for everything it builds.3. Build flow by flow
Each build.md is a self-contained instruction set for one flow. Give Claude Code one at a time:
# In Claude Code: > Read flow-01-auth/build.md and build this flow
§ NoteBuild flows in the order listed in your export. Foundation flows (auth, database schema) must come before feature flows that depend on them.