Skip to content

Commit 258a315

Browse files
committed
Update AI model references to reflect latest versions: Gemini 3 Pro and ChatGPT 5.1
1 parent 7f7014e commit 258a315

File tree

5 files changed

+37
-37
lines changed

5 files changed

+37
-37
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ Transform any app idea into working code through 5 AI-powered stages using the l
4949
<summary><b>🤖 AI Platform (Required - Choose One)</b></summary>
5050

5151
### Best Free Options
52-
- **[AI Studio](https://aistudio.google.com)** ⭐ - Gemini 2.5 Pro free tier with the full 1,048,576-token context ([see model details](https://ai.google.dev/gemini-api/docs))
52+
- **[AI Studio](https://aistudio.google.com)** ⭐ - Gemini 3 Pro free tier with the full 1,048,576-token context ([see model details](https://ai.google.dev/gemini-api/docs))
5353
- **[Claude.ai](https://claude.ai)** - Claude Sonnet 4.5 with 200K default / 1M beta context ([see current versions](https://docs.anthropic.com))
54-
- **[ChatGPT](https://chat.openai.com)** - GPT-5 via the Responses interface ([see OpenAI docs](https://developers.openai.com))
54+
- **[ChatGPT](https://chat.openai.com)** - ChatGPT 5.1 via the Responses interface ([see OpenAI docs](https://developers.openai.com))
5555

5656
### Premium Options (Better for Complete Apps)
5757
- **[Claude Pro](https://claude.ai)** - Sonnet 4.5 with higher rate limits and 1M-token projects ([pricing](https://claude.ai))
58-
- **[Gemini Advanced](https://gemini.google.com)** - Gemini 2.5 Pro/Flash Ultra access with priority throughput ([pricing](https://gemini.google.com))
59-
- **[ChatGPT Plus](https://chat.openai.com)** - GPT-5 and o-series reasoning models with higher allocations ([pricing](https://openai.com/chatgpt))
58+
- **[Gemini Advanced](https://gemini.google.com)** - Gemini 3 Pro/Flash Ultra access with priority throughput ([pricing](https://gemini.google.com))
59+
- **[ChatGPT Plus](https://chat.openai.com)** - ChatGPT 5.1 with higher allocations ([pricing](https://openai.com/chatgpt))
6060

6161
</details>
6262

@@ -69,15 +69,15 @@ Transform any app idea into working code through 5 AI-powered stages using the l
6969
npm install -g @anthropic-ai/claude-code
7070
claude init # In your project directory
7171
```
72-
- **[Gemini CLI](https://github.com/google-gemini/gemini-cli)** - Free & open source with Gemini 2.5 streaming context ([docs](https://ai.google.dev/gemini-api/docs))
72+
- **[Gemini CLI](https://github.com/google-gemini/gemini-cli)** - Free & open source with Gemini 3 Pro streaming context ([docs](https://ai.google.dev/gemini-api/docs))
7373
```bash
7474
npm install -g @google-gemini/cli
7575
gemini login # Connect your Google account
7676
```
77-
- **[OpenAI CLI](https://platform.openai.com/docs/guides/responses)** - Terminal access to GPT-5 and o-series tool-calling pipelines ([docs](https://platform.openai.com/docs))
77+
- **[OpenAI CLI](https://platform.openai.com/docs/guides/responses)** - Terminal access to ChatGPT 5.1 tool-calling pipelines ([docs](https://platform.openai.com/docs))
7878
```bash
7979
pip install --upgrade openai
80-
openai responses.create -m gpt-5 --input "Summarize NOTES.md"
80+
openai responses.create -m gpt-5.1 --input "Summarize NOTES.md"
8181
```
8282

8383
### Async/Cloud Agents
@@ -101,7 +101,7 @@ Transform any app idea into working code through 5 AI-powered stages using the l
101101
- Any modern browser
102102
- 2-4 hours of time
103103
- Basic computer skills (no coding required!)
104-
- Optional: Node.js 20+ for terminal tools
104+
- Optional: Node.js 22+ for terminal tools
105105

106106
</details>
107107

@@ -117,7 +117,7 @@ Transform any app idea into working code through 5 AI-powered stages using the l
117117

118118
**How it works:**
119119
1. Copy the entire `part1-deepresearch.md` file
120-
2. Paste into AI Studio (for Gemini 2.5 Pro), Claude.ai (for Claude Sonnet 4.5), or ChatGPT (for GPT-5)
120+
2. Paste into AI Studio (for Gemini 3 Pro), Claude.ai (for Claude Sonnet 4.5), or ChatGPT (for ChatGPT 5.1)
121121
3. Answer 5-6 questions tailored to your experience level
122122
4. AI generates comprehensive research with:
123123
- Market analysis & size
@@ -126,7 +126,7 @@ Transform any app idea into working code through 5 AI-powered stages using the l
126126
- Cost estimates
127127
5. Save output as `research-[YourAppName].txt`
128128

129-
**💡 Pro Tip:** Use Gemini 2.5 Pro for better research (1,048,576-token context window).
129+
**💡 Pro Tip:** Use Gemini 3 Pro for better research (1,048,576-token context window).
130130
</details>
131131

132132
### 2️⃣ Product Requirements (PRD) 📝
@@ -287,15 +287,15 @@ your-app/
287287
### Model Updates
288288
- **Claude Sonnet 4.5** – September 2025 release with 200K default / 1M beta context and top-tier architecture reasoning
289289
- **Claude Opus (2025 snapshot)** – Handles massive monorepos and multi-hour planning sessions with improved tool use
290-
- **Gemini 2.5 Pro** – 1,048,576-token input and 65,536-token output windows for deep research and synthesis
291-
- **GPT-5** – Responses API with adjustable reasoning effort, faster tool orchestration, and lower latency
290+
- **Gemini 3 Pro** – 1,048,576-token input and 65,536-token output windows for deep research and synthesis
291+
- **ChatGPT 5.1** – Responses API with adjustable reasoning effort, faster tool orchestration, and lower latency
292292

293293
### New Tools
294294
- **Claude Code** - Anthropic's project-aware terminal agent with session memory and automated test orchestration
295295
- **Jules** - Google's asynchronous coding agent that can work independently across Vertex AI projects
296-
- **Gemini CLI** - Open-source CLI with direct Gemini 2.5 Pro/Flash access, live context streaming, and MCP integrations
296+
- **Gemini CLI** - Open-source CLI with direct Gemini 3 Pro/Flash access, live context streaming, and MCP integrations
297297
- **GitHub Copilot Agent Mode** - Workspace automation for scoped plans, PRs, and deployment checklists
298-
- **OpenAI CLI (Responses API)** - Terminal workflow for GPT-5, o-series reasoning models, and tool-calling pipelines
298+
- **OpenAI CLI (Responses API)** - Terminal workflow for ChatGPT 5.1 tool-calling pipelines
299299

300300
### Platform Updates
301301
- **Cursor** - Adds Codebase Q&A, long-term project Memory, and Auto Debug powered by Claude Sonnet 4.5
@@ -318,7 +318,7 @@ your-app/
318318
| Complete beginner | Lovable • Bolt.new | Paste your idea, get a hosted app with a domain and database in minutes | Daily credit caps and hosted code mean you should harden it later | 10–30 min |
319319
| Learning hobbyist | Copilot Agent (VS Code) • Cline | Copilot can edit files for you; Cline shows every diff and runs commands on request | Copilot Free has limits and Cline needs your API key setup | 20–45 min |
320320
| Experienced developer | Cursor 2.0 • Windsurf | Cursor plans tasks and runs code in safe terminals; Windsurf handles bigger refactors with its agents | Usage-based credits and a new IDE to learn | 30–60 min |
321-
| Budget-limited builder | Cline • Gemini CLI | Both are free to install, work locally, and can call Gemini 2.5 without paid tiers | Less hand-holding than no-code tools—expect to prompt more | 15–40 min |
321+
| Budget-limited builder | Cline • Gemini CLI | Both are free to install, work locally, and can call Gemini 3 Pro without paid tiers | Less hand-holding than no-code tools—expect to prompt more | 15–40 min |
322322
| Need-it-today founder | Lovable Agent Mode • Bolt.new (Claude) | Fastest path to a working MVP with dashboards, auth, and analytics baked in | Keep an eye on credit burn and schedule a security/UX review | 15–60 min |
323323
| Mobile-first product team | v0.dev + v0 Mobile • Flutter + Gemini | v0 sketches mobile experiences; Flutter + Gemini in Android Studio builds native quality | v0 mobile features are new and Android Studio tooling is still evolving | 45–120 min |
324324
| Complex logic engineer | Claude Code (web/VS Code) • Windsurf | Claude Sonnet 4.5 keeps huge context in its “memory,” Windsurf’s agents plan multi-file changes | Claude web is still preview and company data rules may restrict it | 30–90 min |

part1-deepresearch.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Please type A, B, or C:
1717
<summary><b>🤖 AI Model Recommendations for Research</b></summary>
1818

1919
### Best Models for Research (November 2025)
20-
- **Gemini 2.5 Pro**June 2025 release with 1,048,576 input tokens and 65,536 output tokens for deep, long-context synthesis
20+
- **Gemini 3 Pro**November 2025 release with 1,048,576 input tokens and 65,536 output tokens for deep, long-context synthesis
2121
- **Claude Sonnet 4.5** – September 2025 snapshot offering 200K tokens by default and optional 1M-token beta context for technical accuracy
22-
- **GPT-5** – Latest OpenAI reasoning model with Responses API controls for adjustable reasoning effort and verbosity
22+
- **ChatGPT 5.1** – Latest OpenAI reasoning model with Responses API controls for adjustable reasoning effort and verbosity
2323

2424
### Access Options
25-
- **AI Studio** – Free-tier access to Gemini 2.5 Pro with the full 1,048,576-token context window
26-
- **ChatGPT**GPT-5 available on Pro, Team, and Enterprise plans with the new Responses API feature set
25+
- **AI Studio** – Free-tier access to Gemini 3 Pro with the full 1,048,576-token context window
26+
- **ChatGPT**ChatGPT 5.1 available on Pro, Team, and Enterprise plans with the new Responses API feature set
2727
- **Claude.ai** – Claude Sonnet 4.5 via Claude Pro or enterprise workspaces, including the extended context beta header
2828

2929
</details>
@@ -139,7 +139,7 @@ I'm a non-technical founder building [description]. I need beginner-friendly res
139139
5. Budget breakdown (tools, services, deployment)
140140
6. List of best AI coding assistants for non-coders
141141

142-
Please use Gemini 2.5 Pro for comprehensive analysis or Claude Sonnet 4.5 for technical accuracy. Explain everything in plain English with examples. Include specific URLs and tool names.
142+
Please use Gemini 3 Pro for comprehensive analysis or Claude Sonnet 4.5 for technical accuracy. Explain everything in plain English with examples. Include specific URLs and tool names.
143143
```
144144

145145
### For Developers, create:
@@ -177,9 +177,9 @@ I need comprehensive technical research on [topic] for [context] using the lates
177177
- Development velocity estimates with AI assistance
178178

179179
### AI Model Recommendations:
180-
- Use Gemini 2.5 Pro for broad technical research (1,048,576-token context)
180+
- Use Gemini 3 Pro for broad technical research (1,048,576-token context)
181181
- Use Claude Sonnet 4.5 for code analysis and architecture
182-
- Use GPT-5 for complex trade-off analysis using adjustable reasoning effort
182+
- Use ChatGPT 5.1 for complex trade-off analysis using adjustable reasoning effort
183183

184184
Provide detailed technical findings with code examples, architecture diagrams, and specific tool recommendations. Include latest AI coding assistants and their capabilities.
185185
```
@@ -234,22 +234,22 @@ After generating the appropriate research prompt, say:
234234
"I've created your research prompt above. Here's how to get the best results:
235235

236236
### Recommended AI Platforms for Research:
237-
1. **AI Studio (FREE)** - Best for comprehensive research with Gemini 2.5 Pro
237+
- 1. **AI Studio (FREE)** - Best for comprehensive research with Gemini 3 Pro
238238
- Go to: https://gemini.google.com
239239
- 1M token context window perfect for research
240240

241241
2. **Claude.ai** - Best for technical accuracy with Claude Sonnet 4.5
242242
- Go to: https://claude.ai
243243
- Superior code and architecture analysis but needs a paid account
244244

245-
3. **ChatGPT** - Good for quick iterations with GPT-5
245+
- 3. **ChatGPT** - Good for quick iterations with ChatGPT 5.1
246246
- Go to: https://chat.openai.com
247247
- Short responses and good research capabilities
248248
- Free tier: 5 Deep Researches a Month
249249

250250
Copy the research prompt and paste it into your chosen platform. The research may take 10-20 minutes to complete.
251251

252-
**Pro tip**: Use Gemini 2.5 Pro for the main research, then use Claude Sonnet 4.5 and GPT-5 to validate technical recommendations.
252+
**Pro tip**: Use Gemini 3 Pro for the main research, then use Claude Sonnet 4.5 and ChatGPT 5.1 to validate technical recommendations.
253253

254254
Would you like me to adjust anything in the prompt before you begin?"
255255

part2-prd-mvp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ Please attach your research file (or type "no file") and type A, B, or C:
3030
<summary><b>🤖 Best AI Models for PRD Creation (Late 2025)</b></summary>
3131

3232
- **Claude Sonnet 4.5** – September 2025 snapshot excels at structured document planning with 200K–1M token context support
33-
- **GPT-5** – Latest OpenAI model offers controllable reasoning depth for rapid user story generation via the Responses API
34-
- **Gemini 2.5 Pro** – Handles large research attachments with its 1,048,576-token input window and 65,536-token outputs
33+
- **ChatGPT 5.1** – Latest OpenAI model offers controllable reasoning depth for rapid user story generation via the Responses API
34+
- **Gemini 3 Pro** – Handles large research attachments with its 1,048,576-token input window and 65,536-token outputs
3535

3636
</details>
3737

part3-tech-design-mvp.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Please attach your PRD (and optionally your research) and type A, B, or C:
3232
<summary><b>🤖 AI Models Best Suited for Technical Design (Late 2025)</b></summary>
3333

3434
- **Claude Sonnet 4.5** – Latest September 2025 release tuned for architecture reasoning with 200K–1M token context support
35-
- **Gemini 2.5 Pro** – Handles complex trade-off analysis with its 1,048,576-token input window and 65,536-token outputs
36-
- **GPT-5** – Delivers fast technical iteration with configurable reasoning effort through the Responses API
35+
- **Gemini 3 Pro** – Handles complex trade-off analysis with its 1,048,576-token input window and 65,536-token outputs
36+
- **ChatGPT 5.1** – Delivers fast technical iteration with configurable reasoning effort through the Responses API
3737

3838
</details>
3939

@@ -347,7 +347,7 @@ Based on your PRD, here's how to implement each feature:
347347
|------|--------------|----------------|
348348
| Planning architecture | Claude Sonnet 4.5 | "Design database schema for [feature]" |
349349
| Writing code | Cursor/Claude Code | "Implement [feature] with [tech]" |
350-
| Fixing bugs | ChatGPT (GPT-5) | "Error: [error]. How to fix?" |
350+
| Fixing bugs | ChatGPT 5.1 | "Error: [error]. How to fix?" |
351351
| UI/Design | v0/Claude | "Create [component] matching [style]" |
352352
| Deployment | GitHub Copilot | "Deploy to [platform]" |
353353

@@ -547,14 +547,14 @@ graph TB
547547
### Tech Stack Decision
548548

549549
#### Frontend
550-
- **Framework:** [Next.js 14 / Remix / SvelteKit]
550+
- **Framework:** [Next.js 15 / Remix / SvelteKit]
551551
- **Styling:** [Tailwind CSS / CSS Modules]
552552
- **State Management:** [Zustand / Redux Toolkit / Context]
553553
- **UI Components:** [Shadcn/ui / Material UI / Custom]
554554
- **Testing:** [Vitest / Jest + React Testing Library]
555555

556556
#### Backend
557-
- **Runtime:** [Node.js 20 / Python 3.12 / Go 1.21]
557+
- **Runtime:** [Node.js 24 / Python 3.13 / Go 1.25]
558558
- **Framework:** [Express / Fastify / FastAPI]
559559
- **ORM/Database:** [Prisma / Drizzle / SQLAlchemy]
560560
- **API Pattern:** [REST / GraphQL / tRPC]
@@ -754,7 +754,7 @@ const results = await db.query({
754754

755755
| Phase | Primary Tool | Secondary Tool | Purpose |
756756
|-------|--------------|----------------|---------|
757-
| Architecture | Claude Sonnet 4.5 | o1-preview | System design |
757+
| Architecture | Claude Sonnet 4.5 | ChatGPT 5.1 | System design |
758758
| Implementation | Cursor | GitHub Copilot | Code generation |
759759
| Debugging | Claude Code | ChatGPT | Problem solving |
760760
| Testing | GitHub Copilot | Claude Sonnet 4.5 | Test generation |

part4-notes-for-agent.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1464,10 +1464,10 @@ What would you like to work on? I can:
14641464
## Model Selection
14651465

14661466
For different tasks:
1467-
- **Architecture**: Use Gemini 2.5 Pro (1,048,576-token context)
1468-
- **Debugging**: Use Gemini 2.5 Flash for fast iterations
1469-
- **Quick tasks**: Use Gemini 2.5 Flash-Lite to minimize cost
1470-
- **Code review**: Use Gemini 2.5 Pro for detailed feedback
1467+
- **Architecture**: Use Gemini 3 Pro (1,048,576-token context)
1468+
- **Debugging**: Use Gemini 3 Flash for fast iterations
1469+
- **Quick tasks**: Use Gemini 3 Flash-Lite to minimize cost
1470+
- **Code review**: Use Gemini 3 Pro for detailed feedback
14711471

14721472
## Cost Optimization
14731473

0 commit comments

Comments
 (0)