---
---
title: "Libcage: the only pure-C LLM coding agent"
slug: libcage-launch
summary: "Why we built a 21KB zero-dependency C agent for autonomous code repair — and what it's for."
tags: [libcage, coding-agent, self-hosted, release]
date: 2026-08-16
---
Every autonomous coding agent today ships on Python or Node. That's fine on a
developer laptop. It's a dead end everywhere else: the embedded box, the
air-gapped CI runner, the minimal container with no venv you trust.
**Libcage** is the exception. A 21KB binary, zero dependencies — libc and POSIX
sockets only. It calls any OpenAI-compatible `/chat/completions` endpoint, reads
your broken file, applies the fix, compiles, and tests in a loop until it's
green.
```
libcage "Fix the off-by-one in parse()" broken.c \
"cc -o out broken.c" "./out"
```
All one-time, local-first. Get it: [Libcage](https://aiautomatedsystems.ca/p/libcage) ·
[Pro](https://aiautomatedsystems.ca/p/libcage-pro) ·
[Team](https://aiautomatedsystems.ca/p/libcage-team) ·
[GitHub](https://github.com/Hardonian/libcage).
---
<!-- hermes-crosslink -->
**Get the production-ready version**