Skip to content
HN On Hacker News ↗

GitHub - AntigmaLabs/ante: Ghost in your shell. Ante is a self-contained agent harness with a highly optimized core. It works like Claude Code or Codex, with none of their dependencies or model constraints.

▲ 169 points 93 comments by ubermon 2w ago HN discussion ↗

Pangram verdict · v3.3

We believe that this text is a mix of AI and human-written content.

64 %

AI likelihood · overall

Mixed
29% human-written 71% AI-generated
SEGMENTS · HUMAN 3 of 9
SEGMENTS · AI 1 of 9
WORD COUNT 1,441
PEAK AI % 83% · §7
Analyzed
Aug 11
backend: pangram/v3.3
Segments scanned
9 windows
avg 160 words each
Distribution
29 / 71%
human / AI fraction
Verdict
Mixed
Pangram v3.3

Article text · 1,441 words · 9 segments analyzed

Human AI-generated
§1 Mixed · 38%

Alpha preview: expect breaking changes and incomplete functionality. macOS and Linux only; on Windows we suggest WSL. Read this first Two things many people ask about: Where is the source? The core harness currently ships as a prebuilt binary; this repo holds the docs, protocol, SDK, and eval pipeline (details).

§2 Human · 24%

We are working out a way to ship the source code along with the binary, to address security and privacy concerns first, while taking the time to figure out how open source should work in the agentic era. If you have concerns today, run Ante in a sandbox: it is a single binary with minimal runtime dependencies, built to be easy to deploy in a container or on a remote machine. Is there telemetry?

§3 Mixed · 68%

Yes, and it is opt-out: set ANTE_TELEMETRY=off to disable export entirely. What it sends is anonymous — a random installation label you can delete and re-mint, never your username, hostname, or machine id. The RUST_LOG filter also applies to exported logs, a convenience carried over from the Rust ecosystem.

§4 Human · 17%

A better UX is in the works. Details → A ghost in your shell. Ante is a self-contained coding agent that lives in your terminal and self-organizes. One ~15MB Rust binary from Antigma Labs, zero runtime dependencies, built to get the most out of any model. It works like Claude Code or Codex, with none of their dependencies or model constraints. It can also be the optimized core for building your own harness and high-performing assistants. curl -fsSL https://ante.run/install.sh | bash ante Every agent claims to be good.

§5 Mixed · 54%

Here are numbers you can check: 🥇 Continuously evaled and evolved, in public Ante runs Terminal-Bench 2.1 continuously under official leaderboard constraints: 89 tasks, 5 trials each. Each result pins the exact build you can download and links the raw Harbor run for independent audit.

§6 Mixed · 41%

Latest full run: 82.7% with open-weight DeepSeek V4 Flash 0731 (368/445 trials, Ante 0.preview.71, about $68 of inference). DeepSeek reports the same 82.7 for this model, measured with its unreleased DeepSeek Harness in minimal mode.

§7 AI · 83%

Live results → · Methodology → 🪶 A fraction of the footprint Ante is hand-written Rust with the heavy parts (Grep, git) embedded in one binary, one process, and local inference handled by a pinned, managed llama.cpp. Across the same 20 parallel tasks in Docker, Ante uses ~7× less peak memory, ~9× less average CPU, and ~5× less disk I/O than Claude Code. Raw numbers → · Benchmark details → 🔌 Natively offline Ante's inference engine is a pinned, managed version of llama.cpp. Point it at a GGUF file and the whole loop runs on your machine: no API key, no account, no internet. ante --offline-model ~/.ante/models/Qwen3.5-9B-Q4_K_M.gguf \ -p "add error handling to src/main.rs" Offline mode → · nanochat-rs, a toy engine for study → The three are one design decision. An agent you can verify, afford, and run anywhere is light enough to run by the thousands: the substrate for self-organizing intelligence. See it in action See all cookbook guides Quick Start Installation Ante is a single, self-contained binary with no external dependencies: download and run. curl -fsSL https://ante.run/install.sh | bash # Install a specific release channel curl -fsSL https://ante.run/install.sh | bash -s -- nightly # Install into a directory already on PATH curl -fsSL https://ante.run/install.sh | ANTE_INSTALL_DIR=/usr/local/bin bash Modes Mode Command Use it for Interactive TUI ante day-to-day work in the terminal Headless ante -p "..." one-shot tasks, scripts, CI Server ante serve editor plugins and integrations, over a JSONL protocol Gateway ante gateway running Ante as a Slack or Discord bot Headless examples # Fix a bug ante -p "find and fix the failing test in src/auth" # Review a diff git diff | ante -p "review this for security issues" # Use a different provider ante --provider openai --model gpt-5.5 -p "refactor the database module" # Resume a saved session ante --resume ses_01ARZ3NDEKTSV4RRFFQ69G5FAV -p "now add tests" # Run fully offline with a local GGUF model ante --offline-model ~/.ante/models/Qwen3.5-9B-Q4_K_M.gguf \ -p "add error handling to src/main.rs" Update Ante ante update # One-off update from a different channel ante update --channel nightly # Roll back or pin to an exact release ante update --version v0.preview.71 Beyond the headline numbers Zero vendor lock-in: bring your own API key, subscription, or local model. Switch between 12+ providers freely. No account required, not even with us. Multi-agent orchestration: spawn sub-agents and coordinate complex tasks across independent, decentralized, and centralized architectures. See the patterns → Channel integrations: run Ante as a Slack or Discord bot with ante gateway. Extensible: custom skills, sub-agents, MCP, and persistent memory across sessions. Supported Providers Ante works with 12+ providers out of the box: Provider Example Models Anthropic Claude Sonnet 4.5, Opus 4.6 OpenAI GPT-5 family Google Gemini Gemini 3 family Grok (xAI) Grok 4 Open Router Multiple providers Local (GGUF) Any GGUF model via built-in llama.cpp ...and more Vertex AI, Zai, Antix, OpenAI-compatible Configure providers via environment variables (ANTHROPIC_API_KEY, OPENAI_API_KEY, etc.) or OAuth. Add custom providers in ~/.ante/catalog.json. What's in this repo We open sourced what really matters in the age of agentic coding, all under Apache 2.0: Detailed documentation, the descriptive truth. docs-site/ is the source for docs.antigma.ai: a precise description of what the harness does and how to drive it. The protocol, the algorithm of the core. crates/protocol-shape defines the schema and wire messages spoken by ante serve; crates/agent-sdk is the Rust SDK and client for building against agent runtimes. The eval pipeline, constraint and continuous improvement. ante-harbor/ is the Harbor agent adapter behind our Terminal-Bench results: use it to reproduce any run at antigma.ai/eval. CHANGELOG.md records the improvement, release by release. The core harness itself is developed in a private repository during the alpha and ships as a prebuilt binary via releases. Core libraries from it are included here progressively as they stabilize; crates/exec, standalone process execution, is the first. The protocol surface maps to Ante's client-daemon architecture: ┌─────────────────────────────────────────────────────────────┐ │ Clients │ │ │ │ ┌───────────┐ ┌───────────┐ ┌────────────────────┐ │ │ │ TUI │ │ Headless │ │ ante serve │ │ │ │ (ante) │ │ (ante -p) │ │ (stdio / ws) │ │ │ └─────┬─────┘ └─────┬─────┘ └─────────┬──────────┘ │ └─────────┼────────────────┼─────────────────────┼────────────┘ │ │ │ ▼ ▼ ▼ ┌─────────────────────────────────────────────────────────────┐ │ Daemon │ │ │ │ Session ──▶ Turn ──▶ Step │ │ │ │ ┌──────────┐ ┌──────────────┐ ┌───────────────────┐ │ │ │ Tools │ │ Permission │ │ Skills / Agents │ │ │ └──────────┘ └──────────────┘ └───────────────────┘ │ └────────────────────────┬────────────────────────────────────┘ │ ▼ ┌─────────────────────────────────────────────────────────────┐ │ LLM Providers │ │ │ │ Anthropic · OpenAI · Gemini · Grok · Open Router · Local │ └─────────────────────────────────────────────────────────────┘ The bigger picture We care about the harness, not the model or the prompts. Documentation is the new source code. Ante is designed for cellular-native agents: like cells in an organism, tiny, expendable, massively replicated. That thesis is why the three headline claims exist. A cell-scale agent must be verified (reliability compounds at scale), tiny (every byte is multiplied by thousands), and self-contained (no runtime to install, no service to phone home to).

§8 Human · 24%

Read more in our philosophy and agent organization patterns. FAQ Why another terminal agent? The name is the answer: Another Terminal agent, and ante, the stake you put on the table to play. Ante is fast, lightweight, and the only terminal agent with native local inference built in. We believe a self-contained agent core that self-organizes is the foundation of the coming agent economy. How is Ante different from other agents? Ante has most of the features you expect from agents like Claude Code or Codex: multi-agents, skills, MCP, persistent memory. The difference is the build philosophy. Built from scratch in Rust. Core components like Grep (fully rebuilt and customized) and git are embedded in the same ~15MB binary and run in the same process at runtime, so nothing is shelled out and no resources leak.

§9 Mixed · 67%

Most similar projects ship on Node.js or CPython and carry an order-of-magnitude larger footprint. Local inference is built in: the engine is a pinned, managed version of llama.cpp, so a local GGUF model is all Ante needs to run without any provider. To study how such an engine works, see nanochat-rs, our toy version. No vendor lock-in, not even to ourselves: no account needed, reuse your existing API credentials. An opt-in, fully integrated server-side experience lives at antix.antigma.ai. Every claim is backed by public, reproducible benchmarks of the exact builds we ship: antigma.ai/eval. Beyond the footprint it comes down to agent architecture, and ultimately to who is building it and with what philosophy. Anyone can fork a binary; taste and engineering rigor don't copy. Those differences leak into every detail of the product.