Prime Agent: A Self-Improving RLM Coding Harness with Persistent REPL and Agent CRUD

Prime Intellect has released Prime Agent, an open-source coding harness designed around two abstractions: the Recursive Language Model (RLM) and the Continual Harness. The goal is to move beyond fixed tool-calling schemas and static sub-agents, letting the agent itself manage its context and evolve its own scaffolding during a session.
Recursive Language Model: Context as a REPL
The RLM treats context as a variable and sub-agent delegation as function calls inside a persistent IPython REPL. This gives the model programmatic access to its own history, sub-agents, and tools—it can write language model programs that act on its context. The REPL stores data in variables, so the agent can work through arbitrarily long sessions without losing access to past information.
Continual Harness: Agent Self-Management
The Continual Harness abstracts the harness's own state—prompts, skills, memory, and sub-agents—as CRUD-able objects. The agent can create, read, update, and delete these during its trajectory. Combined with agent-to-agent messaging, this enables orchestration across sub-agents and even across separate Prime Agent sessions. For example, the agent can spawn persistent sub-agents, message them later, or communicate directly with another Prime Agent instance.
Key Architecture: Persistent Kernel as the Only Tool
Prime Agent uses a persistent IPython kernel as its sole tool. All standard harness features—including sub-agents—are invoked as functions within that kernel. Each sub-agent is itself another Prime Agent instance.
- Background daemon: owns all live sessions over a local socket; you can attach/detach without stopping the agent.
- Agents View: a TUI that recursively lists all root sessions and sub-agents; press
←on an empty prompt to open it. - Session recovery: each worker process is recoverable; if it crashes, the daemon restores from JSONL and kernel state snapshots.
- Memory management: idle sub-agents unload after 30 minutes, and reload on demand from disk.
- Persistent storage: session history saved as append-only JSONL.
Installation
curl -fsSL https://app.primeintellect.ai/prime-agent/install.sh | sh
Who It's For
Teams running long-horizon autonomous coding evaluations, researchers doing auto-research, or developers who want a coding assistant that can adapt its own harness.
📖 Read the full source: HN AI Agents
👀 See Also

Lore: A tool that extracts structured context from AI coding conversations
Lore is a browser-based tool built with Claude Code that extracts structured context from AI conversations, capturing decisions, TODOs, blockers, and resume checklists. It's a React + TypeScript PWA with a Chrome extension for direct conversation capture and context injection.

Lobster Cage: Dockerized Security Environment for Self-Hosting OpenClaw on Raspberry Pi
A developer built Lobster Cage, a Docker Compose environment with restricted outbound access and proxy-based routing to run OpenClaw securely on a Raspberry Pi for experimentation.

Node Control: Real-Time Multiplayer .io Game Built Entirely with Claude 4.6 and 4.7
Developer built a live competitive multiplayer .io game, Node Control, using Claude 4.6 and 4.7. Features server-authoritative netcode at 60Hz, 4-region deployment on fly.io, and neural-network aesthetic.

InsForge: Open-Source Backend Platform for AI Coding Agents
InsForge is an open-source backend platform (Apache 2.0) that provides AI coding agents with managed database, auth, storage, compute, hosting, and AI gateway, controllable via CLI or MCP.