Eigon
Cloud infrastructure, now with adult supervision.
Founder & technical lead
Beta
The problem
Engineers want to express intent — ship this service, wire it to that queue — and have it executed safely. Every step between the intent and the running system is where outages come from, and handing that gap to an unsupervised agent is how you get a confident model holding production credentials.
What I built
- Go control plane and worker pool running a fixed pipeline: ingest → analyse → plan → IaC → build → deploy → verify.
- BYOC on AWS — infrastructure is provisioned inside the customer's own account, so the blast radius and the bill both stay theirs.
- Framework detection reads the repository and infers what the thing actually is before proposing a plan for it.
- Every action is risk-classified, and anything mutating stops for human approval rather than proceeding on confidence.
- RBAC and audit trails on every state transition, so “who changed this and why” has an answer.
- Bounded retries, rollback and recovery — durable state means a failed deploy resumes or reverses instead of stranding half a stack.
- Multi-tenant from the first commit, because retrofitting isolation is a rewrite.
Outcome
Connects model reasoning to real, reversible infrastructure actions through a platform — planning, permissions, durable state, audit — rather than through a prompt and some optimism.
- 01 intent received✓
- 02 plan generated✓
- 03 risk: medium!
- 04 approval required⏸
- 05 change executed✓
- 06 deployment verified✓
- 07 coffee still warm☕
- Go
- AWS
- Terraform
- PostgreSQL
- LLM planning