Training agents with reinforcement learning has a dirty secret: the environment layer is usually the bottleneck. Wiring up a benchmark, an agent harness, and a sandboxed runtime into something that can generate thousands of verified rollouts per day is painful, bespoke work. Prime Intellect's verifiers v1 is a ground-up rewrite of their environment stack designed to fix exactly that.

The Three-Part Split That Changes Everything

The central idea in v1 is a clean decomposition of what used to be a monolithic "environment" into three independent pieces:

  • Taskset , defines the work: the data, tools, and scoring logic. It knows nothing about how the task gets solved.
  • Harness , the program that actually runs the agent: a simple ReAct loop, a CLI agent like Codex or Kimi Code, or your own custom agent.
  • Runtime , where execution happens: a local subprocess, Docker, or a remote sandbox like Prime Sandboxes or Modal.

Any taskset can run under any compatible harness, inside any runtime. This sounds simple, but it's a significant unlock: you can benchmark the same coding task against Codex, Mini-SWE-Agent, and your own agent without rewriting any environment code. You can also swap from a local Docker runtime during development to a horizontally-scaled remote sandbox for production runs, with no changes to the task definition.

Architecture diagram showing the three-part decomposition: Taskset, Harness, and Runtime

The Interception Server: The Trick Behind Harness-Agnosticism

Making any harness work with any taskset requires solving a hard problem: agents like Claude Code speak Anthropic's API dialect, while Codex uses OpenAI Responses. The core abstraction that makes the v1 design work is the interception server -- a verifiers-managed HTTP server that proxies requests between the agent's runtime and the inference server.

Alpha Signal

Don't miss what's next in AI

Join 300,000+ engineers and researchers who get the signal, not the noise.

  • Full access to in-depth AI research breakdowns
  • Be the first to know what's trending before it hits mainstream
  • Daily curated papers, repos, and industry moves