# Show HN: Let coding agents work across your laptop, remote machines, and S3

> Source: <https://github.com/vasinov/ridge-core>
> Published: 2026-09-10 17:27:36+00:00

I wanted to use Codex on my laptop to run kernel optimization experiments on my GPU box, with models stored in S3. That meant having Codex figure out file transfers and remote execution just to get an experiment running. Lots of opportunities to get something wrong before touching the actual kernel. Then what happens in the next session? Either Codex figures it out again, or the previous session leaves behind scripts and instructions. That works, but now there's a small infrastructure project to maintain along with the actual experiments.

I decided to try out a more streamlined approach and started building Ridge. It gives agents common operations for accessing data and running commands across different environments, through MCP, a CLI, or Python. Local, SSH, Docker, and S3 are the initial providers. Copying a model from the bucket to the GPU box is one operation. There's also support for giving subagents narrower access and coordinating operations on shared resources with locks.

I'm curious who else has run into this. What were you trying to do, and what did you end up building to make it work? Would appreciate feedback on the approach.

Comments URL: [https://news.ycombinator.com/item?id=49647368](https://news.ycombinator.com/item?id=49647368)

Points: 1

# Comments: 0
