Transform any app idea into working code through 5 AI-powered stages using the latest 2025 AI models:
| # | Stage | Goal | Output |
|---|---|---|---|
| 1οΈβ£ | Research | Validate market & tech landscape | Research findings |
| 2οΈβ£ | Define | Clarify product scope | PRD (Product Requirements) |
| 3οΈβ£ | Design | Decide how to build | Technical Design doc |
| 4οΈβ£ | Generate AI Agent Instructions | Convert docs into agent blueprints | AGENTS.md + tool-specific config files |
| 5οΈβ£ | Build | Generate & test code | Working MVP |
Skip the manual copy-pasting!
We now have an interactive web app that automates the entire process for you.
β‘ Manual Workflow Guide (The Classic Way)
| Step | What You Do | Time | Result |
|---|---|---|---|
| π | Copy prompts β Answer questions | 20 min | Research doc |
| π | Define your app idea | 15 min | PRD doc |
| ποΈ | Choose technical approach | 15 min | Tech Design doc |
| π€ | Generate AI instructions | 10 min | AGENTS.md + agent config |
| π» | Tell the AI agent: "Read AGENTS.md and build the MVP" | 1-3 hrs | Working MVP! |
π€ AI Platform (Required - Choose One)
- AI Studio β - Gemini 3 Pro free tier with the full 1,048,576-token context (see model details)
- Claude.ai - Claude Sonnet 4.5 with 200K default / 1M beta context (see current versions)
- ChatGPT - ChatGPT 5.1 via the Responses interface (see OpenAI docs)
- Claude Pro - Sonnet 4.5 with higher rate limits and 1M-token projects (pricing)
- Gemini Advanced - Gemini 3 Pro/Flash Ultra access with priority throughput (pricing)
- ChatGPT Plus - ChatGPT 5.1 with higher allocations (pricing)
π» AI Coding Agent/IDE (Required - Choose One)
- Claude Code β - Project-aware CLI with session memory.
curl -fsSL https://claude.ai/install.sh | bash claude init # Generates CLAUDE.md; import AGENTS.md via @AGENTS.md
- Gemini CLI - Free & open source with Gemini 3 Pro.
npm install -g @google/gemini-cli gemini login # Uses GEMINI.md; import AGENTS.md via @AGENTS.md - Aider - CLI tool, requires explicit context loading.
python -m pip install aider-install aider --read AGENTS.md
- GitHub Copilot CLI - Terminal interface for Copilot.
npm install -g @github/copilot copilot --context AGENTS.md
- OpenAI Codex CLI - An open-source, terminal-based coding agent (TUI) that can read, edit, and run code in your repo. (docs)
npm i -g @openai/codex codex exec "Summarize AGENTS.md"
- Jules by Google β - Vertex AI-connected async agent.
- GitHub Copilot Agent - VS Code extension; enable
chat.useAgentsMdFileto read AGENTS.md.
- Cursor β - AI editor that automatically reads
AGENTS.md. - Windsurf β - IDE by Codeium; reads
AGENTS.mdand.windsurf/rules. - Cline - VS Code extension; reads
AGENTS.mdand.clinerules. - Google Antigravity - Agent-first IDE; manually add
AGENTS.mdcontent to Knowledge Base.
- Bolt.new β - Instant Next.js/Supabase apps.
- Lovable - Fullstack builder; add
AGENTS.mdto "Custom Knowledge". - v0 by Vercel - UI composition; add
AGENTS.mdto "Project Instructions".
π Basic Requirements
- Any modern browser
- 2-4 hours of time
- Basic computer skills (no coding required!)
- Optional: Node.js 22+ for terminal tools
Validate your idea with AI-powered market research β’ 20-30 min β’ Creates research-*.txt
What this does: Analyzes market opportunity, competitors, and technical feasibility using the latest AI models.
How it works:
- Copy the entire
part1-deepresearch.mdfile - Paste into AI Studio (for Gemini 3 Pro), Claude.ai (for Claude Sonnet 4.5), or ChatGPT (for ChatGPT 5.1)
- Answer 5-6 questions tailored to your experience level
- AI generates comprehensive research with:
- Market analysis & size
- Competitor breakdown
- Technical recommendations
- Cost estimates
- Save output as
research-[YourAppName].txt
π‘ Pro Tip: Use Gemini 3 Pro for better research (1,048,576-token context window).
Define exactly what you're building β’ 15-20 min β’ Creates PRD-*.md
What this does: Transforms your idea into clear, actionable product specifications.
How it works:
- Copy
part2-prd-mvp.mdinto a new AI chat - Attach your research findings when prompted
- Answer questions about:
- Core features (3-5 must-haves)
- Target users
- Success metrics
- UI/UX vision
- AI creates professional PRD document
- Save as
PRD-[YourAppName]-MVP.md
Plan the technical architecture β’ 15-20 min β’ Creates TechDesign-*.md
What this does: Decides the best tech stack and implementation approach for 2025.
How it works:
- Copy
part3-tech-design-mvp.mdinto a new AI chat - Attach your PRD (required) and research (optional)
- Answer questions about:
- Platform (web/mobile/desktop)
- Complexity tolerance
- Budget constraints
- Timeline
- AI recommends optimal stack from:
- No-code: Bolt.new, Lovable, Bubble
- Low-code: Next.js + Supabase
- Full-code: Your preferred framework
- Save as
TechDesign-[YourAppName]-MVP.md
Create blueprints for your AI coding assistant β’ 5-10 min β’ Creates AGENTS.md + agent configs
What this does: Converts all docs into step-by-step coding instructions for AI agents.
How it works:
- Copy
part4-notes-for-agent.mdinto a new AI chat - Attach PRD and Technical Design documents
- AI generates:
AGENTS.md- Universal instructions- Tool-specific configs (based on your choice):
CLAUDE.mdfor Claude CodeGEMINI.mdfor Gemini CLI & Antigravity.aider.conf.ymlfor Aider.clinerulesfor Cline.cursorrulesfor Cursor.windsurfrulesfor Windsurf
- Save all files in your project root
Let AI build your MVP β’ 1-3 hrs β’ Creates working application
Terminal Agents (Claude Code, Gemini CLI)
# Claude Code
npm install -g @anthropic-ai/claude-code
cd your-project
claude init
# Add CLAUDE.md to project root
claude "Read CLAUDE.md and AGENTS.md, then build the MVP"
# Gemini CLI
npm install -g @google-gemini/cli
gemini login
# Add GEMINI.md to project root
gemini "Read GEMINI.md and AGENTS.md, then implement"IDE Tools (Cursor, Windsurf)
- Open your project folder in the IDE
- Add configuration file:
- Cursor:
.cursorrulesor.cursor/rules.mdc - Windsurf:
.windsurfrules
- Cursor:
- Start with: "Read AGENTS.md and build the MVP step by step"
No-Code Platforms (Bolt.new, Lovable)
- Go to platform website
- Paste your PRD content
- Say: "Build this MVP following the specifications"
- Deploy instantly with one click
Starting prompts by experience level:
| Level | First Prompt |
|---|---|
| Beginner | "I'm new to coding. Read AGENTS.md and guide me step-by-step to build this MVP. Explain what you're doing." |
| Intermediate | "Read AGENTS.md and the docs folder. Build the core features first, test, then add polish." |
| Developer | "Review AGENTS.md and architecture. Implement Phase 1 with proper patterns and test coverage." |
Follow-up prompts for all levels:
- "Show me the current progress vs requirements"
- "Test [feature] and fix any issues"
- "Add error handling and edge cases"
- "Generate README with setup instructions"
- "Prepare for deployment to [platform]"
your-app/
βββ docs/
β βββ research-YourApp.txt
β βββ PRD-YourApp-MVP.md
β βββ TechDesign-YourApp-MVP.md
βββ AGENTS.md # Universal AI instructions
βββ CLAUDE.md # Claude Code config (if using)
βββ GEMINI.md # Gemini CLI config (if using)
βββ GEMINI.md # Antigravity config (if using)
βββ .aider.conf.yml # Aider config (if using)
βββ .clinerules # Cline config (if using)
βββ .cursorrules # Cursor config (if using)
βββ .windsurfrules # Windsurf config (if using)
βββ README.md # Setup instructions (AI-generated)
βββ .env.example # Environment variables
βββ src/ # Your application code
Latest AI Models & Capabilities
- Claude Sonnet 4.5 β September 2025 release with 200K default / 1M beta context and top-tier architecture reasoning
- Claude Opus (2025 snapshot) β Handles massive monorepos and multi-hour planning sessions with improved tool use
- Gemini 3 Pro β 1,048,576-token input and 65,536-token output windows for deep research and synthesis
- ChatGPT 5.1 β Responses API with adjustable reasoning effort, faster tool orchestration, and lower latency
- Claude Code - Anthropic's project-aware terminal agent with session memory and automated test orchestration
- Jules - Google's asynchronous coding agent that can work independently across Vertex AI projects
- Gemini CLI - Open-source CLI with direct Gemini 3 Pro/Flash access, live context streaming, and MCP integrations
- GitHub Copilot Agent Mode - Workspace automation for scoped plans, PRs, and deployment checklists
- OpenAI CLI (Responses API) - Terminal workflow for ChatGPT 5.1 tool-calling pipelines
- Cursor - Version 2.1 adds improved plan mode, AI code reviews, and instant grep.
- Windsurf - Now supports
AGENTS.mdautomatically for project context. - Cline - Manages context in three layers (immediate, project, persistent) with auto-truncation.
- GitHub Copilot CLI - Version 0.0.365 adds
--silentoption for cleaner output. - Bolt.new - Instant Next.js/Supabase deployments with scheduled automations.
- Lovable - "Custom Knowledge" tab for project-wide context.
Tool Selection Guide
| Persona | Best Tool Stack | Why it fits | What to watch | Setup time |
|---|---|---|---|---|
| Complete beginner | Lovable β’ Bolt.new | Paste your idea, get a hosted app. Use "Custom Knowledge" for guidelines. | Daily credit caps; hosted code. | 2β5 min |
| Learning hobbyist | Copilot Agent β’ Cline | Copilot edits files; Cline manages context layers for you. | Copilot requires subscription; Cline needs API key. | 5β10 min |
| Experienced developer | Cursor β’ Windsurf | Cursor 2.1 has instant grep; Windsurf reads AGENTS.md automatically. | Usage-based credits; new IDE workflows. | 5β10 min |
| Budget-limited builder | Cline β’ Gemini CLI | Free to install; Gemini CLI uses free tier API. | Less hand-holding; requires more prompting. | 5β10 min |
| Need-it-today founder | Lovable β’ v0 | Fastest path to MVP. Use "Project Instructions" for v0 context. | Watch credit burn; plan for security review. | 2β5 min |
| Mobile-first product team | v0 β’ Flutter + Gemini | v0 sketches mobile UI; Gemini CLI helps with native code. | Mobile features are evolving. | 45β60 min |
| Complex logic engineer | Claude Code β’ Windsurf | Claude Code has session memory; Windsurf handles deep context. | Claude Code is CLI-based. | 10β15 min |
| Security/compliance lead | Cline (client-side) | All code stays local; persistent context is managed locally. | You define the policy. | 10β20 min |
| Offline/privacy-focused dev | Gemini CLI β’ Cline | Works with local models (Ollama) or private keys. | Offline mode depends on hardware. | 10β30 min |
| Open-source maintainer | Cline β’ Aider | Aider explicitly reads AGENTS.md; Cline merges rule files. | Terminal-first or VS Code extension. | 5β10 min |
Quick Picks (Plain English)
- Need an MVP tonight? Use Lovable or Bolt.new, then plan a follow-up pass for polish and security.
- Working inside an editor? Cursor or Copilot Agent can code for youβopen Cline when you want to double-check every change.
- Huge legacy repo? Bring in Claude Code or Windsurf so the agent βremembersβ more of your code at once.
- No budget? Stick with Cline + Gemini CLI and the generous free request limits.
- Mobile-first? Preview flows in v0 Mobile or build native screens with Flutter + Geminiβs suggestions.
Pricing Guardrails (Nov 2025)
- Free forever: Gemini Code Assist (6K code reqs/day), Copilot Free (2K completions + 50 chats), Windsurf Free (25 prompts).
- Best under $20: Windsurf Pro $15/mo (500 credits), Copilot Pro $10/mo (Agent Mode), Cursor Pro $20/mo (credit pool + parallel agents).
- Power tiers: Copilot Pro+ $39/mo (1.5K premium calls), Cursor Ultra $200/mo (20Γ credits), Bolt Pro 200 $200/mo (120M tokens).
MCP Watch
- Model Context Protocol (MCP) is a shared standard that lets your AI talk to extra tools (think CI pipelines, databases, ticket queues).
- Cline, Cursor, Claude Code, and Gemini CLI all plug into MCP, but treat those connections like production credentials.
Caution Flags
- Claude consumer accounts now offer opt-in data sharing; stick to org workspaces or API keys for sensitive repos.
- Replit Agent 3 can run 200-minute autonomous loopsβenable guardrails so retries cannot nuke production data.
When Not to Use These Tools
- Native mobile or hardware builds: prefer Flutter + traditional toolchains with AI pairing.
- Regulated workloads needing SOC2/FedRAMP/HIPAA: lean on Copilot Enterprise, Cline with strict policies, or self-hosted stacks.
- Safety-critical or real-time systems: require deterministic, human-led engineering.
- Fundamentals practice: hand-code portions to avoid skipping core concepts.
Common Pitfalls & Solutions
| β Pitfall | β Solution |
|---|---|
| Skipping discovery work | Run the Part I research prompt first so the PRD and tech design arenβt guesses |
| Letting agents ship code alone | Ask agents to show their plan, review the diff, and run tests before anything merges |
| Sticker-shock bills | Check credit dashboards weekly and keep a backup stack (Cline + Gemini) that stays free |
| Publishing auto-generated UIs without checks | Test accessibility, security, and performance before launch day |
| Building sensitive apps with personal accounts | Use business plans or API workspaces, switch off data sharing, and keep secrets in vaults |
| Forcing one tool to do everything | Mix and match (IDE + terminal + builder) so each tool covers what it does best |
Quick Fixes for Common Issues
| Problem | Solution |
|---|---|
| "AI ignores my documents" | Start with: "First read AGENTS.md, PRD, and TechDesign. Summarize key requirements before coding." |
| "Code doesn't match PRD" | Say: "Re-read the PRD section on [feature], list acceptance criteria, then refactor accordingly." |
| "AI is overcomplicating" | Add to config: "Prioritize MVP scope. Offer the simplest working implementation before optimizations." |
| "Lost track of progress" | Ask: "Update the AGENTS.md progress log and map remaining tasks to implementation phases." |
| "Deployment failing" | Request: "Walk through deployment checklist, verify env vars, then run the platform-specific health command." |
PRs & issues welcome! Help us improve:
- π Report issues with prompts
- π‘ Share your success stories
- π§ Add new tool configurations
- π Submit example MVPs built with this workflow
Released under the MIT License.
The best time to build your idea was yesterday.
The second best time is now. π
Last updated: November 2025 | Created by the vibe-coding community