Truly continuous integration: ensuring pull requests from agents have passing builds
Traditional CI runs after you make changes. Iterate, validate locally, commit, push, wait.
With the rise of coding agents, this segmented workflow is too slow. It's not always feasible for an agent to validate its changes locally without the advantages of distributed, parallelized remote CI infrastructure. And nobody wants to review PRs produced by agents that hasn't produced a passing build yet.
RWX CLI v3.0.0 introduces new tools to tighten the feedback loop for developers and their agents:
- Start a run and wait for it to complete with
rwx run --wait - Inspect what happened with
rwx results - Grab what you need to troubleshoot failures with
rwx logsandrwx artifacts - All commands now support machine-readable
--output json
RWX's DAG-based execution and content-based caching already creates blazing fast feedback loops. And because you can trigger CI without the extra loop of pushing and pulling git commits or building container images, your changes begin validating immediately.
RWX tasks are inherently sandboxed and have explicitly specified dependencies. You can run an agent locally (or in the cloud) and have it validate its changes without it needing any local access to secrets or an up-to-date local development environment.
This means developers and agents can now iterate on a change until CI passes - without a single commit or push:
These changes are available starting with RWX CLI 3.0.0.
Related posts

September 9, 2026
Trigger RWX CI and Sandboxes from Jujutsu repos
RWX CLI 3.27.0 adds support for running CI and Sandboxes from Jujutsu repos, including non-colocated repos with no .git directory.

September 8, 2026
Cursor and RWX bring first-class CI integration to Origin's marketplace
RWX is now an official marketplace integration of Cursor Origin. Teams using Origin can trigger CI runs and report results natively with RWX today.
