Claude Code 推出动态工作流
推荐指数 59.0 NO. 015 · 2026.05.29
发布2026/05/28Score105Comments91
为什么值得看
Anthropic 在 Claude Code 中新增动态工作流功能,允许 AI 根据任务上下文自动调整执行步骤而非依赖预设脚本。对 AI 工程师而言,这意味着构建复杂自动化管线时无需硬编码分支逻辑,Agent 的容错性和适应性显著提升。
媒体预览
编辑判断
动态工作流的真正价值在于打破了当前 AI 编程工具"提示词即代码"的局限——Cursor、Windsurf 等工具虽然能生成代码,但执行流程仍是线性的,遇到报错需要人工介入重试。Claude Code 这次把决策权交给模型本身,相当于在 IDE 里内置了一个轻量级的 AutoGPT,但收敛性更可控。
值得警惕的是,这会让 Claude Code 与 Devin、OpenAI 的 Codex CLI 的边界更模糊,三者都在抢"AI 软件工程师"这个定位。如果你团队已经在用 Claude Code 做代码审查或重构,现在可以试点让它处理更长的端到端任务,比如从需求文档直接生成可部署的服务,观察它在哪些环节会循环卡住——这决定了它目前能替代人还是只能辅助人。
社区反馈
意见分歧 88 条评论
核心争论:动态工作流是真实生产力突破还是变相增加token消耗的营销概念
Interesting to note, not sure if this was known publicly before today's blog post: Rewriting Bun with dynamic workflows An example of what dynamic workflows can unlock at scale is the recent rewrite of Bun. Jarred Sumner used dynamic workflows to port Bun from Zig to Rust with 99.8% of the existing
I'm extremely skeptical that dynamic workflows had anything to do with this. I've been able to refactor one of the most complicated parts of our code base with similar results. Mechanical refactors are relatively straight forward for agents.
> I've been able to refactor one of the most complicated parts of our code base with similar results. Mechanical refactors are relatively straight forward for agents. A rewrite of bun in Rust is unlikely to be a trivial mechanical refactor. And if you are not sharing what the complicated parts were,