用Cursor或Copilot写代码的人,大概都经历过这种崩溃:浏览器标签页一关、IDE一退,刚才那个陪你写了一下午的Agent就没了。明天打开,又是一个崭新的、啥也不记得的AI。
你才是那个集成层。你一离开,流程就停。
9月7日,亚马逊云科技开源的Kiro Crew,恰恰瞄准了这个痛点。这套多Agent协同系统的核心只有一个诉求:让编码任务可以跨会话持续运行,你丢完任务就走,回来收结果。它源自Amazon内部的MeshClaw项目,已经在内部服务了超过3.9万名开发者。
从Vibe Coding到异步托管,差在哪
目前大多数AI编程工具还停留在「Vibe Coding」阶段——你坐在屏幕前,跟Agent一句一句聊,它写一段你review一段,整个人被钉在工位上。效率确实提高了,但你的时间还是被绑定着。
Kiro Crew做的事,是把编程Agent从「聊天窗口里的助手」变成「后台跑着的worker」。它支持跨会话状态保持,意思是:你下午五点给它丢一个重构任务,关电脑下班,第二天早上打开就能看到结果。中间它自己规划步骤、自己调用工具、自己遇到错误重试、自己推进进度。
支撑这件事的,是三个关键设计:
第一,共享记忆与可复用Skills。多个Agent可以共享同一份项目上下文和知识库,不需要每次都重新喂代码库。Skill可以被封装复用,就像函数调用一样。
第二,多Agent并行调度。一个大任务可以拆成多个子任务,同时派出好几个Agent分头去做——有的写测试、有的改文档、有的做重构。最后汇总结果。
第三,定时触发与Webhook集成。Agent可以在特定时间自动运行(比如每天凌晨做一次代码巡检),也可以通过MCP和Webhook对接外部系统——CI挂了自动排查、issue新建了自动分配。
3.9万内部用户验证的工程化路径
Kiro Crew不是实验室里的Demo,而是在Amazon内部跑了一段时间的生产级工具。
3.9万内部开发者是什么概念?这意味着它经历过真实大规模场景的拷打——代码库的规模、任务的多样性、出错的各种奇葩情况,都不是小团队实验能模拟的。亚马逊杰出开发者布道师Darko Mesaroš在分享中说过一句话:长期运行并不意味着让模型无限循环,而是让任务能够跨越多个会话持续推进,同时保留必要的上下文、执行记录和人工干预入口。
这里面最值得注意的一点是「人工干预入口」。很多人一听到「异步Agent」就担心失控——Agent跑飞了怎么办?把代码删了怎么办?Kiro Crew的答案是细粒度的安全控制和可观测性:每一步操作都有记录、关键节点需要人确认、出了问题随时可以介入。
这才是工程化的AI编程工具该有的样子。不是酷炫的Demo,而是可管、可控、可审计、能在真实团队里落地的生产力工具。
AI编程的第一幕是Vibe Coding——你坐在屏幕前,和Agent一起写代码,效率提升了,但人还是那个瓶颈。第二幕正在拉开:异步托管的Agent在后台跑,人从「监工」变成「决策者」,真正从重复性工作里解放出来。
Kiro Crew开源只是一个起点。当越来越多的Agent从聊天框里走出来、走进后台持续运行,软件开发的协作方式会被重新定义。
明天见。
Anyone who's used Cursor or Copilot to write code has probably had this moment of frustration: close the browser tab, quit the IDE, and that agent you spent all afternoon pairing with is just gone. Open it up tomorrow, and you've got a brand-new AI that remembers nothing.
You're the integration layer. The moment you leave, the process stops.
On September 7, Amazon Web Services open-sourced Kiro Crew — a multi-agent collaborative system built to fix exactly this pain point. Its core mission is simple: let coding tasks run persistently across sessions. Drop the task, walk away, come back to results. Born from Amazon's internal MeshClaw project, it already serves over 39,000 developers internally.
From Vibe Coding to Async Hosting — What's the Difference?
Most AI coding tools today are still stuck in the "vibe coding" phase: you sit in front of the screen, chat with the agent line by line, it writes a bit, you review a bit. Your productivity goes up, but your time is still tied to the process.
What Kiro Crew does is turn coding agents from "chat window assistants" into "background workers." It supports cross-session state preservation — meaning you can drop a refactoring task at 5pm, shut down your computer, and see results the next morning. In between, it plans its own steps, calls its own tools, retries on its own when things fail, and keeps making progress.
Three key design choices make this work:
First, shared memory and reusable Skills. Multiple agents can share the same project context and knowledge base — no need to re-feed the codebase every time. Skills can be encapsulated and reused, just like function calls.
Second, multi-agent parallel scheduling. A big task can be split into subtasks, dispatched to several agents working simultaneously — one writing tests, one updating docs, one doing refactoring. Results get merged at the end.
Third, scheduled triggers and Webhook integration. Agents can run automatically at specific times (like a nightly code audit), or connect to external systems via MCP and Webhooks — auto-investigate when CI breaks, auto-triage when a new issue is filed.
The Engineering Path Validated by 39,000 Internal Users
Kiro Crew isn't a lab demo — it's a production-grade tool that's been running inside Amazon for a while.
39,000 internal developers means it's been battle-tested at real scale — the size of the codebases, the diversity of tasks, all the weird ways things can go wrong — none of that can be simulated by a small team experiment. Darko Mesaroš, AWS Principal Developer Advocate, put it this way: long-running doesn't mean letting the model loop forever. It means tasks can progress across multiple sessions while preserving necessary context, execution logs, and human intervention points.
The most important detail here is "human intervention points." A lot of people hear "async agent" and panic about loss of control — what if the agent runs amok? What if it deletes code? Kiro Crew's answer is fine-grained security control and observability: every operation is logged, critical junctures require human approval, and you can step in anytime something goes wrong.
That's what engineering-grade AI coding tools look like. Not flashy demos — but manageable, controllable, auditable productivity tools that actually land in real teams.
The first act of AI coding was vibe coding — you sit at the screen, pair with an agent, efficiency improves, but you're still the bottleneck. The second act is starting now: async hosted agents running in the background, humans moving from supervisors to decision-makers, finally being freed from repetitive work.
Kiro Crew going open source is just the starting point. As more agents step out of chat boxes and into persistent background execution, the way software development gets done will be redefined.
See you tomorrow.
You're the integration layer. The moment you leave, the process stops.
— Kiro Crew Developer Community Observation
Kiro Crew · AWS · Coding Agent · 异步执行 · 多Agent协同 · Vibe Coding · 跨会话持久化 · 3.9万开发者
Kiro Crew · AWS · Coding Agent · async execution · multi-agent collaboration · Vibe Coding · cross-session persistence · 39k developers
Sources · 信源 Sources
本文基于 Dawn Vision 认知引擎处理的 9 个源信号生成,经编辑部人工审核。素材来源:InfoQ中文、xnewthings、CSDN博客、AWS官方活动页。
This article was generated by the Dawn Vision cognitive engine processing 9 source signals, with human editorial review. Sources: InfoQ China, xnewthings, CSDN Blog, AWS official event page.