Kelos is a Kubernetes framework for orchestrating autonomous AI coding agents (like Claude Code) in ephemeral pods.<p>The original goal was sandboxing — I didn't want to run agents with --dangerously-skip-permissions locally. But the real unlock turned out to be declarative workflows. You defin...
Stories by gjkim042
I started Axon to run claude --dangerously-skip-permissions safely — just isolate it in an ephemeral K8s Pod and the flag isn’t dangerous anymore.<p>It grew into an orchestration tool. You apply a Task, Axon spins up an isolated Pod, the agent works autonomously, and you get back a PR link, branch n...
Kelos is a Kubernetes framework for orchestrating autonomous coding agents. It runs Claude Code, Codex, Gemini, OpenCode, or custom agents safely in isolated, ephemeral pods.<p>The idea is that you define your everyday development workflows as YAML and let them run continuously on Kubernetes. Agent ...
I built Axon, an open-source Kubernetes controller that turns AI coding agent runs into a declarative API. I can define my development workflow in YAML so that Axon handles the rest — isolation, credentials, git workspace, agent plugins, output capture.<p>I use it to develop Axon itself. I run a tea...
Hi HN,
I originally started this project simply to safely run autonomous coding agents (like Claude in auto-mode) in isolated environments. But as I built it, I realized the potential was much bigger than just sandboxing: it's about making a coding agent callable like a standard API, and ultima...