Intrinsically Curious Agents
David Li & Jonathan Li · Aug 25, 2026
Today, we outline our early research in intrinsic discovery, an approach for models to autonomously explore an environment and generate their own training experience. We use reinforcement learning to continually push a model toward novel states, then use the resulting experience to train a world model.
Using intrinsic discovery, we train LLMs to find 5x more diverse states in terminal environments than a fixed-policy baseline. We show that the states found during discovery are significantly better for training world models. After training on self-discovered states, our world model beats GPT-5.6 Sol on AgentWorldBench-Terminal-V2, a challenging terminal simulation benchmark.
Learning from an environment
Humanity has consistently improved its models of the world through experience. Underlying this is our ability to run experiments we think might produce interesting behavior.
World models can learn to predict environment states from demonstrations of actions and their outcomes. However, producing actions that expose interesting parts of an environment typically requires human demonstrations or prompting. Our key result is that reinforcement learning can push an LLM toward novel states in a terminal environment, and that these states are useful for training a world model.
Discovering novel states
Intrinsic discovery uses reinforcement learning to search for novel states. Unlike RLVR or RLHF, the goal is not the policy produced by training, but the rollouts produced along the way.
At each step, we sample actions from the current policy , execute them in the environment, and reward the resulting observations for being different from previously discovered observations:
Here, is the set of observations discovered before step . Observations that are unlike anything in receive higher reward. We update with GRPO, add the new observations to , and repeat.
The policy itself does not need to be diverse at any point in training. As previously novel states are added to , they stop receiving reward, pushing the policy toward new parts of the environment. Diversity emerges over time in the accumulated set of discovered states.
We use the generated command-observation pairs produced during discovery to train a world model initialized from the same base model.
Exploring the terminal
We demonstrate that intrinsic discovery autonomously improves world modeling capability across three open-source LLMs of varying scales (gpt-oss-20b, Qwen3.6-35B-A3B, and gpt-oss-120b). Each model runs its own discovery process to generate terminal commands and their resulting observations, which we then use to train a world model with RLVR.
We evaluate the resulting world models on AgentWorldBench-Terminal-V2, which is fully held out from the discovery process.
Compared to a fixed-policy baseline using the same base model and matched data budget, data produced through intrinsic discovery leads to substantially better downstream world model performance.
We measure diversity using the number of unique shell commands and Python libraries encountered. Across model architectures, intrinsic discovery finds unique states faster than a fixed LLM policy.
Looking ahead
Today’s models are highly dependent on human-generated data, a finite resource that is expensive to procure and difficult to scale. With intrinsic discovery, models can learn the dynamics of an environment entirely unsupervised.
We believe a key characteristic of autonomous agents is the ability to learn through self-directed interaction in an environment. Our work on intrinsic discovery is an early step in this direction, which we see as a foundation for superintelligent agents acting in simulated environments and the real world.
We’re a team of two based in San Francisco. We’re always looking for exceptional thinkers, engineers, and researchers. If our work sounds interesting to you, leave us a note at team@inductionlabs.com.