Aether AI

RSIAgent lets open-source models explore new environments—and surpass GPT-6 Astra on OSWorld 2.0 and Agents’ Last Exam

Introducing RSIAgent: an Autonomous Exploration for Recursive Self-Improvement framework for digital agents.

Over the past few years, large language models and multimodal models have grown steadily more capable. Digital agents have moved from “being able to chat” toward “being able to complete tasks.” They can click through websites, operate software, invoke tools, write programs, and even carry out complex, multi-step workflows across applications.

But when an agent enters a genuinely unfamiliar environment, the challenges often only begin. New software brings new interaction logic; new tools require different ways of calling them. Each environment also has its own hidden constraints, exceptional states, and failure modes. Even a model with strong reasoning abilities may not understand the environment’s causal structure: which actions lead to which outcomes? Which conditions trigger failure? Which factors actually determine whether a task is complete? This knowledge often emerges only through active probing, intervention, and observation.

A straightforward solution has been to collect new interaction data and retrain the model through fine-tuning, reinforcement learning, or human feedback. But this route is not always practical. Collecting and annotating data, then training on it, is expensive. In enterprise software, private work environments, and constantly changing digital systems, data is often difficult to make public, and frequent retraining may be impractical.

This raises a more direct question:

Without updating its parameters, can an agent learn like a person—exploring a new environment, discovering its causal regularities, consolidating experience, and continuously improving?

Aether AI, together with UCSD and UIC, introduces RSIAgent: an Autonomous Exploration for Recursive Self-Improvement framework for digital agents. The agent decides what to learn, enters the environment to acquire experience, verifies the outcomes, and consolidates stable action–condition–outcome causal relationships into memory for subsequent tasks to reuse.

Without updating model parameters, RSIAgent improves the agent capabilities of open-source models such as Kimi-K3 and GLM-5.3, surpassing closed-source models such as GPT-6 Astra on OSWorld 2.0 and Agents’ Last Exam. RSIAgent achieves a partial score of 78.98% on OSWorld 2.0 (0808 offline) and 84.82% on Agents’ Last Exam (Near-term), ahead of GPT-6 Astra’s 72.60% and 82.26%, respectively.

RSIAgent’s curriculum, actor, and verifier agents form a recursive loop with evolving memory. Benchmark bars show RSIAgent at 78.98% on OSWorld 2.0 and 84.82% on ALE.
Figure 1 RSIAgent’s framework and performance. A recursive loop of curriculum generation, execution, verification, and memory evolution enables autonomous adaptation to new environments, taking open-source models beyond several frontier closed-source models on OSWorld 2.0 and Agents’ Last Exam.

01From passive learning to active exploration: RSIAgent’s core idea

At its core, RSIAgent turns interaction with a new environment into an ongoing learning process. Around an evolving memory, the system builds a multi-agent recursive loop comprising a curriculum agent, an actor agent, and a verifier agent. The curriculum agent decides what to explore next; the actor agent enters the environment to execute tasks and acquire experience; the verifier agent uses feedback from the real environment to determine whether the results are reliable. Useful knowledge is then continuously written into memory. Rather than passively completing tasks, the agent can autonomously choose learning directions, acquire experience, and expand its knowledge of the environment.

Building on this loop, RSIAgent uses a broad-to-deep, two-stage self-exploration strategy. Its rationale resembles pre-training followed by post-training in large models: first establish broad capability coverage through diverse exploration, then reinforce the ability to handle critical difficulties.

Stage 1Broad Recursive Self-exploration

This stage is analogous to pre-training. The emphasis shifts from solving an individual task to quickly building a broad understanding of the environment. In each round, the curriculum agent generates several exploration tasks in different directions—for example, trying different tools, interaction methods, or input conditions. Multiple actor–verifier agent pairs execute and verify them in parallel, consolidating useful experience into shared memory. Based on what has already been learned, the curriculum agent proposes another batch of valuable tasks that cover new directions. The result is a parallel recursive chain:

Tasks in multiple directionsParallel executionParallel verificationConsolidate and update memoryNew tasks in multiple directions

By continually expanding the directions of exploration, Broad Recursive Self-exploration quickly covers common rules, operating procedures, and failure modes. It first builds a relatively comprehensive “map of environment knowledge,” laying the foundation for deeper exploration of critical difficulties.

Stage 2Deep Recursive Self-exploration

This stage is closer to post-training. Its focus shifts from covering more knowledge to overcoming critical difficulties, actively seeking problems that are hard, hidden, error-prone, or exposed only under complex conditions. The curriculum agent first generates a relatively difficult task, deliberately taking the system into situations where exceptional states, hidden constraints, or boundary cases may arise. The actor agent uses the current memory to perform the task, and the verifier agent checks the outcome. The curriculum agent then designs a harder task based on the failures, unknowns, and weaknesses just uncovered. The process becomes a sequential recursive chain:

Difficult taskExecutionVerificationUpdate memoryA harder task

Each round builds on the knowledge acquired in the previous one. Deep Recursive Self-exploration therefore resembles automated “stress testing”: it continually pushes the agent toward the boundaries of its knowledge, helping it understand where the environment is most likely to cause problems.

Finally, the memory accumulated through both stages is frozen and reused directly for subsequent task execution. The agent gains reusable capabilities for a new environment without updating its model parameters.

The RSIAgent framework illustrated with FreeCAD: parallel Broad Recursive Self-exploration, sequential Deep Recursive Self-exploration, and Test-time Memory Reuse.
Figure 2 RSIAgent’s overall framework, illustrated with a FreeCAD task. BRS acquires diverse experience through parallel exploration, while DRS progressively refines memory through deeper exploration. The curriculum agent proposes tasks; the actor agent executes code-based actions and updates memory; the verifier agent checks the outcomes. The accumulated memory is then frozen and reused for downstream tasks.

From exploration to execution: RSIAgent in real software

Case-study video Recorded REAPER and FreeCAD desktop replays alongside the evolution and test-time reuse of memory. Exploration and execution are shown at accelerated playback speeds.

02Experimental analysis

1.Taking open-source models beyond frontier closed-source models

On OSWorld 2.0 and Agents’ Last Exam, RSIAgent builds on the open-source models GLM-5.3 and Kimi-K3. Its RSI strategy raises the OSWorld 2.0 score from 71.97% to 78.98%, well above frontier closed-source models such as GPT-6 Astra and Claude Opus 5. This shows that, even without parameter updates, agents can continue to extend the capabilities of their underlying models through autonomous exploration and memory evolution.

Table 1 Model comparison on OSWorld 2.0 (0808 offline) and Agents’ Last Exam Near-term. Baseline results are mostly taken from official technical reports or blogs.
Model / methodOSWorld 2.00808 offline / 82 tasksAgents’ Last ExamNear-term / 67 tasks
Partial (%)Binary (%)Partial (%)Binary (%)
Open-source models
Kimi-K2.622.104.6021.709.20
MiMo-V2.523.608.60
DeepSeek V4 Pro43.8119.90
Qwen3.8-Max52.5027.00
Kimi-K358.3071.6040.30
Closed-source models
Claude Opus 4.854.8020.6064.0043.30
Gemini-3.8-Flash59.00
GPT-5.6 Sol64.1328.1078.8247.76
Muse Spark 1.366.90
Claude Fable 571.1037.30
Claude Opus 570.1934.7279.5446.27
GPT-6 Astra72.6082.2652.24
Ours · Using open-source models
RSIAgent (w/o RSI)71.9737.8083.7549.25
RSIAgent78.9842.6884.8250.75

—: not reported in the cited benchmark leaderboards or official technical reports. Original table ↗

2.Extending RSIAgent to game environments

We also apply RSIAgent to autonomous game development on GameCraft-Bench. The results show further improvements in mechanics, depth, visuals, art, and overall quality, indicating that its active-exploration and self-evolution mechanism can transfer to different types of interactive environments.

Autonomous game development on GameCraft-Bench.
MethodMechanicsDepthVisualsArtOverall ↑
Generator: Codex + GPT-5.5 (high)
Baseline61.553.054.747.952.77
+ Play2Code60.050.252.247.551.05
+ RSIAgent (w/o RSI)66.457.159.353.857.84
+ RSIAgent69.761.062.657.161.28
Generator: Kimi-K2.6
Baseline43.533.534.122.631.28
+ Play2Code48.936.540.927.936.02
+ RSIAgent (w/o RSI)55.243.147.034.642.61
+ RSIAgent59.047.250.838.146.37
Generator: GLM-5.3-Flash
Baseline36.529.631.428.530.55
+ Play2Code48.637.640.033.738.25
+ RSIAgent (w/o RSI)55.144.047.340.144.73
+ RSIAgent59.248.151.343.848.72

Original table ↗

3.Ablating BRS and DRS

The ablation study demonstrates the importance of both Broad Recursive Self-exploration and Deep Recursive Self-exploration. The broad stage quickly establishes coverage of environment knowledge; the deep stage focuses further on difficulties, hidden constraints, and boundary conditions. Removing either stage substantially affects the breadth or depth of exploration.

Ablation results for T080 spreadsheet repair, T085 audio editing, T089 web presentation, and T106 liver segmentation. Full RSI means are 68.69, 94.15, 81.25, and 54.06 percent, respectively.

4.More RSI rounds, continued self-evolution

As the number of RSI rounds increases, agent performance continues to improve. Tasks converge at different rates depending on their difficulty: simpler tasks may reach high scores quickly, while complex tasks require more rounds of exploration to resolve the remaining bottlenecks. On representative tasks, final scores can reach 100%, reflecting a process of recursive evolution reminiscent of human exploration and learning.

Partial score across RSI steps: T044 rises from 40% to 100% by step 2; T049 rises from 40% to 80% by step 4; T065 rises from 0% to 100% at step 7.

03Toward active causal discovery and learning: Scaling Experience for Agents

Over the past few years, advances in AI have largely depended on scaling models. Yet this paradigm remains fundamentally “train first, deploy later.” When a model encounters new software, tools, or environments, it often requires another round of data collection and additional training. It lacks the ability to autonomously develop new knowledge during deployment.

To address this problem, the Aether AI team has been advancing autonomous causal discovery, memory evolution, and self-learning in agents. Causal-Copilot explores how agents can autonomously carry out causal analysis, going beyond correlation to identify the factors that truly influence outcomes. C-World creates open-ended tool-use environments in which agents can continuously test, acquire experience, and construct data through more complex and open-ended interactions. Building on this foundation, Auto-scaling Continuous Memory and Hybrid Self-evolving Structured Memory investigate how this continually generated experience can become scalable, evolving long-term memory. StructAgent further brings these capabilities together in long-horizon digital agents, organizing state, execution, and verification through a unified causal structure.

RSIAgent seeks to move agents from passive training toward active causal discovery and learning—and, ultimately, genuine self-evolution. In a new environment, the agent does not merely record trajectories. It actively decides what to explore next, applies different interventions through ongoing interaction, probing, and verification, and observes their consequences. In doing so, it can gradually discover causal relationships between actions, conditions, and outcomes: which operations cause which changes, which conditions lead to failure, and which key factors can be changed to alter the final result.

This creates another path to scaling: Scaling Experience. With model parameters held fixed, RSIAgent expands the scope of exploration through successive RSI rounds, discovers new causal regularities and environment mechanisms from successes, failures, and boundary cases, and consolidates them into evolvable memory. Memory becomes more than a store of past experience: it gradually develops into a reusable understanding of the environment’s causal structure, supporting subsequent decisions and continued self-evolution.

Tasks of different difficulty also exhibit different “rates of evolution.” Simple tasks may converge after a few RSI rounds, while complex tasks require more active exploration to uncover hidden variables, unknown constraints, and corner cases. In the experiments, some tasks that initially score only 0–40% eventually reach 100% as RSI rounds increase.

The future ceiling of an agent’s capabilities may therefore depend not only on how strong its underlying model is, but also on whether it can continually discover, verify, and accumulate causal knowledge through active intervention—and turn that knowledge into enduring, reusable capabilities. Aether AI will continue pursuing this direction: enabling agents not merely to remember what happened, but to gradually understand why it happened and how changing the causes can change the outcomes, ultimately achieving reliable autonomous evolution.

References

  1. RSIAgent: Autonomous Exploration for Recursive Self-Improvement in New Environments

    Sibo Zhu, Shicheng Fan, Xinyue Wang, Wenyi Wu, Kun Zhou*, Biwei Huang. 2026.

  2. Causal-Copilot: An Autonomous Causal Analysis Agent

    Xinyue Wang, Kun Zhou, Wenyi Wu, Har Simrat Singh, Fang Nan, Songyao Jin, Aryan Philip, Saloni Patnaik, Hou Zhu, Shivam Singh, Parjanya Prashant, Qian Shen, Biwei Huang. 2025.

  3. C-World: A Computer Use Agent Environment Creator

    Ziqiao Xi, Shuang Liang, Qi Liu, Jiaqing Zhang, Letian Peng, Fang Nan, Meshal Nayim, Tianhui Zhang, Rishika Mundada, Lianhui Qin, Biwei Huang, Kun Zhou*. 2026.

  4. Auto-scaling Continuous Memory for GUI Agent

    Wenyi Wu, Kun Zhou*, Ruoxin Yuan, Vivian Yu, Stephen Wang, Zhiting Hu, Biwei Huang. 2025.

  5. Hybrid Self-evolving Structured Memory for GUI Agents

    Sibo Zhu, Wenyi Wu, Kun Zhou*, Stephen Wang, Biwei Huang. 2026.

  6. StructAgent: Harness Long-horizon Digital Agents with Unified Causal Structure

    Wenyi Wu, Sibo Zhu, Kun Zhou*, Aayush Salvi, Zixuan Song, Biwei Huang. 2026.