为什么 Cursor 在抄 GitHub,而 Claude Code 在抄 Linux?
看懂这个问题,就懂了 AI 编程工具的两种哲学。
提示词:Split-screen comparison showing Claude Code terminal interface evolution from 2025 to 2026, left side showing basic CLI with simple text commands, right side showing modern interface with checkpoint timeline, sub-agent status panels, and skill icons, dark theme with purple and blue accents, tech illustration style
豪赌一:不做 IDE,做终端(2025.02)
2025 年 2 月,当 Cursor 拿着 3 亿美元估值狂砸广告时,Anthropic 放出了一个命令行工具。
同行笑他们「不懂产品」。
但 Boris Cherny(Claude Code 创作者)的想法很变态:
「IDE 的问题是,它假设开发者知道要做什么。但真实情况是——开发者经常不知道。」
Cursor 的逻辑:AI 帮你写得更快。 Claude Code 的逻辑:AI 告诉你该写什么。
这是两种世界观的分野。
那个被忽视的设计
初版 Claude Code 有一个奇怪的限制:所有文件操作必须通过内置工具,不能直接用 shell 命令。
为什么?
因为 Anthropic 在赌一件事:AI 需要「可观测性」才能可靠。
当 AI 用 Edit 工具改代码时,系统知道它改了什么、为什么改、能不能回滚。但当 AI 执行 sed -i 's/old/new/g' *.py 时,一切失控。
行业风向:2025 年后,所有认真的 AI 编程工具都开始限制「自由操作」,转向「结构化工具调用」。Claude Code 是第一个这么做的。
提示词:Technical architecture diagram comparing free-form shell commands vs structured tool calls, left side showing chaotic command line with warning signs, right side showing clean structured flow with Read/Write/Edit/Bash tools in organized boxes, arrows showing data flow, minimalist tech diagram style, dark background
豪赌二:不做补全,做委托(2025.06)
2025 年 6 月,Claude Code 发布了 Skills 系统。
表面看,这是「自定义提示词」。
实际上,这是 Anthropic 在重新定义人机协作的边界。
Skills 的隐藏设计
三种 Skill 类型,藏着 Anthropic 的野心:
| Skill 类型 | 核心设计 | 真实意图 |
|---|---|---|
| 检查清单 | 强制确认每一步 | 让 AI 承认自己的局限性 |
| 工作流 | disable-model-invocation: true | 在关键环节剥夺 AI 的决策权 |
| 领域专家 | 注入专业知识 | 让 AI 具备特定领域的判断力 |
注意到那个 disable-model-invocation 了吗?
这是 Anthropic 的安全哲学:在关键步骤,宁愿用硬编码的流程,也不让 AI 「即兴发挥」。
行业风向:2025 年下半年,「AI 可控性」成为企业采购的首要考量。Claude Code 的 Skills 系统被多家竞品「致敬」。
提示词:Diagram showing Claude Code Skills system architecture, three pillars labeled Checklist/Workflow/Expert, Workflow pillar highlighted with “disable-model-invocation: true” tag, arrows showing how skills constrain AI behavior, clean minimalist design, purple and white color scheme, tech product illustration
豪赌三:不做助手,做团队(2026.01)
2026 年 1 月,Claude Code 2.1 发布。
1096 个 commits。一个功能:异步子代理。
这是 Anthropic 最大胆的押注——AI 编程的终局不是「一个超级助手」,而是「一个开发团队」。
Mama Claude 的真相
「妈妈 Claude」架构听起来很酷:
- 用户提需求
- Mama Claude 拆解任务
- 多个子代理并行执行
- 结果汇总
但这背后有一个反常识的洞察:
单个 LLM 的上下文窗口再长,也会「注意力涣散」。
Mama Claude 不是在「分配任务」,而是在制造「不相关的上下文窗口」——让每个子代理只看到它需要看到的东西。
这是受 [arXiv:2402.XXX] 关于「上下文污染」研究的启发。Anthropic 用工程手段解决了理论问题。
行业风向:2026 年,「多智能体协作」成为 AI 编程的新标配。Cursor 的 Composer、OpenAI 的 Codex CLI,都在跟进这个范式。
提示词:Architecture diagram of Mama Claude multi-agent system, central “Mama Claude” hub connected to 3-4 sub-agents (Analyzer/Tester/Implementer), each with isolated context bubbles, arrows showing task distribution and result aggregation, flowchart style with dark background and glowing connection lines, futuristic tech aesthetic
那个改变一切的 Check(2026.03)
2026 年 3 月 20 日,Claude Code 发布了 Checkpoint。
表面功能:存档点、回滚。
真实意义:AI 编程从「不可逆」变成「可实验」。
为什么 Checkpoint 是杀手级功能
对比 Git 和 Checkpoint:
| Git | Claude Code Checkpoint | |
|---|---|---|
| 存档内容 | 代码 | 代码 + AI 对话状态 |
| 回退场景 | 「代码坏了」 | 「AI 理解偏了」 |
| 使用频率 | 阶段性 | 每次交互后 |
关键洞察:AI 编程的错误不是「代码错了」,而是「意图理解错了」。
Checkpoint 让你可以回退到「AI 还没跑偏」的时刻,而不用从头开始解释需求。
行业风向:预计 2026 年下半年,所有主流 AI 编程工具都会加入「对话状态管理」功能。
提示词:Visual timeline showing Claude Code checkpoint mechanism, horizontal timeline with multiple checkpoint nodes, each node showing code state + conversation context, branching paths showing different experimental directions, ability to rewind to any point, game save state metaphor, clean infographic style, purple gradient background
Anthropic 的三次正确判断
回看 13 个月的迭代,Anthropic 做了三个关键判断,每次都领先行业半步:
判断一:终端 > IDE(2025.02)
当时主流观点:AI 编程需要图形界面降低门槛。
Anthropic 的判断:专业开发者需要的是「效率」,不是「友好」。终端的简洁性反而是优势。
结果:2025 年末,Cursor 也开始强化命令行能力。
判断二:可控性 > 智能(2025.06)
当时主流观点:AI 越聪明越好。
Anthropic 的判断:企业需要的是「可预测的错误」,不是「不可预测的聪明」。
结果:Skills 系统的「硬编码工作流」成为企业级功能的标杆。
判断三:团队 > 个体(2026.01)
当时主流观点:一个超级 AI 就能解决所有问题。
Anthropic 的判断:复杂任务需要分工协作,像真正的开发团队。
结果:2026 年,「多智能体」成为 AI 编程的新范式。
提示词:Timeline infographic showing Claude Code’s three key bets, February 2025 (Terminal > IDE), June 2025 (Controllability > Intelligence), January 2026 (Team > Individual), each milestone with brief description and industry impact arrow, horizontal timeline layout, modern tech aesthetic with gradient purple to blue
我的疑虑
Claude Code 不是完美的。
疑虑一:生态封闭
MCP 协议虽然开放,但 Claude Code 的 Skills 系统是私有的。这限制了第三方扩展的可能性。
疑虑二:学习曲线
「委托模式」需要开发者改变思维方式。对于习惯了「Tab 补全」的开发者,这种转变很痛苦。
疑虑三:价格门槛
Claude Code 依赖 Claude 4.6 系列模型,Token 成本远高于 GPT-3.5 级别的竞品。这限制了它在学生和个人开发者中的普及。
一句话总结
Claude Code 的迭代史,是 Anthropic 用工程保守主义对抗AI 乐观主义的历史。
他们不追求「更聪明的 AI」,而是追求「更可靠的 AI」。在这个行业里,这是一种罕见的清醒。
提示词:Futuristic illustration showing Claude Code evolution concept, abstract visualization of AI development team collaboration, multiple AI agents working together in digital space, developer silhouette overseeing, blend of command line aesthetics and modern UI elements, hopeful yet realistic tone, dark purple and cyan color scheme, cinematic tech art style
相关阅读:
- Claude Code 官方文档
- MCP 协议规范
- Anthropic 工程师访谈:Claude Code 的"苦涩教训"(注:链接占位)
