Tool

Run autonomous coding agents in your terminal or CI pipeline

Self-contained ~15MB Rust terminal coding agent with native offline inference and zero runtime dependencies.

Works with slackdiscordgithubgitopenai

91
Spark score
out of 100
Updated 4 days ago
Source checked Sep 17, 2026
Version 0.preview.99
Models
claude

Add to Favorites

Why it matters

Deploy a lightweight, self-contained coding agent that generates, reviews, debugs, and tests code across any model or provider-locally, in CI, or as a bot-with verified performance benchmarks and minimal resource overhead.

Outcomes

What it gets done

01

Generate and refactor code using any LLM provider or offline GGUF models

02

Review diffs and debug failing tests with context-aware analysis

03

Orchestrate multi-agent workflows for complex coding tasks

04

Integrate coding assistance into Slack, Discord, or editor plugins via JSONL protocol

Source

Get it from source

Spark does not host a copy of it.

Open source

Reports

Agent outcome reports

No reports yet

Overview

Ante

Ante is a self-contained, roughly 15MB Rust coding agent for the terminal with native offline inference, support for 12+ LLM providers, and continuously published Terminal-Bench 2.1 results. Use it for lightweight terminal coding work, offline agent use with a local model, or scaling coding agents across many parallel or orchestrated instances, understanding it is still an alpha preview.

What it does

Ante is a self-contained coding agent that lives in your terminal, shipped as one roughly 15MB Rust binary from Antigma Labs with zero runtime dependencies. It works like Claude Code or Codex, without their dependencies or model constraints, and can also serve as the core for building your own harness or assistants. It runs continuously against Terminal-Bench 2.1 under official leaderboard constraints (89 tasks, 5 trials each), with the latest full run scoring 82.7% using open-weight DeepSeek V4 Flash 0731 (368/445 trials, about $68 of inference) - a figure DeepSeek independently reports for the same model under its own harness. Across 20 parallel tasks in Docker, Ante measured roughly 7x less peak memory, 9x less average CPU, and 5x less disk I/O than Claude Code, because heavy components like Grep, git, and local inference are embedded in one binary and process rather than shelled out. It ships its own inference engine, so pointing it at a local GGUF file runs the whole loop with no API key, account, or internet connection.

When to use - and when NOT to

Use Ante for day-to-day terminal coding work, one-shot headless tasks in scripts or CI, as a long-lived server for editor plugins over a JSONL protocol, or as a Slack/Discord bot via its gateway mode. It works with 12+ providers out of the box (Anthropic, OpenAI, Google Gemini, Grok, OpenRouter, Vertex AI, and more) with no vendor lock-in and no account required, or fully offline with a local GGUF model via its built-in llama.cpp engine. It is an alpha preview: expect breaking changes and incomplete functionality, and it supports macOS and Linux only, with Windows users directed to WSL. The core harness itself is developed in a private repository during alpha and shipped as a prebuilt binary under separate Binary Preview Terms, though the SDK, protocol crates, docs, and eval pipeline in this repository are licensed under Apache 2.0.

Inputs and outputs

curl -fsSL https://ante.run/install.sh | bash
ante

Four modes cover different workflows: the interactive TUI (ante) for day-to-day terminal work, headless mode (ante -p "...") for one-shot tasks and scripts, server mode (ante serve) for editor plugins over a structured JSONL protocol, and gateway mode (ante gateway) for running as a Slack or Discord bot. Headless examples include fixing a failing test, piping a git diff in for security review, switching providers with --provider openai --model gpt-5.5, resuming a saved session with --resume, and running fully offline with --offline-model ~/.ante/models/<file>.gguf. Custom providers and models are added via ~/.ante/catalog.json.

Integrations

Ante's client-daemon architecture routes the TUI, headless CLI, and ante serve clients through one daemon (Session, Turn, Step) that manages tools, permissions, and skills/agents before reaching an LLM provider. It supports multi-agent orchestration - spawning sub-agents and coordinating tasks across independent, decentralized, or centralized architectures - plus custom skills, MCP, and persistent memory across sessions. The open-source parts of the repository include docs-site/ (the documentation source), crates/protocol-shape (the wire protocol ante serve speaks), crates/agent-sdk (a Rust SDK for building against agent runtimes), and ante-harbor/ (the Harbor adapter behind its public Terminal-Bench results, reproducible at antigma.ai/eval).

Who it's for

Developers who want a lightweight, dependency-free terminal coding agent that can run fully offline, switch freely between many model providers, and scale down cheaply enough to run in large numbers of parallel or orchestrated instances.

Source README

Ante - One harness to run them all

Ante

A ghost in your shell. Ante is a self-contained coding agent that lives in your terminal and self-organizes. One ~15MB compressed download from Antigma Labs that expands to a single Rust executable with 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

We care about the harness, not a co-trained model or a secret prompt. The harness and the model are a dynamic duo: they should evolve together but not be bound together. Prompts belong to the user.

Ante makes this declarative: one settings profile can define the whole agent, replacement system prompt included.

🥇 Continuously evaluated and evolved in public

We evaluate Ante as a harness across different model families instead of coupling it to one hero model. Ante runs Terminal-Bench 2.1 continuously under official leaderboard constraints: 89 tasks, 5 trials each. Each result pins the exact Ante build you can download and links the raw Harbor run for independent audit. Latest full run: 83.9% with open-weight DeepSeek V4.1 Flash (370/445 trials, Ante 0.preview.98, about $18 of inference).

Same model, different harness

Benchmark summary for five agent harness configurations running the same DeepSeek model

Live cross-model results → · Same-model harness comparison → · Methodology →

🪶 A fraction of the footprint

Ante is hand-written Rust: the heavy parts (Grep, git) are embedded in one binary and one process, and local inference is handled by a 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"

We think about the engine layer in public too. nanochat-rs is a small GPT inference core we wrote in pure Rust on candle: readable, runnable, and living in the same process as the code that calls it. It is a study project rather than part of the binary, published because in-process inference is where local models get interesting for agents.

Offline mode → · nanochat-rs → · Where this is going →


These three properties 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

Models, Providers & Thinking

Providing Context: Files & Folders

Interrupting & Steering

Subscription Login

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 (--fullscreen for alternate screen)
Headless ante -p "..." one-shot tasks, scripts, CI
Server ante serve editor plugins and integrations, over stdio, socket (--sock), or WebSocket
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.6 -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.99

One binary, many agents

Ante's behavior lives in a settings file, and --profile <name> swaps that file per run: system prompt, tool set, skills, memory. The same binary can be a full assistant in one terminal and a minimal agent in the next.

For project-specific workflows, Ante also respects .ante/settings.json at your repository root, layering team settings (such as enabled MCP servers, allowed tools, and default models) right alongside user preferences.

Curated profiles demonstrate how flexible this is:

  • pi: Strips Ante down to four tools (Read, Write, Edit, Bash) and a short replacement system prompt; file search runs through rg, subagents through ante -p "<task>", web access through curl.
  • plan: A read-only research and planning agent with file mutations disabled, designed to produce an implementation plan before you execute.
cp curated/pi.settings.json ~/.ante/
ante --profile pi

A profile replaces the whole settings file, so anything it omits falls back to Ante defaults, and explicit CLI flags still win. Ante also ships a built-in bare profile for stripped-down runs: no skills, MCP servers, session saving, or auto-memory. Share what you build in curated/.

Named profiles → · Project settings → · Curated profiles →

Supported Providers

Bring your own API key, subscription, or local model; no account required, not even with us. Provider support comes in two layers.

Built-in presets we maintain. 17 presets, each tested and kept current, so the per-provider quirks are already handled: wire dialect, API key and OAuth flows, thinking and streaming behavior.

Provider Example Models
Anthropic Claude Sonnet 5, Opus 5, Fable 5.1 (API key or subscription OAuth)
OpenAI GPT-6 Astra and the GPT-5.6 family (API key; GPT-5.6 also via ChatGPT/Codex OAuth)
Google Gemini Gemini 3.x family (Gemini API or Vertex AI)
Grok (xAI) Grok 4.5
DeepSeek DeepSeek V4.1 Flash
Open Router Any Open Router model, over three wire styles
Local (GGUF) Any GGUF model via built-in llama.cpp
...and more Zai, Ali Coding Plan, Antix, OpenAI-compatible

A config layer for everything else. Your own proxy, gateway, or inference engine is one entry in ~/.ante/catalog.json: a wire_style (Ante speaks four API dialects), an auth style (bearer, header, or query, from an env var or OAuth), plus http_headers and extra_body for whatever else the endpoint expects. The combinations cover most setups without a plugin or a code change:

{
  "providers": {
    "my-gateway": {
      "base_url": "https://gateway.example.com/v1",
      "wire_style": "OpenAiCompatible",
      "auth": { "bearer": { "env_key": "MY_GATEWAY_API_KEY" } },
      "http_headers": { "X-Org": "my-team" },
      "extra_body": { "service_tier": "priority" }
    }
  }
}

Providers guide → · Catalog Reference →

What's in this repo

Documentation is the new source code.

We open sourced what really matters in the age of agentic coding, all under Apache 2.0:

  1. 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.
  2. The protocol and client SDKs. crates/protocol-shape defines the wire messages and schema spoken by ante serve; crates/ante-sdk is the async Rust SDK for controlling Ante over stdio or Unix domain sockets; ante-acp provides Agent Client Protocol support.
  3. Core primitives and execution engine. As parts of the private core stabilize, they are open-sourced here: crates/exec provides bounded async process execution, and crates/llm supplies provider profiles and shared LLM primitives.
  4. 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.

Alongside these, curated/ is a shared space for reusable pieces from the team and community, laid out to mirror ~/.ante/: settings profiles like pi and plan, and skills.

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 continue to be extracted here as they stabilize; progress is tracked in issue #21.

The protocol surface maps to Ante's client-daemon architecture:

┌─────────────────────────────────────────────────────────────┐
│                         Clients                             │
│                                                             │
│   ┌───────────┐    ┌───────────┐    ┌────────────────────┐  │
│   │    TUI    │    │ Headless  │    │    ante serve      │  │
│   │  (ante)   │    │ (ante -p) │    │   stdio/sock/ws    │  │
│   └─────┬─────┘    └─────┬─────┘    └─────────┬──────────┘  │
└─────────┼────────────────┼─────────────────────┼────────────┘
          │                │                     │
          ▼                ▼                     ▼
┌─────────────────────────────────────────────────────────────┐
│                         Daemon                              │
│                                                             │
│   Session ──▶ Turn ──▶ Step                                │
│                                                             │
│   ┌──────────┐  ┌──────────────┐  ┌───────────────────┐     │
│   │  Tools   │  │  Permission  │  │  Skills / Agents  │     │
│   └──────────┘  └──────────────┘  └───────────────────┘     │
└────────────────────────┬────────────────────────────────────┘
                         │
                         ▼
┌─────────────────────────────────────────────────────────────┐
│                     LLM Providers                           │
│                                                             │
│   Anthropic · OpenAI · Gemini · Grok · Open Router · Local  │
└─────────────────────────────────────────────────────────────┘

The bigger picture

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). 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: one executable that downloads as ~15MB compressed and unpacks to 34.1 MiB (the figure our harness comparison tables report). Core components like Grep (fully rebuilt and customized) and git run in the same process, so nothing is shelled out and no resources leak. Most similar projects ship on Node.js or CPython and carry an order-of-magnitude larger footprint.
  • Local inference is built in: a local GGUF model is all Ante needs to run without any provider.
  • 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.

Why care about runtime optimization like memory and I/O if model inference is usually the biggest bottleneck?

For one-on-one agent interactions, runtime overhead like memory usage and I/O is often less important than model inference.

But our vision is much bigger: millions of agents self-organizing and communicating at massive scale. At that point, even small inefficiencies get multiplied millions or billions of times, so runtime optimization becomes economically significant.

Can I run Ante completely offline?

Yes. Ante has a built-in llama.cpp engine that runs GGUF models locally. It handles engine installation, model discovery, and memory management automatically. No API keys or internet connection required.

Can I use my own custom models or providers?

Yes. Create a ~/.ante/catalog.json file to add or override providers and models with custom endpoints, API keys, and configurations. Any OpenAI-compatible API works.

What is the ante serve mode for?

Server mode runs Ante as a long-lived daemon that communicates over a structured JSONL protocol. It's ideal for building editor plugins, web UIs, and custom integrations on top of Ante.

Documentation

Full documentation is available at docs.antigma.ai.

FAQ

Common questions

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.