Hax: A Minimalist Terminal-Native Coding Agent in C
Hax is a minimalist, terminal-native coding agent written in C. It ships as a single native binary with minimal dependencies, starts instantly, and uses only a few MB of RAM — leaving more memory for your local LLMs.
Key Features
- Lightweight by design: A single native C binary with a small dependency set. Starts instantly and uses a very small amount of memory (just a few MBs) — so more RAM is left for your local LLMs.
- Local models are first-class: Hax auto-discovers the model and runtime capabilities. No custom provider config block needed for the default setup. Example:
llama-server -m [model].gguf
hax --provider llama.cpp
-p one-shot mode with resume hints on stderr, plain-text config and session files, composition via subprocesses instead of plugins.Who It's For
Developers who live in the terminal, run local models, audit what their tools do, package software for distros, or run agents where resources are scarce. If you want MCP marketplaces, a plugin runtime, IDE panels, or per-command permission prompts, other agents build exactly that — hax deliberately doesn't, and docs/philosophy.md explains each omission.
Getting Started
Hax runs on Linux and macOS; on Windows, use it under WSL. Install with Homebrew:
brew install oleksandrchekhovskyi/hax/hax
On Arch Linux, hax is in the AUR as hax. On any Linux, download the prebuilt static binary (x86_64 or aarch64) from the latest release and put it on your PATH.
Build from source:
git clone https://github.com/OleksandrChekhovskyi/hax.git
cd hax
scripts/install_deps.sh # Debian/Ubuntu, Fedora, Arch, openSUSE, Alpine, macOS
make # binary at ./build/hax
make install # optional; may prompt for sudo
Run hax from the project directory you want it to work in:
hax # interactive REPL
hax -p "list TODOs" # run one prompt and print the final answer
printf "explain x" | hax -p # read prompt from stdin
hax -c # continue the latest session for this directory
hax --resume # pick a past session for this directory
hax --resume=ID -p "next" # resume a specific session in one-shot mode
The easiest first run is interactive: start hax, then use /provider to see available providers and choose a model. Hax remembers interactive provider, model, and effort selections. See the README for provider setup and full documentation.
📖 Read the full source: HN AI Agents
👀 See Also
CTOP: Terminal UI to Monitor Claude Code Sessions, Zero Deps
CTOP is a zero-dependency Node.js TUI that shows CPU, memory, context window saturation, token breakdown, and cost estimates for all running Claude Code and Codex sessions.

Memex: Open-Source Memory Plugin for Claude Cowork
Memex is an open-source plugin that gives Claude Cowork persistent memory across sessions using a tiered context loading system. After running /memex:init once, Claude briefs itself in about 20 seconds per session and picks up where you left off.

Open-source AI job search system built with Claude Code evaluates offers, generates tailored resumes
A developer open-sourced a Claude Code project that turns your terminal into a job search command center. The system evaluates job offers across 10 dimensions, generates ATS-optimized PDF resumes, scans 45+ company career pages, and includes 14 skill modes.

ACO System: Open-Source Multi-Agent Pipeline from GitHub Issue to Merged PR
ACO System is an open-source multi-agent framework that autonomously runs a full software pipeline—from GitHub Issue to merged PR—using six specialized AI agents. Features a deterministic Architect gate that blocks hallucinations.