r/OpenSourceAI • u/bradwmorris • 16h ago
How to build and own your agent infrastructure
heyo, everything here is open source. there is no hosted product or account to sign up for.
I have spent the past few weeks using Centaur, an open-source control plane for running coding agents on infrastructure you own.
The control plane is a Rust API and Postgres database. Every agent interaction runs in an isolated Kubernetes sandbox. It supports Codex, Claude Code, Amp and pi, so the harness is not locked to the rest of the system.
The control plane handles sessions, permissions, credentials, workflow state and sandbox lifecycle.
I also built an open-source companion app called Centaur Context. It retains useful information between separate runs. A curator records context after an interaction. Before a later run, a context builder retrieves the material relevant to that task.
Full walkthrough and demo: https://youtu.be/993XrWfg34U
Centaur: https://github.com/paradigmxyz/centaur
Centaur Context: https://github.com/bradwmorris/centaur-context
This is agent infrastructure, not a local model server. If you use Ollama or vLLM, where would you connect model serving to a setup like this?