Coding agent for a small remote server?

Lovol

New Member
I do a fair amount of maintenance on small Linux servers over SSH and I’d like to have a coding agent available there for quick fixes, config changes and digging through unfamiliar projects. Most of the machines are pretty minimal though, so I don’t really want to install Node, npm and a pile of dependencies just to get an agent running. A self-contained binary that I could copy onto the server would be much more convenient, even if the project is still experimental. Are there any open-source coding agents built with that kind of setup in mind?
 

Egglex

New Member
That setup changes the priorities quite a bit. On a small server over SSH, I’d care more about how little the agent drags in with it than about having every possible feature. SAN is worth a look for that. It comes as a single Go binary with no runtime dependencies, so you can drop it onto a Linux box and use it without setting up Node or Python first.
 

Thirteenth

New Member
This is exactly the sort of machine where a coding agent shouldn’t become another thing you have to maintain. The nicer setup is copying one executable over, pointing it at the project, and getting on with the actual fix. Take a look at Gopher Code here: https://github.com/projectbarks/gopher-code . It’s a Go rewrite of Claude Code built around the single-binary idea, with no Node.js or runtime dependencies. That makes it a pretty natural fit for the kind of lightweight remote-server setup you’re describing.
 
Top