Justy: Turns out the thing slowing down agent research isn't the models. It's the environments. Justy: Welcome to Exploring Next, episode 317. We're looking at a paper that just dropped called ClawEnvKit — automatic environment generation for claw-like agents. And Cody, I think this one is going to land differently for people actually building agent systems. Cody: Yeah. The framing in the paper is pretty sharp. They're not arguing for a better dataset. They're arguing that the whole model of hand-building evaluation environments is the problem. Hundreds of person-hours per benchmark, and then it's frozen the moment it ships. Justy: And the agents keep getting better, so the benchmark is stale almost immediately. ClawEnvKit targets what they call claw-like agents — systems like OpenClaw, NanoClaw, IronClaw — LLM agents doing actual tool use across long-horizon tasks involving file systems, web services, APIs. Cody: The pipeline has three modules. A parser that takes natural language and extracts structured generation parameters. A generator that produces the task spec, tool interface, and scoring config. And a validator — the piece doing the most work — that checks feasibility, diversity, structural validity, and internal consistency before anything gets used. They're claiming 13,800 times lower cost than human-curated environments, and their auto-generated environments match or exceed Justy: Okay so the benchmark they built — Auto-ClawEval — is 1,040 environments across 24 categories, tested across 8 harness frameworks and 4 model families. What did they actually find? Cody: Harness engineering matters a lot more than people might expect — all the structured harnesses beat a bare ReAct baseline by up to 15.7 percentage points. No current frontier model saturates the benchmark. And the compact version, Auto-ClawEval-Mini at 104 tasks, scores within 2% of the full benchmark. So smaller teams don't need to run the whole thing to get a meaningful signal. Justy: That harness finding is telling teams: the wrapper you put around your model is doing real work. Okay, the live evaluation piece — this feels like the part that changes the workflow, not just the benchmark. Cody: Instead of a static benchmark, you describe a capability in natural language and ClawEnvKit returns a verified environment on demand. Evaluation becomes continuous. And the same mechanism generates training environments adapted to wherever the agent is currently weak — which breaks the dependency on user logs. If a capability is rare in the wild, you just don't have training signal for it. ClawEnvKit can synthesize exactly those cases. Justy: One thing I'm uncertain about: the paper mostly shows this works for claw-like agents in API and file system contexts. How much does the pipeline generalize to other agent architectures? Cody: The paper doesn't fully answer that. The parser and validator feel reusable, but the generator is probably tightly coupled to the claw ecosystem's tool interface conventions. I'd want to see someone try it on a GUI agent setting before calling it general-purpose. Justy: Alright, Build Next. What do you actually do with this? Cody: The repo is live — github.com/xirui-li/ClawEnvKit. That's your starting point. If you want to get a real sense of the benchmark quality fast, Auto-ClawEval-Mini is the right entry point. 104 tasks, directly comparable to existing Claw-Eval results, so you have a reference point. [pause] And for a solo weekend experiment — pick one of the 8 supported harness frameworks, wire up whatever LLM you're working with, and run it against the mini benchmark. You'll get a concrete basel Justy: [exhales] Honestly the 13,800x cost reduction framing is going to stick with me. That's not an incremental improvement — that's a different regime entirely. Thanks for walking through the mechanics, Cody. We'll link the repo and the paper. See you next time on Exploring Next.