██████╗ ██╗ █████╗ ██╗ ██████╗
██╔══██╗ ██║ ██╔══██╗ ██║ ██╔══██╗
██████╔╝ ██║ ███████║ ██║ ██║ ██║
██╔═══╝ ██║ ██╔══██║ ██║ ██║ ██║
██║ ███████╗██║ ██║ ██║ ██████╔╝
╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═════╝
An agent skill that guides founders from idea to launched product through structured conversations and AI-powered document generation. PLAID combines the thinking of a product strategist, brand strategist, UX researcher, design director, technical architect, and go-to-market specialist into a single skill with three capabilities.
PLAID is a single skill with three capabilities, each handling a distinct phase of the product development pipeline:
| Capability | Trigger | What It Does | Output |
|---|---|---|---|
| Plan | "PLAID", "plan a product", "define my vision", "generate a PRD" | Vision intake conversation + document generation | vision.json, product-vision.md, prd.md, product-roadmap.md |
| Launch | "plaid launch", "go-to-market", "launch plan", "GTM strategy" | Go-to-market plan generation | gtm.md |
| Build | "plaid build", "build the app", "start building" | Executes roadmap phase by phase, reviews code, commits to git | Working code, git commits per phase |
Start here. PLAID Plan guides you through a structured vision intake conversation, then generates three product documents.
Vision Intake — An interactive conversation that captures your product idea through 8 sections:
- About You — Name, expertise, and background story
- Your Purpose — Who you help, the problem you solve, the transformation you deliver, and why you're the right person to build it
- Your Product — Name, one-liner, how it works, key capabilities, platform (web/mobile/desktop/cross-platform), differentiation, and magic moment
- Your Audience — Primary user persona, secondary users, current alternatives, and frustrations with existing solutions
- Business Intent — Revenue model, 90-day goals, 6-month vision, constraints, and go-to-market approach
- The Feeling — Brand personality, visual mood, tone of voice, and anti-patterns (what the product should never feel like)
- Tech Stack — Frontend, backend, database, auth, and payments choices with comparison data and recommendations
- Tooling — Which coding agent will execute the build
For each question, PLAID generates 3 tailored suggestions based on your previous answers. You can pick one, modify it, or write your own. All answers are saved to vision.json in the project root.
Document Generation — Reads vision.json and produces three documents in docs/:
| Document | Purpose | Audience |
|---|---|---|
product-vision.md |
Strategic foundation — vision, mission, brand, user research, product strategy, design direction | Founders, designers, stakeholders |
prd.md |
Technical specification — architecture, data models, API specs, user stories, requirements, design system, auth/payments setup | Coding agents, developers |
product-roadmap.md |
Phased build plan with checkbox-tracked tasks for sequential execution | Coding agents, project managers |
Generates your go-to-market playbook. Requires vision.json and docs/product-vision.md from the Plan capability.
| Document | Purpose | Audience |
|---|---|---|
gtm.md |
Go-to-market plan — launch strategy, pre-launch playbook, channel strategy, growth tactics, metrics | Founders, marketing |
Executes the roadmap phase by phase. Requires docs/product-roadmap.md and docs/prd.md from the Plan capability.
- Reads the roadmap and finds the first phase with incomplete tasks
- Builds each task in order, referencing the PRD for implementation details
- Marks tasks complete as it goes (
- [x]) - Reviews code after each phase for bugs and inconsistencies
- Commits to git after each phase
- Continues until all phases are complete
Each phase produces a working, demoable product.
PLAID is an AI agent skill. The quickest way to install it:
npx skills add BuildGreatProducts/plaidThis uses the skills CLI to install PLAID into your project automatically.
If you prefer to install manually:
- Open your Claude Code settings (either project-level
.claude/settings.jsonor user-level~/.claude/settings.json) - Add the path to the skill under the
skillsarray:
{
"skills": [
"/absolute/path/to/plaid/SKILL.md"
]
}Start a new conversation with your AI coding agent and trigger PLAID:
Plan: "PLAID", "Help me build something", "Plan a product", "Define my vision", "Generate a PRD", "Spec out my idea"
Launch: "plaid launch", "Go-to-market plan", "Launch strategy", "GTM"
Build: "plaid build", "Start building", "Execute the roadmap"
PLAID automatically routes to the right capability based on your request. No dependencies need to be installed — the skill is entirely documentation-driven.
First session — Vision Intake. PLAID opens with "What do you want to build?" and adapts based on how concrete your idea is. If you have a clear concept, it jumps into structured questions. If you're still exploring, it helps you narrow down before moving forward. At the end, you'll have a validated vision.json in your project root.
Second session — Document Generation. When PLAID detects a vision.json but missing docs, it generates the three product documents: product-vision.md, prd.md, and product-roadmap.md.
Go-to-market. Generate your launch playbook whenever you're ready. This can happen before or after building.
Building. Execute the roadmap. PLAID Build reads the roadmap, builds each phase, reviews the code, and commits. You get a working product at the end of each phase.
Resuming at any point. Each skill detects your current state automatically:
- Partial intake? Continues from the next unanswered question
- Missing docs? Generates only what's missing
- Mid-build? Shows progress and picks up from the first unchecked task
You can update your answers after the intake is complete:
- Change a single answer — Tell PLAID what you want to change. It updates
vision.jsonand flags which documents need regeneration. - Regenerate docs — Ask PLAID to regenerate specific documents. It re-reads
vision.jsonand rebuilds from the source of truth.
plaid/
├── SKILL.md # Router — routes to capability files
├── references/ # Capability files + detailed guides
│ ├── plan.md # Vision intake + 3-doc generation
│ ├── launch.md # Go-to-market plan generation
│ ├── build.md # Roadmap execution + git commits
│ ├── INTAKE-GUIDE.md # Full question bank with suggestion prompts
│ ├── VISION-SCHEMA.md # TypeScript schema, field rules, examples
│ ├── VISION-GENERATION.md # How product-vision.md is generated
│ ├── PRD-GENERATION.md # How prd.md is generated
│ ├── ROADMAP-GENERATION.md # How product-roadmap.md is generated
│ ├── GTM-GENERATION.md # How gtm.md is generated
│ └── TECH-STACK-OPTIONS.md # Comparison data for stack recommendations
├── scripts/
│ └── validate-vision.js # Schema validator and migrator
├── assets/
│ └── vision-template.json # Empty template for new vision files
├── README.md # This file
├── package.json # npm metadata and validate script
└── LICENSE.txt # MIT license
The references/ directory contains capability files and detailed guides. You don't need to read these to use PLAID, but they're useful if you want to understand or customize how documents are generated.
The included validator checks that vision.json conforms to the expected schema:
# Validate (read-only)
node scripts/validate-vision.js
# Validate a specific file
node scripts/validate-vision.js path/to/vision.json
# Validate and migrate older schema versions
node scripts/validate-vision.js --migrateOr via npm:
npm run validateOutput is JSON:
{
"valid": true,
"errors": [],
"warnings": ["audience.secondaryUsers is empty"],
"migrated": false,
"migrationsApplied": []
}The validator uses only built-in Node.js modules and has zero external dependencies. Node.js 14 or later is required.
PLAID recommends specific stacks based on your platform and needs, but respects whatever you choose. The defaults lean toward:
- Web: Next.js + Convex + Clerk + Polar
- Mobile: Expo (React Native) + Convex + Convex Auth + RevenueCat
- Desktop: Electron + Convex + Clerk
Full comparison data for all supported options (including Remix, SvelteKit, Flutter, Supabase, Stripe, and more) is available in references/TECH-STACK-OPTIONS.md.
MIT — see LICENSE.txt.