<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>vibe coding Archives - 原立方</title>
	<atom:link href="https://www.atomic-cube.cn/tag/vibe-coding/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.atomic-cube.cn/tag/vibe-coding/</link>
	<description>技术栈的流动-从零到∞</description>
	<lastBuildDate>Sun, 10 May 2026 13:12:45 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>
	<item>
		<title>Laravel 13 AI 辅助开发</title>
		<link>https://www.atomic-cube.cn/laravel-13-ai-%e8%be%85%e5%8a%a9%e5%bc%80%e5%8f%91/</link>
					<comments>https://www.atomic-cube.cn/laravel-13-ai-%e8%be%85%e5%8a%a9%e5%bc%80%e5%8f%91/#respond</comments>
		
		<dc:creator><![CDATA[evans]]></dc:creator>
		<pubDate>Thu, 07 May 2026 00:00:00 +0000</pubDate>
				<category><![CDATA[agent skills]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[Laravel]]></category>
		<category><![CDATA[LLM]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[技术文章]]></category>
		<category><![CDATA[llm]]></category>
		<category><![CDATA[vibe coding]]></category>
		<guid isPermaLink="false">https://www.atomic-cube.cn/?p=2058</guid>

					<description><![CDATA[<p>Laravel 官方推出两款 AI 工具：Laravel Boost 为 AI 助手提供应用上下文，实现精准代码生成与调试；Laravel MCP 则作为安全桥梁，允许 AI 代理通过受控端点安全执行应用内操作。两者结合旨在将 AI 深度集成至 Laravel 开发工作流，提升效率与自动化能力，同时确保安全性。</p>
<p>The post <a href="https://www.atomic-cube.cn/laravel-13-ai-%e8%be%85%e5%8a%a9%e5%bc%80%e5%8f%91/">Laravel 13 AI 辅助开发</a> appeared first on <a href="https://www.atomic-cube.cn">原立方</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading" id="introduction">简介</h2>



<p class="wp-block-paragraph">Laravel 具有独特的定位，是进行 AI 辅助开发和智能体开发的首选框架。<a href="https://docs.anthropic.com/en/docs/claude-code" target="_blank" rel="noreferrer noopener nofollow">Claude Code</a>、<a href="https://opencode.ac.cn/" target="_blank" rel="noreferrer noopener nofollow">OpenCode</a>、<a href="https://cursor.ac.cn/" target="_blank" rel="noreferrer noopener nofollow">Cursor</a> 和 <a href="https://github.com/features/copilot" target="_blank" rel="noreferrer noopener nofollow">GitHub Copilot</a> 等 AI 编码智能体的兴起，改变了开发人员编写代码的方式。这些工具能够以空前的速度生成完整功能、调试复杂问题并重构代码——但它们的有效性在很大程度上取决于它们对你代码库的理解程度。</p>



<h3 class="wp-block-heading" id="why-laravel-for-ai-development">为何选择 Laravel 进行 AI 开发？</h3>



<p class="wp-block-paragraph">Laravel 固有的约定和定义明确的结构使其成为 AI 辅助开发的理想框架。当你要求 AI 智能体添加一个控制器时，它确切地知道该将其放在哪里。当你需要新的迁移文件时，命名约定和文件位置都是可预测的。这种一致性消除了在更灵活的框架中经常困扰 AI 工具的猜测过程。</p>



<p class="wp-block-paragraph">除了文件组织，Laravel 富有表达力的语法和全面的文档，为 AI 智能体提供了生成准确、地道代码所需的上下文。Eloquent 关系、表单请求和中间件等功能遵循智能体可以可靠理解和复刻的模式。结果就是 AI 生成的代码看起来就像出自资深 Laravel 开发者之手，而不是从通用的 PHP 代码片段中拼凑出来的。</p>



<h2 class="wp-block-heading" id="laravel-boost">Laravel Boost</h2>



<p class="wp-block-paragraph"><a href="https://github.com/laravel/boost" target="_blank" rel="noreferrer noopener nofollow">Laravel Boost</a> 架起了 AI 编码智能体与 Laravel 应用程序之间的桥梁。Boost 是一个 MCP (模型上下文协议) 服务器，配备了 15 种以上的专用工具，为 AI 智能体提供关于应用程序结构、数据库、路由等的深度见解。当你安装 Boost 后，你的 AI 智能体将从通用的代码助手转变为能够理解你特定应用的 Laravel 专家。</p>



<p class="wp-block-paragraph">Boost 提供了三大核心能力：一套用于检查和交互应用程序的 MCP 工具、专为 Laravel 生态系统精心设计的可组合 AI 指南，以及一个包含超过 17,000 条 Laravel 特定知识的强大文档 API。</p>



<h3 class="wp-block-heading" id="installation">安装</h3>



<p class="wp-block-paragraph">Boost 可安装在运行 PHP 8.1 或更高版本的 Laravel 10、11、12 和 13 应用程序中。若要开始，请将 Boost 安装为开发依赖：</p>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#d8dee9ff;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#2e3440ff"><svg xmlns="http://www.w3.org/2000/svg" width="54" height="14" viewBox="0 0 54 14"><g fill="none" fill-rule="evenodd" transform="translate(1 1)"><circle cx="6" cy="6" r="6" fill="#FF5F56" stroke="#E0443E" stroke-width=".5"></circle><circle cx="26" cy="6" r="6" fill="#FFBD2E" stroke="#DEA123" stroke-width=".5"></circle><circle cx="46" cy="6" r="6" fill="#27C93F" stroke="#1AAB29" stroke-width=".5"></circle></g></svg></span><span role="button" tabindex="0" style="color:#d8dee9ff;display:none" aria-label="复制" class="code-block-pro-copy-button"><pre class="code-block-pro-copy-button-pre" aria-hidden="true"><textarea class="code-block-pro-copy-button-textarea" tabindex="-1" aria-hidden="true" readonly>composer require laravel/boost --dev</textarea></pre><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg></span><pre class="shiki nord" style="background-color: #2e3440ff" tabindex="0"><code><span class="line"><span style="color: #D8DEE9">composer</span><span style="color: #D8DEE9FF"> </span><span style="color: #D8DEE9">require</span><span style="color: #D8DEE9FF"> </span><span style="color: #D8DEE9">laravel</span><span style="color: #81A1C1">/</span><span style="color: #D8DEE9">boost</span><span style="color: #D8DEE9FF"> </span><span style="color: #81A1C1">--</span><span style="color: #D8DEE9">dev</span></span></code></pre></div>



<p class="wp-block-paragraph">安装完成后，运行交互式安装程序：</p>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#d8dee9ff;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#2e3440ff"><svg xmlns="http://www.w3.org/2000/svg" width="54" height="14" viewBox="0 0 54 14"><g fill="none" fill-rule="evenodd" transform="translate(1 1)"><circle cx="6" cy="6" r="6" fill="#FF5F56" stroke="#E0443E" stroke-width=".5"></circle><circle cx="26" cy="6" r="6" fill="#FFBD2E" stroke="#DEA123" stroke-width=".5"></circle><circle cx="46" cy="6" r="6" fill="#27C93F" stroke="#1AAB29" stroke-width=".5"></circle></g></svg></span><span role="button" tabindex="0" style="color:#d8dee9ff;display:none" aria-label="复制" class="code-block-pro-copy-button"><pre class="code-block-pro-copy-button-pre" aria-hidden="true"><textarea class="code-block-pro-copy-button-textarea" tabindex="-1" aria-hidden="true" readonly>php artisan boost:install</textarea></pre><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg></span><pre class="shiki nord" style="background-color: #2e3440ff" tabindex="0"><code><span class="line"><span style="color: #D8DEE9">php</span><span style="color: #D8DEE9FF"> </span><span style="color: #D8DEE9">artisan</span><span style="color: #D8DEE9FF"> boost</span><span style="color: #ECEFF4">:</span><span style="color: #D8DEE9">install</span></span></code></pre></div>



<p class="wp-block-paragraph">安装程序将自动检测你的 IDE 和 AI 智能体，允许你选择适合项目的集成。Boost 将生成必要的配置文件，例如用于 MCP 兼容编辑器的 <code>.mcp.json</code> 文件以及用于 AI 上下文的指南文件。</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><br>生成的配置文件（如&nbsp;<code>.mcp.json</code>、<code>CLAUDE.md</code>&nbsp;和&nbsp;<code>boost.json</code>）可以安全地添加到你的&nbsp;<code>.gitignore</code>&nbsp;中，如果你希望每位开发者配置自己的环境的话。</p>
</blockquote>



<h3 class="wp-block-heading" id="available-tools">可用工具</h3>



<p class="wp-block-paragraph">Boost 通过模型上下文协议（Model Context Protocol）向 AI 智能体公开了一套全面的工具。这些工具允许智能体深入理解并与你的 Laravel 应用程序进行交互。</p>



<ul class="wp-block-list">
<li><strong>应用程序自省</strong> &#8211; 查询你的 PHP 和 Laravel 版本，列出已安装的包，并检查应用程序的配置和环境变量。</li>



<li><strong>数据库工具</strong> &#8211; 在无需退出对话的情况下，检查数据库模式、执行只读查询并了解数据结构。</li>



<li><strong>路由检查</strong> &#8211; 列出所有已注册的路由及其对应的中间件、控制器和参数。</li>



<li><strong>Artisan 命令</strong> &#8211; 发现可用的 Artisan 命令及其参数，使智能体能够针对你的任务建议并执行正确的命令。</li>



<li><strong>日志分析</strong> &#8211; 读取并分析应用程序的日志文件，以协助调试问题。</li>



<li><strong>浏览器日志</strong> &#8211; 在使用 Laravel 前端工具进行开发时，访问浏览器控制台日志和错误信息。</li>



<li><strong>Tinker 集成</strong> &#8211; 通过 Laravel Tinker 在应用程序上下文中执行 PHP 代码，允许智能体验证假设并确认行为。</li>



<li><strong>文档搜索</strong> &#8211; 搜索 Laravel 生态系统文档，并获得根据你所安装的包版本量身定制的结果。</li>
</ul>



<h3 class="wp-block-heading" id="ai-guidelines">AI 指南（AI Guidelines）</h3>



<p class="wp-block-paragraph">Boost 包含一套专门为 Laravel 生态系统精心制作的全面 AI 指南。这些指南教导 AI 智能体如何编写符合习惯的 Laravel 代码、遵循框架约定并避免常见陷阱。指南是可组合且具备版本感知能力的，这意味着智能体接收到的指令将完全适配你所使用的确切包版本。</p>



<p class="wp-block-paragraph">指南涵盖了 Laravel 本身以及 Laravel 生态系统中的 16 个以上的包，包括：</p>



<ul class="wp-block-list">
<li>Livewire (2.x, 3.x, 和 4.x)</li>



<li>Inertia.js (React, Svelte, 和 Vue 变体)</li>



<li>Tailwind CSS (3.x 和 4.x)</li>



<li>Filament (3.x 和 4.x)</li>



<li>PHPUnit</li>



<li>Pest PHP</li>



<li>Laravel Pint</li>



<li>以及更多</li>
</ul>



<p class="wp-block-paragraph">当你运行&nbsp;<code>boost:install</code>&nbsp;时，Boost 会自动检测你的应用程序使用了哪些包，并将相关的指南整合到项目的 AI 上下文文件中。</p>



<h3 class="wp-block-heading" id="agent-skills">智能体技能（Agent Skills）</h3>



<p class="wp-block-paragraph"><a href="https://agentskills.io/home" target="_blank" rel="noreferrer noopener nofollow">智能体技能 (Agent Skills)</a> 是轻量级、针对性的知识模块，智能体可以在处理特定领域时按需激活。与预先加载的指南不同，技能允许仅在相关时加载详细的模式和最佳实践，从而减少上下文冗余并提高 AI 生成代码的相关性。</p>



<p class="wp-block-paragraph">这些技能适用于 Livewire、Inertia、Tailwind CSS、Pest 等主流 Laravel 包。当你运行&nbsp;<code>boost:install</code>&nbsp;并选择技能作为功能时，系统会根据在&nbsp;<code>composer.json</code>&nbsp;中检测到的包自动安装相应的技能。</p>



<h3 class="wp-block-heading" id="documentation-search">文档搜索</h3>



<p class="wp-block-paragraph">Boost 包含一个强大的文档 API，使 AI 智能体能够访问超过 17,000 条 Laravel 生态系统文档。与通用的网络搜索不同，这些文档经过索引、向量化并根据你使用的特定包版本进行了筛选。</p>



<p class="wp-block-paragraph">当智能体需要理解某个功能的工作原理时，它可以搜索 Boost 的文档 API 并获得准确的、特定于版本的相关信息。这消除了 AI 智能体建议已弃用的方法或旧版本框架语法的常见问题。</p>



<h3 class="wp-block-heading" id="agent-integration">智能体集成</h3>



<p class="wp-block-paragraph">Boost 与支持模型上下文协议的流行 IDE 和 AI 工具集成。有关 Cursor、Claude Code、Codex、Gemini CLI、GitHub Copilot 和 Junie 的详细设置说明，请参阅 Boost 文档的 设置你的智能体 (Set Up Your Agents) 部分。</p>
<p>The post <a href="https://www.atomic-cube.cn/laravel-13-ai-%e8%be%85%e5%8a%a9%e5%bc%80%e5%8f%91/">Laravel 13 AI 辅助开发</a> appeared first on <a href="https://www.atomic-cube.cn">原立方</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.atomic-cube.cn/laravel-13-ai-%e8%be%85%e5%8a%a9%e5%bc%80%e5%8f%91/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>2026AI 编码工具全面对比：Codex CLI、Claude Code、Cursor、Gemini CLI、Copilot CLI</title>
		<link>https://www.atomic-cube.cn/2026-ai-%e7%bc%96%e7%a0%81-cli-%e5%b7%a5%e5%85%b7%e5%85%a8%e9%9d%a2%e5%af%b9%e6%af%94%ef%bc%9acodex-cli%e3%80%81claude-code%e3%80%81cursor%e3%80%81gemini-cli%e3%80%81copilot-cli/</link>
					<comments>https://www.atomic-cube.cn/2026-ai-%e7%bc%96%e7%a0%81-cli-%e5%b7%a5%e5%85%b7%e5%85%a8%e9%9d%a2%e5%af%b9%e6%af%94%ef%bc%9acodex-cli%e3%80%81claude-code%e3%80%81cursor%e3%80%81gemini-cli%e3%80%81copilot-cli/#respond</comments>
		
		<dc:creator><![CDATA[evans]]></dc:creator>
		<pubDate>Sun, 26 Apr 2026 21:30:23 +0000</pubDate>
				<category><![CDATA[agent skills]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[claude code]]></category>
		<category><![CDATA[Codex]]></category>
		<category><![CDATA[LLM]]></category>
		<category><![CDATA[Vibe Coding]]></category>
		<category><![CDATA[技术文章]]></category>
		<category><![CDATA[codex]]></category>
		<category><![CDATA[llm]]></category>
		<category><![CDATA[opencode]]></category>
		<category><![CDATA[token]]></category>
		<category><![CDATA[vibe coding]]></category>
		<guid isPermaLink="false">https://www.atomic-cube.cn/?p=1927</guid>

					<description><![CDATA[<p>一、概述与产品定位 2025 至 2026 年间，AI 编程工具从 IDE 插件（以 Cursor 为代表）大举走向终端（即 “Vibe Coding”）。Anthropic 的 Claude Code、OpenAI 的 Codex CLI、Google 的 Gemini CLI 三款主流命令行工具相继成熟，它们以交互式终端为基本界面，支持读取本地文件、编辑代码、执行 Shell 命令，让开发者在终端内完成从原型到部署的完整编码流程。与此同时，Cursor 于 2026 年 1 月推出 CLI 功能，GitHub Copilot CLI 于 2026 年 2 月正式 GA，终端 AI 编码的战场已经全面铺开。 工具 出品方 核心定位 起步价格 Claude Code Anthropic 高自主度终端 Agent $20/月（Pro） Cursor CLI Anysphere AI [&#8230;]</p>
<p>The post <a href="https://www.atomic-cube.cn/2026-ai-%e7%bc%96%e7%a0%81-cli-%e5%b7%a5%e5%85%b7%e5%85%a8%e9%9d%a2%e5%af%b9%e6%af%94%ef%bc%9acodex-cli%e3%80%81claude-code%e3%80%81cursor%e3%80%81gemini-cli%e3%80%81copilot-cli/">2026AI 编码工具全面对比：Codex CLI、Claude Code、Cursor、Gemini CLI、Copilot CLI</a> appeared first on <a href="https://www.atomic-cube.cn">原立方</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">一、概述与产品定位</h2>



<p class="wp-block-paragraph">2025 至 2026 年间，AI 编程工具从 IDE 插件（以 Cursor 为代表）大举走向终端（即 “Vibe Coding”）。Anthropic 的 Claude Code、OpenAI 的 Codex CLI、Google 的 Gemini CLI 三款主流命令行工具相继成熟，它们以交互式终端为基本界面，支持读取本地文件、编辑代码、执行 Shell 命令，让开发者在终端内完成从原型到部署的完整编码流程<a href="https://zhuanlan.zhihu.com/p/2024146096939614452" target="_blank" rel="noreferrer noopener"></a>。与此同时，Cursor 于 2026 年 1 月推出 CLI 功能，GitHub Copilot CLI 于 2026 年 2 月正式 GA，终端 AI 编码的战场已经全面铺开<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a>。</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1024" height="458" src="https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-45-1024x458.png" alt="" class="wp-image-1945" srcset="https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-45-1024x458.png 1024w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-45-300x134.png 300w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-45-768x343.png 768w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-45-1536x687.png 1536w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-45-2048x916.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">工具</th><th class="has-text-align-left" data-align="left">出品方</th><th class="has-text-align-left" data-align="left">核心定位</th><th class="has-text-align-left" data-align="left">起步价格</th></tr></thead><tbody><tr><td><strong>Claude Code</strong></td><td>Anthropic</td><td>高自主度终端 Agent</td><td>$20/月（Pro）</td></tr><tr><td><strong>Cursor CLI</strong></td><td>Anysphere</td><td>AI 原生 IDE + CLI 混合体</td><td>$20/月（Pro）</td></tr><tr><td><strong>Gemini CLI</strong></td><td>Google</td><td>开源终端 Agent</td><td>免费（1,000 次请求/天）</td></tr><tr><td><strong>Codex CLI</strong></td><td>OpenAI</td><td>轻量开源终端 Agent</td><td>$20/月（ChatGPT Plus）</td></tr><tr><td><strong>Copilot CLI</strong></td><td>GitHub / Microsoft</td><td>GitHub 原生 CLI</td><td>免费 / $10/月起（Pro）</td></tr></tbody></table></figure>



<p class="wp-block-paragraph">以上信息综合整理自各工具官方文档与公开资料<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a>。</p>



<h2 class="wp-block-heading">二、综合对比总表</h2>



<p class="wp-block-paragraph">下表从核心维度对五款工具进行全景对比：</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">对比维度</th><th class="has-text-align-left" data-align="left">Claude Code</th><th class="has-text-align-left" data-align="left">Cursor CLI</th><th class="has-text-align-left" data-align="left">Gemini CLI</th><th class="has-text-align-left" data-align="left">Codex CLI</th><th class="has-text-align-left" data-align="left">Copilot CLI</th></tr></thead><tbody><tr><td><strong>主界面</strong></td><td>终端 + VS Code + Web + 桌面</td><td>VS Code 分支 + CLI</td><td>终端</td><td>终端 + macOS 桌面 App</td><td>终端 + IDE + Web</td></tr><tr><td><strong>SWE-bench Verified</strong></td><td><strong>80.9%</strong>（Opus 4.5）</td><td>~73%（取决于所选模型）</td><td>~65%</td><td>77.3%（Terminal-Bench 2.0）</td><td>未公布官方成绩</td></tr><tr><td><strong>最大上下文窗口</strong></td><td>200K（1M Beta）</td><td>200K</td><td><strong>1M（免费）</strong></td><td>1M（Pro）</td><td>~128K</td></tr><tr><td><strong>多模型支持</strong></td><td>仅 Claude 系列</td><td>✅ 多模型</td><td>仅 Google 系列</td><td>仅 OpenAI 系列</td><td>✅ Claude、GPT、Gemini、xAI</td></tr><tr><td><strong>Tab 实时补全</strong></td><td>❌</td><td>✅（&lt;100ms）</td><td>❌</td><td>❌</td><td>✅</td></tr><tr><td><strong>IDE 集成</strong></td><td>VS Code / JetBrains</td><td>VS Code 原生</td><td>❌</td><td>VS Code / Cursor</td><td>VS Code / JetBrains</td></tr><tr><td><strong>MCP 支持</strong></td><td>✅</td><td>✅</td><td>✅</td><td>✅</td><td>✅</td></tr><tr><td><strong>后台 Agent</strong></td><td>✅（子 Agent + 云会话）</td><td>✅（云 VM 后台）</td><td>❌</td><td>✅（云沙箱）</td><td>✅（后台委托）</td></tr><tr><td><strong>开源</strong></td><td>❌ 闭源</td><td>❌ 闭源</td><td>✅ 开源</td><td>✅ 开源（Apache 2.0）</td><td>❌ 闭源</td></tr><tr><td><strong>CI/CD 支持</strong></td><td>✅（GitHub Actions）</td><td>❌</td><td>✅</td><td>✅（headless 模式）</td><td>✅（GitHub Actions）</td></tr><tr><td><strong>操作系统支持</strong></td><td>macOS / Linux / Win(WSL)</td><td>macOS / Windows / Linux</td><td>macOS / Linux / Windows</td><td>macOS / Linux（Win 预览）</td><td>macOS / Linux / Windows</td></tr><tr><td><strong>Skill.md 标准</strong></td><td>✅</td><td>✅</td><td>✅</td><td>✅</td><td>✅</td></tr><tr><td><strong>安装方式</strong></td><td>npm / Homebrew / 原生二进制</td><td>IDE 内安装</td><td>npm（<code>@google/gemini-cli</code>）</td><td>npm / 原生二进制</td><td>GitHub CLI 插件</td></tr></tbody></table></figure>



<p class="wp-block-paragraph">主要数据来源：Morphllm 2026 年综合评测、各工具官方文档、JEECG 低代码 2026 年 4 月横评<a href="https://www.morphllm.com/best-ai-coding-agents-2026" target="_blank" rel="noreferrer noopener"></a><a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a><a href="https://blog.csdn.net/zhangdaiscott/article/details/160244202" target="_blank" rel="noreferrer noopener"></a><a href="https://www.morphllm.com/comparisons/claude-code-alternatives" target="_blank" rel="noreferrer noopener"></a></p>



<h2 class="wp-block-heading">三、核心能力：谁的编程能力最强？</h2>



<h3 class="wp-block-heading">3.1 SWE-bench Verified 基准跑分</h3>



<p class="wp-block-paragraph">SWE-bench Verified 是目前最权威的编码 Agent 评测标准，任务是自动修复真实的 GitHub Issue。各工具排名如下：</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">排名</th><th class="has-text-align-left" data-align="left">工具</th><th class="has-text-align-left" data-align="left">得分</th><th class="has-text-align-left" data-align="left">备注</th></tr></thead><tbody><tr><td>🥇</td><td><strong>Claude Code</strong></td><td><strong>80.9%</strong></td><td>首次通过率约 95%，绝大多数任务一次通过<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a></td></tr><tr><td>🥈</td><td><strong>Codex CLI</strong></td><td>77.3%</td><td>Terminal-Bench 2.0 数据，用 Rust 重写后速度和 Token 效率大幅提升<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a></td></tr><tr><td>🥉</td><td><strong>Cursor</strong></td><td>~73%</td><td>取决于底层模型选择，选用 Claude 时表现最佳<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a></td></tr><tr><td>4</td><td><strong>Gemini CLI</strong></td><td>~65%</td><td>Google 模型在创意和搜索上有优势，但纯编码任务还有提升空间<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a></td></tr><tr><td>5</td><td><strong>Copilot CLI</strong></td><td>未公布</td><td>社区反馈显示复杂任务表现偏弱<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a></td></tr></tbody></table></figure>



<h3 class="wp-block-heading">3.2 真实项目实测</h3>



<p class="wp-block-paragraph">Particula Tech 团队用一个完整的 Express.js 项目重构作为测试任务，结果如下<a href="https://blog.csdn.net/zhangdaiscott/article/details/160244202" target="_blank" rel="noreferrer noopener"></a>：</p>



<ul class="wp-block-list">
<li><strong>Claude Code</strong>：完成时间 1 小时 17 分钟，一次通过 ✓</li>



<li><strong>Codex CLI</strong>：完成时间 1 小时 41 分钟，一次通过 ✓</li>



<li><strong>Gemini CLI</strong>：完成时间 2 小时 04 分钟，一次通过 ✓</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="505" src="https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-39-1024x505.png" alt="" class="wp-image-1930" srcset="https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-39-1024x505.png 1024w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-39-300x148.png 300w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-39-768x379.png 768w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-39.png 1336w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h3 class="wp-block-heading">3.3 各维度能力细项对比</h3>



<p class="wp-block-paragraph">以下表格展示了五款工具在不同开发维度上的能力分布<a href="https://blog.csdn.net/zhangdaiscott/article/details/160244202" target="_blank" rel="noreferrer noopener"></a>：</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">能力维度</th><th class="has-text-align-left" data-align="left">Claude Code</th><th class="has-text-align-left" data-align="left">Cursor CLI</th><th class="has-text-align-left" data-align="left">Gemini CLI</th><th class="has-text-align-left" data-align="left">Codex CLI</th><th class="has-text-align-left" data-align="left">Copilot CLI</th></tr></thead><tbody><tr><td>多文件复杂重构</td><td>✅ 最强</td><td>✅ 强</td><td>⚠️ 中等</td><td>⚠️ 中等</td><td>❌ 弱</td></tr><tr><td>超大代码库理解（1M 上下文）</td><td>✅（Beta）</td><td>⚠️ 200K</td><td>✅ 免费 1M</td><td>✅ 1M（Pro）</td><td>❌ ~128K</td></tr><tr><td>实时 Tab 补全</td><td>❌</td><td>✅ &lt;100ms</td><td>❌</td><td>❌</td><td>✅</td></tr><tr><td>截图转代码</td><td>❌</td><td>✅</td><td>❌</td><td>✅</td><td>❌</td></tr><tr><td>实时网络搜索</td><td>❌</td><td>❌</td><td>✅ Google 搜索</td><td>❌</td><td>❌</td></tr></tbody></table></figure>



<p class="wp-block-paragraph"><strong>从中可以解读出</strong>：Claude Code 在自主规划、复杂多文件操作上遥遥领先，Cursor 在交互式实时编码体验上无人能敌，Gemini CLI 免费提供最大的上下文窗口和搜索能力，Codex CLI 在性能和安全性之间取得了出色平衡，Copilot CLI 则在 GitHub 生态深度和低价方面独树一帜<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a>。</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="823" src="https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-40-1024x823.png" alt="" class="wp-image-1931" srcset="https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-40-1024x823.png 1024w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-40-300x241.png 300w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-40-768x617.png 768w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-40.png 1161w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">四、生态与扩展功能对比</h2>



<h3 class="wp-block-heading">4.1 MCP 服务器支持</h3>



<p class="wp-block-paragraph">五款工具全部支持 MCP（Model Context Protocol），这是 2026 年 AI 编码工具的重要基础设施。MCP 允许 Agent 连接到数据库、API、浏览器等外部工具和服务<a href="https://www.morphllm.com/claude-coding-agent" target="_blank" rel="noreferrer noopener"></a>。</p>



<p class="wp-block-paragraph"><strong>各工具 MCP 扩展亮点</strong>：</p>



<ul class="wp-block-list">
<li><strong>Claude Code</strong>：支持 STDIO 和流式 HTTP 服务器，通过&nbsp;<code>claude mcp add</code>&nbsp;命令管理<a href="https://www.morphllm.com/claude-coding-agent" target="_blank" rel="noreferrer noopener"></a></li>



<li><strong>Gemini CLI</strong>：支持通过 hooks 机制在 Agent 生命周期的特定节点调用 MCP 服务<a href="https://devops.com/google-adds-hooks-to-gemini-cli-for-customized-ai-workflows/" target="_blank" rel="noreferrer noopener"></a></li>



<li><strong>Copilot CLI</strong>：可自定义 Agent 使用 MCP 服务器，实现 Work IQ 等高级功能</li>
</ul>



<h3 class="wp-block-heading">4.2 Skill.md 标准</h3>



<p class="wp-block-paragraph">SKILL.md 标准是 2026 年出现的重要标准化成果，实现了跨工具技能互通，让开发者能灵活组合使用不同工具以优化工作流。五款工具均已支持此标准，这意味着你可以在 Claude Code 中编写的技能文件，同样可以在 Codex CLI 或 Gemini CLI 中使用，大大降低了工具切换成本<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a>。</p>



<h3 class="wp-block-heading">4.3 价格体系与总拥有成本</h3>



<p class="wp-block-paragraph">五款工具的价格体系反映了各自面向的目标用户群体不同。</p>



<h4 class="wp-block-heading">（1）按价定价之外，还要关注上限</h4>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">工具</th><th class="has-text-align-left" data-align="left">基础套餐</th><th class="has-text-align-left" data-align="left">进阶套餐</th><th class="has-text-align-left" data-align="left">企业级</th><th class="has-text-align-left" data-align="left">免费层</th><th class="has-text-align-left" data-align="left">模型锁定？</th></tr></thead><tbody><tr><td><strong>Claude Code</strong></td><td>$20/月（Claude Pro）</td><td>$100-200/月（Max）</td><td>Teams / Enterprise</td><td>无</td><td><strong>是</strong>（仅 Claude 模型）</td></tr><tr><td><strong>Cursor CLI</strong></td><td>$20/月（Pro）</td><td>$60-200/月（Pro+/Ultra）</td><td>企业定制</td><td>有限免费</td><td>否（多模型）</td></tr><tr><td><strong>Gemini CLI</strong></td><td><strong>免费</strong>（1,000 请求/天）</td><td>N/A</td><td>N/A</td><td><strong>是</strong></td><td>是（仅 Google 模型）</td></tr><tr><td><strong>Codex CLI</strong></td><td>$20/月（ChatGPT Plus）</td><td>Pro</td><td>Enterprise</td><td>有限免费</td><td>是（仅 OpenAI 模型）</td></tr><tr><td><strong>Copilot CLI</strong></td><td><strong>$10/月</strong>（Copilot Pro）</td><td>$39/月（Pro+）</td><td>Business $19 / Enterprise $39</td><td>2,000 次补全 + 50 次高级请求/月</td><td><strong>否</strong>（多模型）</td></tr></tbody></table></figure>



<p class="wp-block-paragraph">Copilot 超额使用费为每次高级请求 $0.04，包括 Chat、CLI、Agent 模式、代码审核和 Spark 功能<a href="https://www.morphllm.com/comparisons/claude-code-vs-copilot" target="_blank" rel="noreferrer noopener"></a>。Claude Code 是唯一完全没有免费层的工具，Gemini CLI 则是性价比最高的选择<a href="https://www.morphllm.com/comparisons/claude-code-alternatives" target="_blank" rel="noreferrer noopener"></a>。</p>



<h4 class="wp-block-heading">（2）隐藏的成本考量</h4>



<ul class="wp-block-list">
<li><strong>Token 膨胀</strong>：虽然 Claude Code 定价最高，但独立测试显示它在完成相同任务时的 Token 消耗远低于 Cursor（约 33K vs 188K），这让高阶用户的实际成本可能更低</li>



<li><strong>Codex 沙箱</strong>：OpenAI 的 Codex CLI 提供免费的本地执行和云端沙箱分离，Token 优化据称可以减少 40-60% 的实际消耗<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a></li>



<li><strong>Gemini 免费的代价</strong>：1M 上下文免费，但搜索和复杂任务可能请求消耗较快，而且只支持 Google 自家模型</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="505" src="https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-41-1024x505.png" alt="" class="wp-image-1932" srcset="https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-41-1024x505.png 1024w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-41-300x148.png 300w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-41-768x379.png 768w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-41.png 1336w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h3 class="wp-block-heading">4.4 工具间配合：不是“替换”而是“组合”</h3>



<p class="wp-block-paragraph">2026 年的调查显示，有经验的开发者平均使用&nbsp;<strong>2.3 个工具同时工作</strong>。这些工具并非相互排斥——每个都有自己擅长的工作场景<a href="https://wavespeed.ai/blog/posts/claude-code-vs-cursor-2026/" target="_blank" rel="noreferrer noopener"></a>。具体推荐组合见下文选择建议。</p>



<h2 class="wp-block-heading">五、优势与局限总结</h2>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">工具</th><th class="has-text-align-left" data-align="left">核心优势</th><th class="has-text-align-left" data-align="left">主要短板</th></tr></thead><tbody><tr><td><strong>Claude Code</strong></td><td>自主重构能力最强，SWE-bench 得分最高（80.9%），Agent Teams 支持并行子任务，CLAUDE.md 项目记忆驱动</td><td>仅支持 Claude 模型，无免费层，价格最高（$20-200/月），无 Tab 实时补全</td></tr><tr><td><strong>Cursor CLI</strong></td><td>实时 &lt;200ms Tab 补全行业领先，8 个并行 Agent，多模型自由切换，VS Code 原生体验</td><td>非开源，SWE-bench 依赖所选模型，自主重构能力不及 Claude Code</td></tr><tr><td><strong>Gemini CLI</strong></td><td>完全免费 + 1,000 次请求/天，1M 上下文免费，Google 搜索集成，开源可审计</td><td>纯编码任务不如 Claude Code / Codex CLI，无 Tab 补全，仅 Google 模型</td></tr><tr><td><strong>Codex CLI</strong></td><td>Rust 重写后性能出色，云端沙箱安全隔离，开源（Apache 2.0），Token 效率高（据称减少 40-60%）</td><td>$20/月起步，仅 OpenAI 模型，Windows 尚在预览阶段</td></tr><tr><td><strong>Copilot CLI</strong></td><td>价格最低（$10/月起 + 免费层），5 种模型自由选择，GitHub 生态深度集成，内置代码审查 Agent</td><td>复杂重构能力弱，上下文窗口小（~128K），开源透明度不足</td></tr></tbody></table></figure>



<h2 class="wp-block-heading">六、选型决策指南</h2>



<h3 class="wp-block-heading">按开发者画像推荐</h3>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">用户画像</th><th class="has-text-align-left" data-align="left">首选工具</th><th class="has-text-align-left" data-align="left">备选工具</th><th class="has-text-align-left" data-align="left">理由</th></tr></thead><tbody><tr><td><strong>专注复杂重构的架构师</strong></td><td>Claude Code</td><td>Codex CLI</td><td>80.9% SWE-bench 得分、Agent Teams、多文件自主操作</td></tr><tr><td><strong>日常编码为主的开发者</strong></td><td>Cursor CLI + Copilot CLI</td><td>—</td><td>Cursor 的 Tab 补全 + Copilot 的多模型和低价，双工具覆盖 80% 场景</td></tr><tr><td><strong>预算有限的个人 / 学生</strong></td><td>Gemini CLI</td><td>Copilot CLI 免费层</td><td>免费、1M 上下文、Google 搜索接地气</td></tr><tr><td><strong>开源贡献者</strong></td><td>Codex CLI</td><td>Gemini CLI</td><td>Apache 2.0 开源、可审计、可自定义</td></tr><tr><td><strong>GitHub 深度用户</strong></td><td>Copilot CLI</td><td>Claude Code</td><td>PR / Issue 原生集成、多模型选择、CI/CD 管道</td></tr><tr><td><strong>全栈 / Web 开发者</strong></td><td>Cursor CLI + Codex CLI</td><td>—</td><td>VS Code 生态 + 截图转代码 + 远程服务器 Dev</td></tr><tr><td><strong>数据隐私优先的企业</strong></td><td>自部署 Codex</td><td>Gemini CLI</td><td>开源、企业级部署</td></tr></tbody></table></figure>



<h3 class="wp-block-heading">按任务场景推荐</h3>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">任务场景</th><th class="has-text-align-left" data-align="left">推荐工具</th><th class="has-text-align-left" data-align="left">说明</th></tr></thead><tbody><tr><td><strong>大规模代码重构</strong></td><td>Claude Code</td><td>Agent Teams 并行处理，先计划后执行，支持 Git Worktree 安全操作</td></tr><tr><td><strong>日常快速编码</strong></td><td>Cursor CLI 或 Copilot CLI（Tab 补全）</td><td>Cursor 的 &lt;200ms Tab 补全覆盖日常 80% 编码需求</td></tr><tr><td><strong>复杂多步骤任务（CI/CD）</strong></td><td>Codex CLI</td><td>云端沙箱隔离执行，支持 headless 远程操作，适合 DevOps 自动化</td></tr><tr><td><strong>代码审查</strong></td><td>Copilot CLI（内置 Code Review Agent）</td><td>自动委托给专业审查 Agent，修复建议可直接采纳</td></tr><tr><td><strong>学习新技术栈</strong></td><td>Gemini CLI（Ask + 搜索）或 Cursor CLI（Ask 模式）</td><td>免费上下文窗口 + Google 搜索接地气</td></tr><tr><td><strong>API 文档编写</strong></td><td>Claude Code</td><td>强大的自主生成和结构化内容能力</td></tr><tr><td><strong>多模型对比实验</strong></td><td>Cursor CLI 或 Copilot CLI</td><td>支持在多个模型间自由切换，方便比较</td></tr></tbody></table></figure>



<h3 class="wp-block-heading">实际工作流建议</h3>



<p class="wp-block-paragraph">2026 年 AI 编码调查显示，有经验的开发者平均使用&nbsp;<strong>2.3 个工具</strong>。这些工具并非互斥——每个都有其擅长的工作场景<a href="https://wavespeed.ai/blog/posts/claude-code-vs-cursor-2026/" target="_blank" rel="noreferrer noopener"></a>。</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">组合方案</th><th class="has-text-align-left" data-align="left">核心配置</th><th class="has-text-align-left" data-align="left">月成本</th><th class="has-text-align-left" data-align="left">适合人群</th></tr></thead><tbody><tr><td><strong>日常极简主义</strong></td><td>Copilot CLI（Tab 补全 + 多模型）</td><td><strong>$10</strong></td><td>普通开发者的全能选择</td></tr><tr><td><strong>高效全能型</strong></td><td>Cursor + Codex CLI（IDE + 后台 Agent）</td><td>$40（Cursor $20 + Codex $20）</td><td>全栈 / 高级开发者的日常主力和后台自动化</td></tr><tr><td><strong>性能狂热型</strong></td><td>Claude Code + Copilot CLI（重构 + 补全）</td><td>$30（CC $20 + Copilot $10）</td><td>架构师 + 高要求项目的全覆盖方案</td></tr><tr><td><strong>零成本学习型</strong></td><td>Gemini CLI + Cursor 免费层（搜索 + 补全）</td><td><strong>$0</strong></td><td>学生 / 学习者 / 试水者</td></tr></tbody></table></figure>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="422" src="https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-42-1024x422.png" alt="" class="wp-image-1934" srcset="https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-42-1024x422.png 1024w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-42-300x124.png 300w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-42-768x316.png 768w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-42-1536x632.png 1536w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/image-42.png 1785w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">七、2026 年关键趋势</h2>



<p class="wp-block-paragraph"><strong>1. 终端成为新的战场。</strong>&nbsp;2026 年，所有主流 AI 编码工具都已经或即将发布 CLI 版本，终端已成为 AI Agent 的第一界面<a href="https://zhuanlan.zhihu.com/p/2024146096939614452" target="_blank" rel="noreferrer noopener"></a>。</p>



<p class="wp-block-paragraph"><strong>2. 多工具组合使用成为常态。</strong>&nbsp;单靠一个工具解决所有问题的时代已经过去，开发者倾向于根据不同任务选择最佳工具，再利用 Skill.md 标准实现跨工具复用<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a>。</p>



<p class="wp-block-paragraph"><strong>3. 上下文窗口竞赛白热化。</strong>&nbsp;Gemini CLI 免费提供 1M 上下文，Claude Code 有 1M Beta，Codex CLI 的 Pro 版也达到 1M。更大的上下文窗口意味着更好的代码库理解能力。</p>



<p class="wp-block-paragraph"><strong>4. 开源与闭源的博弈。</strong>&nbsp;Gemini CLI 和 Codex CLI 选择了开源路线，Claude Code 和 Cursor 则保持闭源。开源意味着可审计、可定制，闭源则意味着更集中的资源投入。</p>



<p class="wp-block-paragraph"><strong>5. 后台 Agent 执行成为标配。</strong>&nbsp;从 Cursor 的 Cloud Agent 到 Copilot CLI 的&nbsp;<code>&amp;</code>&nbsp;前缀后台委托，再到 Codex CLI 的云端沙箱执行，AI 编码正在从“人盯 AI”走向“AI 自主执行、人异步审查”的新范式。</p>



<p class="wp-block-paragraph"><strong>6. 国内生态加速接入。</strong>&nbsp;Claude Code 支持阿里云 Coding Plan，可调用 Qwen 系列模型<a href="https://www.alibabacloud.com/help/tc/model-studio/claude-code-coding-plan" target="_blank" rel="noreferrer noopener"></a>。低代码平台 JEECG 等已深度集成 AI CLI 工具，形成面向国内开发者的完整工具链<a href="https://my.oschina.net/jeecg/blog/19579572" target="_blank" rel="noreferrer noopener"></a>。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><em>本报告综合整理自 Morphllm 2026 年评测数据、各工具官方文档与 GitHub 仓库、以及多个独立开发者社区的实际使用反馈。AI 编码工具迭代极快，建议在决策前查阅各工具最新文档。</em></p>
<p>The post <a href="https://www.atomic-cube.cn/2026-ai-%e7%bc%96%e7%a0%81-cli-%e5%b7%a5%e5%85%b7%e5%85%a8%e9%9d%a2%e5%af%b9%e6%af%94%ef%bc%9acodex-cli%e3%80%81claude-code%e3%80%81cursor%e3%80%81gemini-cli%e3%80%81copilot-cli/">2026AI 编码工具全面对比：Codex CLI、Claude Code、Cursor、Gemini CLI、Copilot CLI</a> appeared first on <a href="https://www.atomic-cube.cn">原立方</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.atomic-cube.cn/2026-ai-%e7%bc%96%e7%a0%81-cli-%e5%b7%a5%e5%85%b7%e5%85%a8%e9%9d%a2%e5%af%b9%e6%af%94%ef%bc%9acodex-cli%e3%80%81claude-code%e3%80%81cursor%e3%80%81gemini-cli%e3%80%81copilot-cli/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Vibe Coding：AI 时代编程范式的变革与争议</title>
		<link>https://www.atomic-cube.cn/vibe-coding%ef%bc%9aai-%e6%97%b6%e4%bb%a3%e7%bc%96%e7%a8%8b%e8%8c%83%e5%bc%8f%e7%9a%84%e5%8f%98%e9%9d%a9%e4%b8%8e%e4%ba%89%e8%ae%ae/</link>
					<comments>https://www.atomic-cube.cn/vibe-coding%ef%bc%9aai-%e6%97%b6%e4%bb%a3%e7%bc%96%e7%a8%8b%e8%8c%83%e5%bc%8f%e7%9a%84%e5%8f%98%e9%9d%a9%e4%b8%8e%e4%ba%89%e8%ae%ae/#respond</comments>
		
		<dc:creator><![CDATA[evans]]></dc:creator>
		<pubDate>Tue, 21 Apr 2026 23:00:00 +0000</pubDate>
				<category><![CDATA[agent skills]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[LLM]]></category>
		<category><![CDATA[Vibe Coding]]></category>
		<category><![CDATA[llm]]></category>
		<category><![CDATA[token]]></category>
		<category><![CDATA[vibe coding]]></category>
		<guid isPermaLink="false">https://www.atomic-cube.cn/?p=1599</guid>

					<description><![CDATA[<p>🤔 一句话理解 Vibe Coding 2025 年 2 月，OpenAI 联合创始人 Andrej Karpathy 在社交媒体上分享了自己使用 AI 编程的体验，并用一个新词来描述这种状态——Vibe Coding（氛围编程）。他给出的定义是：“完全跟着感觉走，拥抱指数增长，忘掉代码本身的存在。”同年 11 月，柯林斯词典将这个词评为 2025 年度词汇。 简单来说，Vibe Coding 是一种全新的 AI 驱动编程方式：你只需要用自然语言描述需求，AI 就会生成可运行的代码；你只管看效果，不对就继续对 AI 说，直到感觉“对味”为止。开发者从“代码搬运工”转变为“解决问题工程师”，聚焦于需求表达、结果验证和迭代反馈，而非逐行编写和审查代码。 🔧 核心工具生态 Vibe Coding 的工具生态在 2026 年已相当成熟。全球 92% 的美国开发者每天使用 AI 编程工具，AI 生成的代码占全球总代码量的 41%。Vibe Coding 工具市场估值已达 47 亿美元，其中 63% 的用户为非专业开发者。 主流工具可按使用场景分为以下几类： 主流工具速览： 工具 类型 特点 定价 Cursor IDE 上下文理解最强，估值 [&#8230;]</p>
<p>The post <a href="https://www.atomic-cube.cn/vibe-coding%ef%bc%9aai-%e6%97%b6%e4%bb%a3%e7%bc%96%e7%a8%8b%e8%8c%83%e5%bc%8f%e7%9a%84%e5%8f%98%e9%9d%a9%e4%b8%8e%e4%ba%89%e8%ae%ae/">Vibe Coding：AI 时代编程范式的变革与争议</a> appeared first on <a href="https://www.atomic-cube.cn">原立方</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading">🤔 一句话理解 Vibe Coding</h3>



<p class="wp-block-paragraph">2025 年 2 月，OpenAI 联合创始人 Andrej Karpathy 在社交媒体上分享了自己使用 AI 编程的体验，并用一个新词来描述这种状态——Vibe Coding（氛围编程）。他给出的定义是：“完全跟着感觉走，拥抱指数增长，忘掉代码本身的存在。”同年 11 月，柯林斯词典将这个词评为 2025 年度词汇。</p>



<p class="wp-block-paragraph">简单来说，Vibe Coding 是一种全新的 AI 驱动编程方式：你只需要用自然语言描述需求，AI 就会生成可运行的代码；你只管看效果，不对就继续对 AI 说，直到感觉“对味”为止。开发者从“代码搬运工”转变为“解决问题工程师”，聚焦于需求表达、结果验证和迭代反馈，而非逐行编写和审查代码。</p>



<figure class="wp-block-image size-large"><img decoding="async" width="447" height="1024" src="https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb1-447x1024.png" alt="" class="wp-image-1600" srcset="https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb1-447x1024.png 447w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb1-131x300.png 131w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb1-768x1760.png 768w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb1-670x1536.png 670w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb1-893x2048.png 893w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb1.png 910w" sizes="(max-width: 447px) 100vw, 447px" /></figure>



<h3 class="wp-block-heading">🔧 核心工具生态</h3>



<p class="wp-block-paragraph">Vibe Coding 的工具生态在 2026 年已相当成熟。全球 92% 的美国开发者每天使用 AI 编程工具，AI 生成的代码占全球总代码量的 41%。Vibe Coding 工具市场估值已达 47 亿美元，其中 63% 的用户为非专业开发者。<a href="https://www.taskade.com/blog/best-vibe-coding-tools" target="_blank" rel="noreferrer noopener"></a></p>



<p class="wp-block-paragraph">主流工具可按使用场景分为以下几类：</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="287" src="https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb2-1024x287.png" alt="" class="wp-image-1601" srcset="https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb2-1024x287.png 1024w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb2-300x84.png 300w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb2-768x215.png 768w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb2-1536x431.png 1536w, https://www.atomic-cube.cn/wp-content/uploads/2026/04/vb2-2048x575.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph"><strong>主流工具速览：</strong></p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">工具</th><th class="has-text-align-left" data-align="left">类型</th><th class="has-text-align-left" data-align="left">特点</th><th class="has-text-align-left" data-align="left">定价</th></tr></thead><tbody><tr><td>Cursor</td><td>IDE</td><td>上下文理解最强，估值 293 亿美元</td><td>$20/月</td></tr><tr><td>Windsurf</td><td>IDE</td><td>Agent 驱动，适合复杂项目</td><td>$15/月</td></tr><tr><td>Claude Code</td><td>终端</td><td>自然语言管理整个代码库</td><td>$20/月</td></tr><tr><td>GitHub Copilot</td><td>插件</td><td>无缝融入现有工作流</td><td>$19/月</td></tr><tr><td>Bolt.new</td><td>浏览器</td><td>快速生成前端原型</td><td>$25/月</td></tr><tr><td>Lovable</td><td>全栈平台</td><td>从描述到可运行应用</td><td>$25/月</td></tr><tr><td>Replit</td><td>云 IDE</td><td>全栈开发 + 一键部署</td><td>$20/月</td></tr><tr><td>v0</td><td>浏览器</td><td>专注 UI 组件生成</td><td>$20/月</td></tr></tbody></table></figure>



<p class="wp-block-paragraph"><a href="https://www.taskade.com/blog/best-vibe-coding-tools" target="_blank" rel="noreferrer noopener"></a></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<h3 class="wp-block-heading">⚡ Vibe Coding 的争议与困境</h3>



<p class="wp-block-paragraph">随着 Vibe Coding 的爆发式增长，一系列问题和争议也随之而来。</p>



<p class="wp-block-paragraph"><strong>App Store 的封杀潮</strong></p>



<p class="wp-block-paragraph">2026 年初，苹果开始大规模封杀 Vibe Coding 类应用。Replit、Vibecode、Rork、<a href="https://a0.dev/" target="_blank" rel="noreferrer noopener">a0.dev</a>&nbsp;等产品先后受到波及，其中 Rork 停止了 iOS 运营，<a href="https://a0.dev/" target="_blank" rel="noreferrer noopener">a0.dev</a>&nbsp;直接放弃了苹果平台。苹果的理由是：Vibe Coding 应用可以在审核后动态生成和执行新代码，违反了 App Store 审核指南第 2.5.2 条。<a href="https://36kr.com/p/3747601311220228" target="_blank" rel="noreferrer noopener"></a></p>



<p class="wp-block-paragraph">封杀的背后是应用数量的爆发式增长——美国 iOS 应用发布量同比增长 56%，审核时间从 24 小时暴增至 30 天，苹果的审核基础设施不堪重负。<a href="https://www.entrepreneur.com/business-news/app-store-submissions-are-the-highest-in-10-years" target="_blank" rel="noreferrer noopener"></a></p>



<p class="wp-block-paragraph"><strong>安全漏洞触目惊心</strong></p>



<p class="wp-block-paragraph">安全研究公司 Escape 扫描了 5600 多个 Vibe Coding 应用，发现了超过 2000 个安全漏洞、400 多个暴露的密钥以及 175 例个人隐私数据泄露，包括医疗记录和银行账号。<a href="https://36kr.com/p/3747601311220228" target="_blank" rel="noreferrer noopener"></a>Veracode 的 2025 年 AI 代码安全报告显示，45% 的 AI 生成代码存在安全漏洞。<a href="https://kissflow.com/no-code/vibe-coding-vs-no-code-vs-low-code/#target1" target="_blank" rel="noreferrer noopener"></a></p>



<p class="wp-block-paragraph"><strong>“只适合做 Demo，不适合做产品”</strong></p>



<p class="wp-block-paragraph">靠 Vibe Coding 在 72 小时内杀入 GitHub 全球贡献榜的金融背景创业者杨天润坦言：“Vibe Coding 只适合做 Demo，不适合做产品。当你只是想做一个简单的网页，它很完美；但当你要做一个复杂的商业软件时，它就可能会乱成一锅粥。”<a href="https://36kr.com/p/3747601311220228" target="_blank" rel="noreferrer noopener"></a></p>



<p class="wp-block-paragraph">写代码一直是开发中最不重要的一步，决定代码质量上限的是 AI 尚不具备的深层业务理解和复杂架构设计能力。</p>
</blockquote>



<h3 class="wp-block-heading">📦 必知的 GitHub 开源项目</h3>



<p class="wp-block-paragraph">以下是与 Vibe Coding 紧密相关的优质 GitHub 开源项目，适合不同阶段的开发者：</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">项目名称</th><th class="has-text-align-left" data-align="left">Star 数</th><th class="has-text-align-left" data-align="left">适用人群</th><th class="has-text-align-left" data-align="left">一句话介绍</th><th class="has-text-align-left" data-align="left">链接</th></tr></thead><tbody><tr><td><strong>vibe-coding-cn</strong></td><td>19.2k+<a href="https://www.sourcepulse.org/projects/20963596" target="_blank" rel="noreferrer noopener"></a></td><td>中文开发者</td><td>专为中文开发者打造的 Vibe Coding 指南，提供“道、法、术、器”四层哲学框架和可复用的 AI 结对编程工作流<a href="https://followin.io/zh-Hans/feed/24155134" target="_blank" rel="noreferrer noopener"></a>。</td><td><a href="https://github.com/2025Emma/vibe-coding-cn" target="_blank" rel="noreferrer noopener">https://github.com/2025Emma/vibe-coding-cn</a></td></tr><tr><td><strong>Awesome Vibe Coding</strong></td><td>3.1k+</td><td>所有开发者</td><td>AI 编程工具的“认知地图”，收录浏览器端、IDE、插件、CLI 等全栈工具。</td><td><a href="https://github.com/filipecalegario/awesome-vibe-coding" target="_blank" rel="noreferrer noopener">https://github.com/filipecalegario/awesome-vibe-coding</a></td></tr><tr><td><strong>AI Code Guide</strong></td><td>&#8211;</td><td>零基础入门</td><td>AI 编程路线图，系统整理 Cursor、<a href="https://bolt.new/" target="_blank" rel="noreferrer noopener">Bolt.new</a>&nbsp;等工具栈和工作流。</td><td><a href="https://github.com/automata/aicodeguide" target="_blank" rel="noreferrer noopener">https://github.com/automata/aicodeguide</a></td></tr><tr><td><strong>Context Engineering Template</strong></td><td>&#8211;</td><td>中高级开发者</td><td>上下文工程模板，通过 CLAUDE.md、PRP 蓝图等让 AI 产出更稳定。</td><td><a href="https://github.com/coleam00/context-engineering-intro" target="_blank" rel="noreferrer noopener">https://github.com/coleam00/context-engineering-intro</a></td></tr><tr><td><strong>Vibe Coding Prompt Template</strong></td><td>&#8211;</td><td>产品经理/创业者</td><td>5 步工作流（研究→定义→设计→生成指令→构建）快速构建 MVP。</td><td><a href="https://github.com/KhazP/vibe-coding-prompt-template" target="_blank" rel="noreferrer noopener">https://github.com/KhazP/vibe-coding-prompt-template</a></td></tr><tr><td><strong>Claude Code Settings</strong></td><td>&#8211;</td><td>Claude Code 用户</td><td>一套配置和指令集，将“Research → Plan → Code”理念固化到工具中。</td><td><a href="https://github.com/feiskyer/claude-code-settings" target="_blank" rel="noreferrer noopener">https://github.com/feiskyer/claude-code-settings</a></td></tr><tr><td><strong>BettaFish（微舆）</strong></td><td>36k+</td><td>进阶学习</td><td>多 Agent 舆情分析助手，20 岁大学生用 Vibe Coding 完成，登顶 GitHub 热榜。</td><td><a href="https://github.com/666ghj/BettaFish" target="_blank" rel="noreferrer noopener">https://github.com/666ghj/BettaFish</a></td></tr><tr><td><strong>Health Reminder</strong></td><td>&#8211;</td><td>实战参考</td><td>VS Code 健康提醒插件，完整展示如何用 AI 从零构建实用工具。</td><td><a href="https://github.com/yaolifeng0629/Health-Reminder" target="_blank" rel="noreferrer noopener">https://github.com/yaolifeng0629/Health-Reminder</a></td></tr><tr><td><strong>AudioNoise</strong></td><td>&#8211;</td><td>开源爱好者</td><td>Linus Torvalds 用 Vibe Coding 开发的开源音频降噪项目。</td><td><a href="https://github.com/torvalds/AudioNoise" target="_blank" rel="noreferrer noopener">https://github.com/torvalds/AudioNoise</a></td></tr></tbody></table></figure>



<h3 class="wp-block-heading">💎 总结</h3>



<p class="wp-block-paragraph">Vibe Coding 正在重塑软件开发的范式——它大幅降低了应用开发的门槛，让更多人能将创意变成现实。但它并不是银弹：目前最适合快速原型验证和个人小工具，面对复杂的商业产品仍需专业开发者的架构能力和安全知识把关。</p>



<p class="wp-block-paragraph">正如 Andrej Karpathy 本人所说，Vibe Coding 最适合的是“周末的临时项目”。<a href="https://kissflow.com/no-code/vibe-coding-vs-no-code-vs-low-code/#target1" target="_blank" rel="noreferrer noopener"></a>在 AI 真正具备深层业务理解和架构设计能力之前，人依然是编程链条中最重要的一环。善用 Vibe Coding 的关键在于：让 AI 帮你加速实现，而你负责把控方向和质量。</p>
<p>The post <a href="https://www.atomic-cube.cn/vibe-coding%ef%bc%9aai-%e6%97%b6%e4%bb%a3%e7%bc%96%e7%a8%8b%e8%8c%83%e5%bc%8f%e7%9a%84%e5%8f%98%e9%9d%a9%e4%b8%8e%e4%ba%89%e8%ae%ae/">Vibe Coding：AI 时代编程范式的变革与争议</a> appeared first on <a href="https://www.atomic-cube.cn">原立方</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.atomic-cube.cn/vibe-coding%ef%bc%9aai-%e6%97%b6%e4%bb%a3%e7%bc%96%e7%a8%8b%e8%8c%83%e5%bc%8f%e7%9a%84%e5%8f%98%e9%9d%a9%e4%b8%8e%e4%ba%89%e8%ae%ae/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
