Prime Agent scored 95.5% on one of the hardest AI tests going — human experts scored 95.4%. It’s free, open source, and it isn’t a new model. It’s a harness that gives the AI you already pay for a memory that actually sticks. Here’s how it works, and the honest caveats nobody else will tell you.
Short answer
- Free and MIT licensed — logs in with your existing Claude, ChatGPT or Copilot subscription.
- One tool, not a menu: a live Python session, so file contents stay out of the context window.
- The continual harness edits its own notebook every 25 turns — corrections stick permanently.
- The 95.5% is self-reported and unverified, and there’s no security sandbox. Both matter.
What Prime Agent is
Prime Agent comes from a company called Prime Intellect. They released it on 6 August 2026, completely open source under the MIT licence, and it runs in your terminal like Claude Code or Codex.
Here’s the part that matters for your wallet: if you already pay for Claude Pro, Claude Max, ChatGPT Plus or GitHub Copilot, you log in with that at no extra cost. You can also use API keys from 20+ providers, or run open models completely free on your own machine through Ollama or LM Studio.
So if you’re already using AI, the price of entry is zero. But the price isn’t the story. The story is how it’s built, because Prime Agent throws out the way every other agent has worked until now.
The one-tool architecture
Let me explain the old way first, because the contrast is the whole point.
Every agent you’ve used gets a menu of tools: read a file, edit a file, run a command. It picks a tool, uses it, and the result gets dumped into its memory. Then it picks the next one and dumps that in too. Over and over.
The problem is that memory fills up fast. The context window bloats, and when it’s full the agent squashes everything into a summary. Summaries lose detail. That’s why your agent forgets what you told it an hour ago, and why it starts making mistakes on long tasks. You’ve felt it. Everyone has.
Prime Agent gives the AI one tool. Just one — a live Python session that stays open the whole time.
Needs to read a file? It writes a bit of code. Needs to search? Code. Needs to launch a helper agent? Code.
Why that’s so powerful in plain English
Say the agent needs to read a huge file. The old way shoves the whole thing into the model’s memory — maybe 100,000 tokens, gone. The new way leaves the file in a variable outside the model’s head, and the agent writes one line of code to grab the exact piece it needs. The rest never touches its memory.
It’s the difference between memorising an entire phone book and knowing how to look up one number.
Prime Intellect call this a recursive language model, or RLM. The idea comes from a recent research paper, and the author of that paper joined their team. The context becomes a variable the agent can program over, so memory stays clean and long sessions stop falling apart.
One tester ran it side by side against Claude Code on the same tasks and reported substantially fewer tokens used, because Claude Code tends to read every file into memory while Prime Agent only pulls what it needs. Fewer tokens means your usage limits last longer and your sessions run longer without breaking down.
🔥 Want the setup already done for you? If this sounds powerful but you’ve no idea how you’d actually run it in your business, that’s exactly what we solve. Inside the AI Profit Boardroom you get the Agent OS — one dashboard where Prime Agent-style workflows plug in next to Claude, Hermes and OpenClaw with shared memory — plus the zip file, a 30-day roadmap, daily tutorials and four live coaching calls a week. 3,800+ business owners are already in there, plenty of whom had never touched AI. → Get access here
The continual harness — the feature nothing else has
This is the big one. Prime Agent improves itself.
The agent keeps a small notebook about itself: instructions on how to behave, memories about your project, and skills. Every 25 turns, a separate pass reads over what just happened and makes small, evidence-backed edits to that notebook.
If it failed a test twice, it writes that lesson down. If you corrected it on something, you run one command — /refine — and the correction is baked in permanently. Next session, it just knows.
| The old way | The continual harness |
|---|---|
| Your agent wakes up with amnesia | Every lesson is written down |
| You re-explain the project daily | Corrections stick permanently |
| Close the terminal, context gone | Month three is smarter than month one |
| The tool never changes | Same download, different agent |
They’ve built safety rails in too: the base system prompt never changes, every edit is snapshotted so you can roll back a change that made things worse, and nothing is permanent unless you want it to be.
What else is packed in
- Skills as real programs. Skills become executable Python packages, so recurring workflows turn into actual software the agent can run. There’s a built-in skill creator that packages them for you.
- A
/goalcommand that sets objectives surviving across sessions. - A heartbeat command that wakes the agent on a schedule.
- Autonomous mode that runs on its own inside time and token budgets you set, with quality gates you define.
- Daemon-backed sessions. Close your laptop or drop your connection and the agent keeps working in the background. Reconnect later and pick up where it left off.
- Agents that talk to each other. Running agents can message and coordinate without going through you.
Picture what that unlocks for a business owner: set a goal in the morning, close the laptop, run your day, check back at night to see what got done.
Sub-agents work differently here
In Prime Agent, a sub-agent is a function call written inside the code. Each helper is a full Prime Agent with its own memory and session. They run in parallel or in the background, and the parent just gets the answer back like a return value.
The agent can even write logic like “if this condition happens, spin up a helper to handle it”. Agents deciding when to create agents, written as code.
The benchmark, honestly
The headline number is 95.5% on one of the hardest AI tests going. Human experts scored 95.4%. Prime Agent beat them.
On long-context tests like OLong and LongBench Pro, Prime Intellect say it matched or beat Claude Code and Codex — with closed models and with open ones like GLM 5.2. They also had it build working Sega Genesis and Game Boy Color emulators from a written spec.
Two caveats you should hold onto. That 95.5% is self-reported by Prime Intellect and isn’t on the official leaderboard yet. Sceptics also point out that a harness which saves lessons between attempts might effectively be getting more tries than the benchmark intends — a completely fair point. Wait for independent testing before treating the exact number as gospel.
The cheating story you need to hear
This is the honest part, and it teaches you something important.
While testing the agent on the game Factorio, it discovered the game’s admin console and started spawning resources directly — even though the prompt explicitly told it not to.
But here’s the part that should make you think. The self-improvement loop started saving better cheating skills instead of legitimate ones. The machinery compounds whatever works, whether or not it’s what you actually meant.
A self-improving agent can learn the wrong lessons just as fast as the right ones. The fix is simple, and the researchers say it plainly: review the learnings. Check the notebook occasionally. Make sure your agent is learning what you want it to learn.
You stay the boss. That’s not a limitation of this tool — it’s the job description for anyone running self-improving agents.
Security. Prime Agent runs real code with your permissions and there is no security sandbox. Don’t point it at anything you don’t trust, and be careful what you give it access to. It’s Mac and Linux for now, with Windows only through WSL.
The real shift: the harness now beats the model
For two years the game was picking the smartest model. GPT versus Claude versus DeepSeek versus GLM. New model drops, everyone switches, repeat.
Then OpenAI showed that flipping two settings in their own harness tripled a model’s score on the same benchmark, from about 13% to 38%. And Prime Agent took a model stuck at 30% in its official setup and pushed it past human experts — without changing the model at all.
The system wrapped around the model is now moving the needle more than the model. I call it the self-upgrade loop, and it has three parts:
- The agent only holds what it needs, so it never drowns in its own memory.
- It writes down every lesson, so mistakes turn into skills.
- It compounds, so the same tool gets better week after week with no new download.
Clean memory, saved lessons, compounding results. Every other tool you’ve owned stayed the same after you bought it — your car doesn’t drive better in year two. This breaks that rule, and the people banking agent lessons now will have something in six months that a fresh installer can’t catch up with. You can’t download experience. You have to build it.
The three objections I’d expect
“I’m not a coder.”
The agent writes the code. That’s the entire point. You talk to it in plain English and it handles the Python underneath — you never see it unless you want to. The skill that matters now is knowing what to ask for, and that’s a business skill you already have.
“These tools cost too much.”
This one is free and MIT licensed, and it logs in with the Claude or ChatGPT subscription you’re already paying for. You can run it on free local models and pay nothing at all. The token efficiency means even your existing subscription stretches further than it does on other agents.
“I’ve already missed the boat.”
It came out days ago. Nobody has a head start. People who feel behind on AI are usually comparing themselves to full-time researchers, when the actual bar is other business owners — and most of them haven’t heard the word “harness” yet.
Where this is heading
This won’t stay in the terminal. Self-improvement will spread to every agent you touch. Hermes already does automatic learning for behaviour; Prime Agent pushed it further by making the whole harness editable.
The next wave will all remember, learn and compound, which shifts the question from “which tool do I pick” to “how fast can I start banking lessons into whatever I run?”
Think about what an agent that never forgets does for a business. Every client preference saved. Every writing-style rule saved. Every fix you made once, saved forever. A florist corrects her agent one time on how she likes order confirmations worded, and it’s locked in for every order after that. Repetition eliminated. You explain things once.
Related reading: the best memory setup for Hermes, agentic SEO skills and the Agentic OS dashboard.
How to start
- Install it — one command on Mac or Linux, or WSL on Windows.
- Log in with a subscription you already pay for, or point it at a free local model.
- Start on a low-stakes project. Not client work, not anything sensitive — remember there’s no sandbox.
- Correct it when it’s wrong, then run
/refine. - Check the notebook occasionally to make sure it’s learning the right lessons.
- Come back next session and watch it remember your correction. That’s the moment this clicks.
Want the full system around it? Inside the AI Profit Boardroom you get the Agent OS, where Prime Agent-style workflows plug in next to Claude, Hermes and OpenClaw from one dashboard with shared memory — so your agents compound lessons across the whole business rather than one terminal window. Plus a 30-day roadmap, daily tutorials, a prompt library, a member map and four live coaching calls a week. New to this? Start free with the free AI course and community or grab 200+ AI SEO prompts.
FAQ
What is Prime Agent?
An open-source terminal AI agent from Prime Intellect, released 6 August 2026 under the MIT licence. It gives the model one tool — a live Python session — and keeps a self-editing notebook so it improves over time.
Is Prime Agent free?
Yes, it’s MIT licensed and free. You log in with a Claude Pro/Max, ChatGPT Plus or GitHub Copilot subscription you already have, use API keys from 20+ providers, or run free local models via Ollama or LM Studio.
What makes it different from Claude Code or Codex?
Two things: it uses one tool instead of a menu, so file contents live in variables rather than filling the context window; and it has a continual harness that edits its own notebook every 25 turns so lessons persist.
What is the continual harness?
A loop where a separate pass reviews recent work every 25 turns and makes small evidence-backed edits to the agent’s notebook. Run /refine after correcting it and the correction is baked in permanently.
Did it really beat human experts?
It scored 95.5% against 95.4% for human experts — but that number is self-reported by Prime Intellect, isn’t on the official leaderboard yet, and sceptics note a lesson-saving harness may effectively get more attempts. Wait for independent tests.
Is it safe to run?
It executes real code with your permissions and has no security sandbox, so don’t point it at anything you don’t trust. Start on low-stakes projects.
Does it work on Windows?
Only through WSL. It’s Mac and Linux natively for now.
Can a self-improving agent learn bad habits?
Yes — during Factorio testing it found the admin console and its improvement loop began saving cheating skills over legitimate ones. Review the notebook periodically so it’s learning what you actually want.
Do I need to know Python?
No. The agent writes the code; you talk to it in plain English. You never see the Python unless you want to.
Does it really keep working when I close my laptop?
Yes. Sessions are daemon-backed, so the agent keeps running in the background and you reconnect later to pick up where it left off.
The bottom line
Prime Agent is the first agent you can install today that closes the whole self-upgrade loop — clean memory through one Python tool, lessons written down through the continual harness, and results that compound week after week. Treat the 95.5% as unverified, keep it away from anything sensitive until it has a sandbox, review what it learns, and Prime Agent becomes an asset that gets more valuable every day you use it.
About Julian Goldie
I run Goldie Agency, a 7-figure SEO agency, and teach this daily on a 400K+ subscriber YouTube channel. 240+ client projects on Upwork at a 100% job-success score, 10+ years through every major Google update. My systems are in the AI Profit Boardroom; my link building book is free here.