Skip to main content

edgar

The agent harness you can read in an afternoon. Any model. No hidden calls. Nothing is done until it's verified.

Take A Tour of the Harness → a guided read of the code, stop by stop, with diagrams.

uvx edgar-harness                                # interactive
git diff | edgar -p "review this" --mode read-only
edgar -p "bump httpx and fix what breaks" --mode auto --verify "just check"

Status: 1.0 is released and on PyPI. Core is built (M0 to M6): the REPL and one-shot runs against real models, with file, shell and web tools behind the permission engine, the verify gate, your own CLI and HTTP tools, skills, sessions you can resume (edgar --continue), compaction and cost caps. v1 is built (M7 to M11) at exactly 8,000 of 8,000 lines of code: memory, session forks, MCP servers and signing in, subagents, routing and fallback, extensions, hooks, edgar.run(), init and doctor. The tour now has a page per v1 feature and a map of the harness. Next is v2, the daily driver (ADR-0057). The documents in docs/ are the spec being built against.

Why edgar

  • Small enough to read. The core is under 5,000 lines of code, with a size budget enforced in CI, and every file explains itself in plain comments, which are free. Fork it and change it without first learning 40,000 lines. Take the tour.
  • Any model. OpenAI, Azure, Anthropic, OpenRouter, Ollama, or any OpenAI-compatible server as a config block, Google Vertex AI and Amazon Bedrock included. API keys, or your cloud sign-in with no key at all, never a vendor's subscription. Works with small local models too.
  • No hidden calls. edgar never contacts a host you did not configure, has no telemetry, and its system prompt is a short file you can read and replace.
  • Done means verified, when you say what that means. Declare a check with --verify or verify.command, and a turn that changed something ends when it passes, not when the model says it is finished. Declare nothing and edgar stops the way any tool does: honestly, this only fires if you ask it to.

Quick start

uv tool install edgar-harness   # or: uvx edgar-harness, to run it without installing
export OPENAI_API_KEY=sk-...    # or ANTHROPIC_API_KEY, OPENROUTER_API_KEY
edgar login openrouter          # or sign in instead; the key is yours, kept in your keyring
edgar models                    # pick a model; Enter saves it as your default
edgar                           # the REPL, in the directory you are in

No API key? Install Ollama, ollama pull qwen3:8b, and run edgar --model ollama/qwen3:8b: everything stays on your machine.

No uv, or no Python at all? Every release also carries a self-installing binary per platform (Linux, macOS, Windows), and docker run --rm -it -v "$PWD":/work ghcr.io/vespassassina/edgar:latest runs the same thing from a prebuilt image.

Then give it your own tools and know-how, without Python. Copy a command tool, an HTTP tool or a skill from examples/ into .edgar/, and check what edgar sees with edgar tools list and edgar skills list. The Cookbook has the recipes.


What it is

edgar runs an LLM in a tool-using loop, in the directory you launched it from, against OpenAI, Azure, Anthropic, OpenRouter, Ollama or any OpenAI-compatible server. It has permissions, a verify-before-done gate, context compression, custom tools for CLIs and APIs, skills, subagents, memory, MCP and extensions.

It ships in five tiers, each with a size budget in lines of code (blank lines and comments don't count):

Tier What you get Size
Core (0.x) The loop, five providers, built-in and custom tools, skills, permissions, verify gate, staged compaction, sessions, REPL and pipes ≤ 5,000 LOC
v1.0 Memory, MCP, subagents, routing and fallback, extensions and hooks, an embedding API. Extension formats frozen ≤ 8,000 LOC
v2.0 the daily driver A tour page per feature, @path attachments, plan mode and todo, images, web search and git as extensions, worktrees and sandboxes, the inspection commands ≤ 9,500 LOC
v3.0 learning Learning from what you type and what breaks, skill synthesis, a controller, escalation. Removable ≤ 12,000 LOC
v4.0 unattended A capability broker and scheduling. Removable ≤ 13,000 LOC

None of that is unusual. What is unusual is that the whole thing is small enough to read in an afternoon, and the parts usually hidden behind an SDK are written out plainly: how tool calls differ between providers, how compaction avoids corrupting a transcript, how a permission decision is actually made.

It is a teaching artifact first and a usable tool second. Where those two goals conflict, teaching wins. That trade is why some things are simpler than they could be (SQLite FTS instead of embeddings) and some are stricter than they need to be (a 150 ms startup budget enforced in CI).

How it fits together

flowchart TB
    subgraph entry["Ways in"]
        direction LR
        repl["REPL<br/>/queue · /steer · /btw"]
        oneshot["edgar -p<br/>--json · --events"]
        api["edgar.run()"]
    end

    subgraph core["Core: one loop, under 200 lines of code"]
        direction LR
        ctx["context<br/>prompt file · compaction<br/>plan · todos"] --> loop["turn loop"]
        loop --> exec["tool pipeline<br/>validate → hooks<br/>→ permissions → run"]
        loop --> verify["verify gate<br/>done = your check passes"]
    end

    subgraph ports["Ports: swap any of these"]
        direction LR
        prov["providers<br/>OpenAI · Azure · Anthropic<br/>OpenRouter · Ollama<br/>any compatible server"]
        tools["tools<br/>built-in · command<br/>HTTP · MCP"]
        skills["skills · agents<br/>extensions"]
        sandbox["sandbox<br/>none · bwrap<br/>seatbelt · container"]
    end

    subgraph rest["Out and on disk"]
        direction LR
        bus["event bus<br/>stdout: the result<br/>stderr: status"]
        disk[("session JSONL · SQLite<br/>readable, never rewritten")]
        v3["v3 and v4, removable<br/>learning · controller<br/>broker · scheduling"]
    end

    entry --> core
    core <--> ports
    core --> rest

Everything outside the core plugs in through a port; the core imports none of the adapters, and a test enforces that. The Blueprint has the module-level version.

Why it exists

Agent harnesses come in two sizes. Toys that teach you nothing beyond a while loop and a function call, and production systems whose complexity buries the interesting parts. There is a gap in the middle: a harness that implements the genuinely hard bits honestly, at a size a person can hold in their head.

Why I built it, and how

I wanted to learn how these things actually work underneath an SDK: how a tool call gets repaired when a small model writes bad JSON, how compaction avoids corrupting a transcript mid-conversation, how a permission decision gets made without a black box. It's for myself first — it always is.

Most of the code was written by an AI coding agent, working from a spec I wrote and revised, under decisions I made and can point to: every one that a reasonable person could make differently is an ADR, every session is a dated entry in the journal, and the size budgets, the pseudocode comments, the "humans widen, machines tighten" rule — all of it exists so the result stays something a person can actually read, not just something that compiles. I say this here because a project like this earns more trust hiding nothing than pretending otherwise.

It's named after my son. He's also the reason I build things at all.

What it does

Terminal-native. Interactive REPL for daily use, -p for one-shot and pipes. Result on stdout, status on stderr, real exit codes. Composes with the rest of your shell. Keep typing while it works: plain text queues the next instruction, /steer corrects the turn in flight, /btw asks a side question without touching the conversation. /pause, /undo and /retry work the way you would expect, and every one of them appends to the session record instead of rewriting it.

Your tone, not ours. The shipped system prompt has no style opinions. Put yours in ~/.edgar/personality.md (or per project in .edgar/personality.md): terse or chatty, which language, how much to explain. It can shape how edgar talks, never what it is allowed to do.

Five providers, two adapters, any compatible server. OpenAI, Azure, OpenRouter and Ollama share one OpenAI-compatible adapter driven by a quirks table; Anthropic has its own. Any other OpenAI-compatible server is a config block. Anything else is one module and one registry entry, or a provider plugin package.

# .edgar/config.toml
[model]
default = "lmstudio/qwen3-coder"

[providers.lmstudio]
kind = "openai-compatible"
base_url = "http://localhost:1234/v1"

edgar models list shows where each role's prompts go, every provider's endpoint and whether its key is set, without contacting anything.

No API credit? ollama pull qwen3:8b, then edgar --model ollama/qwen3:8b runs entirely on your machine for free. edgar does not sign in with a vendor subscription: vendors keep those for their own apps (ADR-0032). Small local models that fence their tool calls or write them as plain JSON are repaired, deterministically.

Extend it without Python, today. Give the agent a CLI with a command tool (an argv template, never a shell) or an API with an HTTP tool (a request template with the host fixed and secrets from the environment). Add MCP servers or skills in Claude's SKILL.md format. All four are built and in Core or 0.1.

Built for 1.0 (M9 to M11). Subagents declared in markdown, so a cheap local model can explore while an expensive one reviews, each with its own tool allowlist and budget. Declarative model routing as a pure function with zero model calls, and fallback kept apart from it because "not capable enough" and "not reachable" want different responses. Hooks that can veto a tool call, and extension folders that bundle any of the above and share it by copying.

Coming in 2.0, the daily driver (M18 to M22). The tour pages per v1 feature and the map of the harness are built, and were M18. M19 added @path attachments, plan mode and a todo list that survive compaction, and three commands that show you what edgar is working from: edgar context show, edgar sessions compact ID and edgar config show --resolved. Still to come: images in the conversation. Web search and git as extensions you can read. A git worktree per subagent that writes, and a sandboxed shell. The rest of the inspection commands: route explain, agents list, the rest of doctor.

Long sessions that stay valid. Context is compressed in stages, cheapest first: big outputs spill to disk, old tool results become stubs, old turns fold into one summary. It never splits a tool call from its result, and the full record stays on disk.

Memory that stays trustworthy. Hand-authored instructions and machine-learned facts live in separate places, on purpose. Only what you type, or an error the harness classified itself, becomes a fact. When the model wants to remember something, it asks you first. Tool output and web pages never reach memory.

Safer to point at a repo you just cloned, honestly described. Project hooks, MCP servers and tools run only after you trust the project. The agent cannot edit its own config without asking, and auto mode tightens after it reads untrusted content. Shell command matching is documented as a speed bump, not a boundary (PERM-14); the one thing that is a hard, unconditional denial — even in yolo — is a fetch or HTTP call that literally names the cloud metadata address (PERM-16). For anything genuinely untrusted, run it in a container.

A controller that cannot hurt you (v3). Deterministic checks after each turn; a cheap model runs only when one trips. It returns typed proposals from a fixed whitelist, dry-run by default, fully logged, and it can only ever tighten policy. It cannot write your instruction files — it proposes a diff and you apply it.

Every call answers to what you asked (v4). Scope a request (--scope paths=reports/q3.md) and a line hidden in that report cannot send the agent to another file or host: calls outside the scope are refused, and subagents inherit the scope narrowed, never widened. Every allow and refusal goes into a signed receipt tied to the words you typed; edgar receipt --refused shows what the agent tried and was refused.

Scheduling without a daemon (v4). One tick command plus one host cron entry. Agents can schedule themselves, with guardrails.

Easy to build on. -p --json for one result, -p --events for the live event stream as JSON Lines, and edgar.run() from Python. No daemon, no HTTP API.

What it deliberately is not

No MCP server mode. No daemon or HTTP API. No vector store. No multi-user. No GUI. No race to support fifty providers. The full list with reasoning is in PRD §5.2, written down so scope creep has something to argue with.

Documentation

A Tour of the Harness A guided read of the code, stop by stop, with diagrams (source)
PRD What it does and why, numbered requirements
Blueprint Architecture, module map, data model, interfaces
ADRs Decisions, with the alternatives that were rejected
Decisions The v0.3 and v0.4 revisions in one page: tiers, context, memory, extensions, security, ports
FAQ AGPL, Python, "another harness", the docs-to-code ratio, the AI-agent build, the name
Field review What 11,647 Hacker News comments say about agent harnesses
Cookbook Recipes: a local model, pipes, your own tools and skills, a container for untrusted work, a check that decides done
Roadmap Twenty-three milestones in five tiers, each one shippable
Testing How you test something nondeterministic
Brainstorm The original design conversation
AGENTS.md Instructions for AI agents working on the code

Reading the source

A Tour of the Harness walks the code stop by stop, with diagrams, one part per tier. The short version:

  1. core/message.py and core/units.py — the vocabulary and the invariant
  2. core/loop.py — the whole thing in under 200 lines of code
  3. tools/base.py and tools/execute.py — the contract and its pipeline
  4. permissions/policy.py — one pure function
  5. context/compact.py — where the subtlety is
  6. tools/custom.py — command and HTTP tools
  7. providers/routing.py — the same shape as permissions, deciding models instead of access

Licence

AGPL-3.0-or-later. Use it, fork it and change it freely. If you distribute a modified edgar, or run one as a service for others, you share your changes under the same licence. The reasoning is in ADR-0026.

Release files for edgar-harness 4.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for edgar-harness 4.0.0
File Size Uploaded
edgar_harness-4.0.0.tar.gz 249.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for edgar-harness 4.0.0
File Interpreter ABI Platform
edgar_harness-4.0.0-py3-none-any.whl Python 3 none any Details

Total release size: 566.0 kB

Release files / edgar_harness-4.0.0.tar.gz

Download URL edgar_harness-4.0.0.tar.gz
Size 249.0 kB
Tags Source
SHA-256 checksum
How to use checksums
28faaf40f056c684df99a7da40b6f20bcc6d48ad50979120b52ec5ac7d82106f
BLAKE2b-256 checksum
How to use checksums
640b4ba91760dcdb39b385829fe852bf938f3ec3e659347c9ab1e6c9c783ddee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / edgar_harness-4.0.0-py3-none-any.whl

Download URL edgar_harness-4.0.0-py3-none-any.whl
Size 317.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
b57ab3427f877cc0f2c26eb60df97fac5514f32f327576bd46b6d56d053eef8d
BLAKE2b-256 checksum
How to use checksums
001749937ec2adecec8504f639019dba3bec53db6811c184d7c4bfd664f87b66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

4.0.0 This release

2 release files

3.0.0

2 release files

2.0.0

2 release files

1.0.0

2 release files

0.1.0

2 release files

0.0.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page