OpenClaw Adds a Claude Session Fleet and Production Cloud Workers OpenClaw has added a Claude session fleet and production cloud workers, evolving from a local agent runner to an infrastructure-grade agent platform. The session fleet enables managing multiple Claude sessions as a pool for queueing, isolation, and fair scheduling, while cloud workers include production bundles, pinned SSH bootstrap, and an admission handshake for self-hosted agent platforms. Additional commits improve run-staleness policy, CI testing, and type safety. OpenClaw took a clear step this window from "agent you run locally" toward "agent you run as infrastructure." Two commits do the heavy lifting. The first adds a Claude session fleet . Rather than one Claude session per user or per task, OpenClaw can now manage a pool of sessions as a unit — start, track, and tear down many at once. For anyone running agents across a team, a fleet is the primitive you need before you can do queueing, isolation, and fair scheduling. It is also the piece that makes "one agent per repo" or "one agent per PR" tractable instead of a shell script you maintain by hand. The second is bigger: cloud workers with production worker bundles, pinned SSH bootstrap, and an admission handshake . Read the parts: Combined, that is the skeleton of a self-hosted agent platform you could point at real work. Other OpenClaw commits round out the theme: a refactor that converges run-staleness policy onto a diagnostic activity owner , a CI improvement that shortens the compact PR test critical path , and tooling that enforces no-floating-promises and drops DOM globals from Node-side typechecking . That last one matters for a project this size — it stops frontend types from leaking into the server and causing runtime surprises. OpenClaw is leaning into the same "run agents like a platform" space that Hermes covers with its process supervisor and cron model https://dev.to/blog/hermes-cron-jobs-scheduled-automation-tasks/ . If you want fleet-style control without a vendor, this is the branch to watch. The multi-agent orchestration writeup https://dev.to/blog/hermes-multi-agent-orchestration-moa-mixture-of-agents/ is a useful frame for what a session fleet is really buying you.