RWX
rwx.com
RWX
@rwx.com
The CI/CD platform built on a new paradigm and a bunch of good ideas. Accelerate feedback loops for humans and agents. Co-founded by @dan-manges.bsky.social and Tommy Graves
Engineers should be running autonomous coding agents in the cloud. Give the agent its own resources, and let it crank away for a long period of time without a human having to review or intervene. Here's an example of running Claude Code on RWX. Full details in the blog post ↓
August 13, 2025 at 6:45 PM
We shipped an MCP Server via the RWX CLI. Use it to have AI fix tests that failed on CI, powered by RWX tracking test failures as a semantic output.

More details in the blog post below ↓
August 9, 2025 at 12:44 AM
To accelerate performance in high iops scenarios like an npm install, we shipped support for running tasks using tmpfs.
August 6, 2025 at 11:46 PM
RWX is the only CI/CD platform that automatically caches every task. Cache keys are determined automatically, and tasks are sandboxed so that they can only access the files specified in the filter. Sandboxing is the key to ensuring there are never false positives on cache hits.
July 23, 2025 at 8:32 PM
It's really insane on GitHub Actions that when a single job fails, it cannot be retried without canceling the entire workflow. On RWX, tasks that fail can be retried immediately, even while other tasks are still running.
July 23, 2025 at 2:35 AM
We just shipped support for running arm64. Building arm containers is 10x faster without emulation. We built the initial RWX image for arm by running on x86 with qemu, and it took 14m 8s to build the image. Building arm on arm took 1m 38s.
July 22, 2025 at 2:55 AM
We just shipped an API endpoint to set vault secrets. Programmatically setting secrets is especially useful for automating secret rotation.
July 18, 2025 at 8:09 PM
We just shipped the ability to manually initiate CI runs on RWX. Engineering teams can choose to make CI opt-in to push code freely without overly running CI and incurring higher costs.
July 17, 2025 at 8:16 PM
We recently shipped support for specifying the operating system used for RWX runs. The CLI injects the default configuration, providing explicit configuration without having to write boilerplate.
July 16, 2025 at 8:07 PM
We recently shipped an RWX package to create GitHub pull requests. It's the fastest and easiest way to automate opening PRs.

The first run in the demo video had a typo in the config. Fixing it took seconds rather than minutes due to automatic content-based caching.
July 15, 2025 at 4:16 PM
We shipped a web-based file tree navigator to see files from a task's output. To make browsing as fast as possible, we implemented it in WebAssembly.
July 11, 2025 at 7:50 PM
We recently added the capability to download logs for a group of tasks. At first, we thought we were going to have to build an asynchronous user experience commonly used for batch downloads. RWX is a platform built on performance though, so we made downloads start immediately.
July 10, 2025 at 6:09 PM