Kiro released Kiro Crew, an open source workspace that lets a coding agent keep working after a developer logs off, clearing ticket queues, tracing incidents across multiple repositories and carrying a migration through its checkpoints while nobody is watching, according to a post on Kiro’s blog. It runs on a developer’s own machine or on remote hardware they control, starting in a desktop app, a web dashboard or a terminal, and continuing through Slack, Telegram or Discord without losing its place. AI Insiders covered the server-side harness behind Kiro’s shared agent yesterday, and Kiro Crew is what that architecture was built for: a standing workspace rather than a faster way to render one chat window.
Kiro Crew started inside Amazon as an internal project called MeshClaw, built by three engineers on the Kiro CLI who wanted to launch a task and come back later to review finished output rather than watch one prompt at a time. Kiro’s team credits the momentum around OpenClaw and other self-learning agent projects for the idea, adapted to clear Amazon’s internal security bar. Within six months the tool had roughly 39,000 internal users, and close to 500 contributors had shipped 597 updates at an average of 143 commits a week, figures Kiro reports about its own rollout.
The interesting change is not the feature list. It moves the basic unit of coding work from a session to a standing workspace. A chat session ends and its context disappears with it, so the next one starts cold and the developer re-explains what already happened. A workspace that runs scheduled jobs and watches systems between conversations behaves less like a tool someone opens and more like a colleague with a defined job, one that already knows what happened overnight before the stand-up starts.
That distinction changes what gets handed off. A tool receives a prompt and a single task. A standing workspace can be handed a ticket queue, a migration or a pull request to watch until its state changes, the kind of open-ended assignment that used to go to a person.
Kiro calls the agents self-learning and self-evolving, a claim that needs pinning down rather than repeating. Concretely, three kinds of state carry over between sessions: memory of a developer’s preferences and project context, lessons distilled from corrections a developer makes along the way, and skills abstracted out of patterns that keep recurring. Kiro says all three stay visible, and an operator can inspect, edit or delete any of them. That answers the control question the phrase usually leaves open. The improvement is not a silently updated model; it is an accumulating, auditable set of notes the agent checks before acting, and the person running the workspace can roll any part of it back.
Giving an agent standing access to code and CI is also where Kiro spends the most space defending the design. It lists a sandboxed execution environment, commands blocked unless allowed, runtime guards on sensitive files and secrets, and a log of every action kept for audit, alongside an Activity view that shows each agent’s plan, tool calls and results as they happen. A developer can require sign-off before a tool fires, and the dashboard listens only on the local machine unless told otherwise. This is Kiro describing the security posture of its own product, worth noting because the project is open source on GitHub, which at least makes the claim checkable rather than only assertable.
The honest worry sits inside the same design. An agent running on a schedule, watching a deployment or clearing a queue while nobody is in the room, is exactly the setup where a small drift compounds before anyone catches it. An audit log and editable memory are a real mitigation, but only if someone actually opens the log. Today’s issue also carries an account of an agent that kept rebuilding its own tooling instead of finishing the work, a reminder that motion and progress are not the same thing.
Anyone piloting Kiro Crew beyond a sandboxed test migration should decide up front who reviews that audit log and how often, before handing the workspace a live ticket queue or an unattended production heartbeat to watch.
Kiro described Kiro Crew’s launch, its Amazon origins and its memory and skills system in a post on its own blog.