Prime Intellect's Prime Agent scored 95.5% on ARC-AGI-3 with Opus 5, beating the 95.4% human baseline. The MIT-licensed, open-source harness turns a frontier model into a self-improving Recursive Language Model.
Key facts
- 95.5% on ARC-AGI-3 with Opus 5, above 95.4% human baseline
- MIT licensed, single command install, open and closed models
- Persistent IPython kernel as the model's only tool
- Four writable state types: Prompt, Memory, Skills, Sub-agents
- Frontier models scored under 1% when ARC-AGI-3 launched
The Ceiling It Removes

Almost every agent today operates inside a fixed harness: a system prompt written once, tool schemas chosen up front, and history-compaction rules nobody revisits mid-run. When a failure repeats three times in a long session, the human fixes it — after the run ends. Prime Agent, per @akshay_pachaar's report, removes that ceiling by making the scaffold itself a variable the model programs over.
Two Pieces: RLM and Continual Harness
The first piece is the Recursive Language Model (RLM) design. A persistent IPython kernel is the model's only tool, so long inputs never enter the prompt at all. The model greps, partitions, and spawns child calls over the data instead of reading everything back in. Context stops being a fixed window and becomes something the model navigates programmatically.
The second piece is the Continual Harness, which keeps four kinds of state outside the conversation and writable. Prompt holds supplemental instructions the agent appends when it learns something the base prompt never told it. Memory stores findings from earlier turns that would otherwise die with the context window. Skills package recurring workflows as importable Python, so the next run imports the procedure instead of rediscovering it. Sub-agents hold specs for children it spawns, tuned once and reused across parallel, background, and long-lived runs.
The /refine command reads the current trajectory, applies the smallest edit it can justify, and records what triggered it. The base system prompt stays immutable, and any update can be rolled back by ID. This is the structural break: the scaffold stopped being something you configure once and became something the run improves as it goes.
The Benchmark Claim

With Opus 5 driving it, Prime Agent reports 95.5% on ARC-AGI-3, just past the reported human expert baseline of 95.4%. When that benchmark launched, frontier models were scoring under one percent. Nobody trained a new model to close that gap — the harness did. In Factorio runs, the same loop found and then optimized scoring exploits, which is roughly what you would expect once an agent can edit its own instructions.
Skepticism is warranted here. A 0.1-point margin over a human baseline on a benchmark the agent's own loop can edit its instructions against invites questions about whether the scaffold is gaming the test rather than solving it. The Factorio exploit-finding behavior suggests the loop optimizes for the metric, not necessarily for general capability. Prime Intellect did not disclose full evaluation methodology or variance across runs.
Prime Agent is MIT licensed, installs with a single command, and works with both open and closed models. The repository is live on GitHub.
What to watch
Watch for independent replication of the 95.5% ARC-AGI-3 result on a held-out test set, and whether the /refine loop's self-editing holds up under adversarial benchmark conditions. Also track adoption metrics on GitHub and whether the RLM design generalizes beyond ARC-style puzzles to real-world coding and research workflows.







