docs: 更新 AI 模型版本号 (Claude 4.6, gpt-5.3-codex, Kimi K2.5)

This commit is contained in:
tukuaiai
2026-02-12 01:40:20 +08:00
parent 86a9382742
commit 9741f221dd
16 changed files with 109 additions and 109 deletions
@@ -83,12 +83,12 @@
## 📋 The Tools (Qi)
- [**Claude Opus 4.5**](https://claude.ai/new), used in Claude Code, very expensive, but iOS subscription in some regions is hundreds of RMB cheaper, fast + good effect, top tier, has CLI and IDE plugins.
- [**gpt-5.1-codex.1-codex (xhigh)**](https://chatgpt.com/codex/), used in Codex CLI, top tier, nothing to complain about except being slow, the only solution for large projects with complex logic, available with ChatGPT membership, has CLI and IDE plugins.
- [**Droid**](https://factory.ai/news/terminal-bench), the Claude Opus 4.5 here is even stronger than Claude Code, top tier, has CLI.
- [**Kiro**](https://kiro.dev/), the Claude Opus 4.5 here is currently free, but the CLI is a bit weak, can't see the running status, has client and CLI.
- [**Claude Opus 4.6**](https://claude.ai/new), used in Claude Code, very expensive, but iOS subscription in some regions is hundreds of RMB cheaper, fast + good effect, top tier, has CLI and IDE plugins.
- [**gpt-5.3-codex (xhigh)**](https://chatgpt.com/codex/), used in Codex CLI, top tier, nothing to complain about except being slow, the only solution for large projects with complex logic, available with ChatGPT membership, has CLI and IDE plugins.
- [**Droid**](https://factory.ai/news/terminal-bench), the Claude Opus 4.6 here is even stronger than Claude Code, top tier, has CLI.
- [**Kiro**](https://kiro.dev/), the Claude Opus 4.6 here is currently free, but the CLI is a bit weak, can't see the running status, has client and CLI.
- [**gemini**](https://geminicli.com/), currently free to use, for dirty work, can execute scripts written by Claude Code or Codex, also good for organizing documents and brainstorming, has client and CLI.
- [**antigravity**](https://antigravity.google/), Google's, free to use Claude Opus 4.5 and Gemini 3.0 Pro, a great philanthropist.
- [**antigravity**](https://antigravity.google/), Google's, free to use Claude Opus 4.6 and Gemini 3.0 Pro, a great philanthropist.
- [**aistudio**](https://aistudio.google.com/prompts/new_chat), from Google, free to use Gemini 3.0 Pro and Nano Banana.
- [**gemini-enterprise**](https://cloud.google.com/gemini-enterprise), Google enterprise version, currently free to use Nano Banana Pro.
- [**augment**](https://app.augmentcode.com/), its context engine and prompt optimization button are simply divine, beginners should just use it, click the button to automatically write prompts for you, a must-have for lazy people.
@@ -370,12 +370,12 @@ gantt
## 🚀 Getting Started (This is by the original author, not me, I updated what I think are the best models)
To start Vibe Coding, you only need one of the following two tools:
- **Claude Opus 4.5**, used in Claude Code
- **gpt-5.1-codex.1-codex (xhigh)**, used in Codex CLI
- **Claude Opus 4.6**, used in Claude Code
- **gpt-5.3-codex (xhigh)**, used in Codex CLI
This guide applies to both the CLI terminal version and the VSCode extension version (both Codex and Claude Code have extensions, and their interfaces are updated).
*(Note: Earlier versions of this guide used **Grok 3**, later switched to **Gemini 2.5 Pro**, and now we are using **Claude 4.5** (or **gpt-5.1-codex.1-codex (xhigh)**))*
*(Note: Earlier versions of this guide used **Grok 3**, later switched to **Gemini 2.5 Pro**, and now we are using **Claude 4.5** (or **gpt-5.3-codex (xhigh)**))*
*(Note 2: If you want to use Cursor, please check version [1.1](https://github.com/EnzeD/vibe-coding/tree/1.1.1) of this guide, but we believe it is currently less powerful than Codex CLI or Claude Code)*
@@ -387,14 +387,14 @@ This guide applies to both the CLI terminal version and the VSCode extension ver
<details>
<summary><strong>1. Game Design Document</strong></summary>
- Hand your game idea to **gpt-5.1-codex** or **Claude Opus 4.5** to generate a concise **Game Design Document** in Markdown format, named `game-design-document.md`.
- Hand your game idea to **gpt-5.3-codex** or **Claude Opus 4.6** to generate a concise **Game Design Document** in Markdown format, named `game-design-document.md`.
- Review and refine it yourself to ensure it aligns with your vision. It can be very basic initially; the goal is to provide AI with the game structure and intent context. Do not over-design; it will be iterated later.
</details>
<details>
<summary><strong>2. Tech Stack and <code>CLAUDE.md</code> / <code>Agents.md</code></strong></summary>
- Ask **gpt-5.1-codex** or **Claude Opus 4.5** to recommend the most suitable tech stack for your game (e.g., ThreeJS + WebSocket for a multiplayer 3D game), save it as `tech-stack.md`.
- Ask **gpt-5.3-codex** or **Claude Opus 4.6** to recommend the most suitable tech stack for your game (e.g., ThreeJS + WebSocket for a multiplayer 3D game), save it as `tech-stack.md`.
- Ask it to propose the **simplest yet most robust** tech stack.
- Open **Claude Code** or **Codex CLI** in your terminal and use the `/init` command. It will read the two `.md` files you've created and generate a set of rules to guide the large model correctly.
- **Key: Always review the generated rules.** Ensure the rules emphasize **modularization** (multiple files) and prohibit **monolithic files**. You may need to manually modify or supplement the rules.
@@ -412,7 +412,7 @@ This guide applies to both the CLI terminal version and the VSCode extension ver
<details>
<summary><strong>3. Implementation Plan</strong></summary>
- Provide the following to **gpt-5.1-codex** or **Claude Opus 4.5**:
- Provide the following to **gpt-5.3-codex** or **Claude Opus 4.6**:
- Game Design Document (`game-design-document.md`)
- Tech Stack Recommendation (`tech-stack.md`)
- Ask it to generate a detailed **Implementation Plan** (Markdown format), containing a series of step-by-step instructions for AI developers.
@@ -456,7 +456,7 @@ Now for the most exciting part!
- Open **Codex** or **Claude Code** (extension or terminal).
- Prompt: Read all documents in `/memory-bank`, then execute step 1 of the implementation plan. I will be responsible for running tests. Do not start step 2 until I verify the tests pass. After verification, open `progress.md` to record what you've done for future developers' reference, and add new architectural insights to `architecture.md` explaining the purpose of each file.
- **Always** use "Ask" mode or "Plan Mode" (press `shift+tab` in Claude Code) first, and only let AI execute the step after you are satisfied.
- **Ultimate Vibe:** Install [Superwhisper](https://superwhisper.com) and chat casually with Claude or gpt-5.1-codex using voice, without typing.
- **Ultimate Vibe:** Install [Superwhisper](https://superwhisper.com) and chat casually with Claude or gpt-5.3-codex using voice, without typing.
</details>
<details>
@@ -488,7 +488,7 @@ Congratulations! You've built a basic game! It might still be rough and lack fea
<summary><strong>General Fixes</strong></summary>
- If a prompt fails or breaks the project:
- Use `/rewind` in Claude Code to revert; for gpt-5.1-codex, commit frequently with Git and reset when needed.
- Use `/rewind` in Claude Code to revert; for gpt-5.3-codex, commit frequently with Git and reset when needed.
- Error handling:
- **JavaScript errors:** Open browser console (F12), copy error, paste to AI; for visual issues, send a screenshot.
- **Lazy solution:** Install [BrowserTools](https://browsertools.agentdesk.ai/installation) to automatically copy errors and screenshots.
@@ -500,7 +500,7 @@ Congratulations! You've built a basic game! It might still be rough and lack fea
- Really stuck:
- Revert to the previous git commit (`git reset`), try again with a new prompt.
- Extremely stuck:
- Use [RepoPrompt](https://repoprompt.com/) or [uithub](https://uithub.com/) to synthesize the entire codebase into one file, then send it to **gpt-5.1-codex or Claude** for help.
- Use [RepoPrompt](https://repoprompt.com/) or [uithub](https://uithub.com/) to synthesize the entire codebase into one file, then send it to **gpt-5.3-codex or Claude** for help.
</details>
</details>
@@ -521,7 +521,7 @@ Congratulations! You've built a basic game! It might still be rough and lack fea
<details>
<summary><strong>Other Useful Tips</strong></summary>
- **Small modifications:** Use gpt-5.1-codex (medium)
- **Small modifications:** Use gpt-5.3-codex (medium)
- **Write top-tier marketing copy:** Use Opus 4.1
- **Generate excellent 2D sprites:** Use ChatGPT + Nano Banana
- **Generate music:** Use Suno
@@ -544,7 +544,7 @@ Congratulations! You've built a basic game! It might still be rough and lack fea
- **A:** That wasn't one prompt, it was ~30 prompts + a dedicated `plane-implementation.md` file guided it. Use precise instructions like "cut space for ailerons on the wing," instead of vague instructions like "make a plane."
- **Q: Why are Claude Code or Codex CLI stronger than Cursor now?**
- **A:** It's entirely a matter of personal preference. We emphasize that Claude Code can better leverage the power of Claude Opus 4.5, and Codex CLI can better leverage the power of gpt-5.1-codex. Cursor does not utilize either of these as well as their native terminal versions. Terminal versions can also work in any IDE, with SSH remote servers, etc., and features like custom commands, sub-agents, and hooks can significantly improve development quality and speed in the long run. Finally, even if you only have a low-tier Claude or ChatGPT subscription, it's completely sufficient.
- **A:** It's entirely a matter of personal preference. We emphasize that Claude Code can better leverage the power of Claude Opus 4.6, and Codex CLI can better leverage the power of gpt-5.3-codex. Cursor does not utilize either of these as well as their native terminal versions. Terminal versions can also work in any IDE, with SSH remote servers, etc., and features like custom commands, sub-agents, and hooks can significantly improve development quality and speed in the long run. Finally, even if you only have a low-tier Claude or ChatGPT subscription, it's completely sufficient.
- **Q: What if I don't know how to set up a multiplayer game server?**
- **A:** Ask your AI.