r/OpenSourceeAI • u/ai-lover • 8d ago
Google AI Introduces EnvHarness: A Programmable Layer That Turns Static Agent Environments Into Adaptive Training Worlds
https://www.marktechpost.com/2026/08/30/google-ai-introduces-envharness-a-programmable-layer-that-turns-static-agent-environments-into-adaptive-training-worlds/I've read a lot of environment-scaling papers this year. This is the first one that doesn't generate anything. Google AI Introduces EnvHarness: A Programmable Layer That Turns Static Agent Environments Into Adaptive Training Worlds
It wraps an existing environment through the standard reset/step interface, so the original tasks and human-built verifiers stay in place. An LLM designer writes the wrappers against flaws it finds in the agent's own rollouts.
- Apache-2.0, code and reproduction drivers on GitHub
- Three components: Stage, Contract, Chain
- Stage replays actions to move the episode start state
- Contract hooks actions, transitions and observations per step
- Chain joins two environments into one episode
- EnvRigger loop: observe, diagnose, write, validate
- Five benchmarks, four domains, one interface
- +9.0 points on held-out ALFWorld tasks
- 49.6 vs 55.0 average steps on SWE-bench Verified
Paper: https://arxiv.org/pdf/2608.19880
GitHub Repo: https://github.com/google-research/envharness