Can agents learn from vague goals without predefined metrics?
Most self-improving AI systems optimize toward explicit objectives. But what if an agent must first decide what capability to build, how to build it, and how to measure progress—all from only a natural-language goal?
Aspire starts from a contrast the introduction states directly. Human learning often begins with "a broad capability direction rather than a predefined benchmark, training set, or fully computable reward function," and so involves three coupled decisions: what to improve, how to improve it, and how to verify the improvement. Existing LLM self-evolution work "focuses primarily on the second decision," searching for effective optimization paths toward a specified objective, which the abstract describes as "reducing self-evolution to optimizing an explicit objective rather than deciding what and how to learn."
The benchmark removes the scaffolding that makes the second decision tractable. The agent receives only a natural-language capability goal, and the downstream evaluation tasks stay hidden. It must operationalize the goal by choosing data and update methods, constructing its own training and validation signals, and deciding when to evaluate. The same interactive environment supports both model-weight evolution and agent-harness evolution, and the outcome is scored on a hidden, expert-authored set of 520 items across six goals. The stated finding is that "vague goals redirect search effort toward goal interpretation," and the conclusion adds that the process slice associates vague-goal prompting with more goal-definition work.
The discussion turns this into a caution about measurement. Self-directed runs "produce evaluated checkpoints far more often than retained improvements," and the highest successor-harness mean stays below a fixed reference under unchanged runtime weights. The authors conclude that progress has to be judged against the base model rather than only against the previous checkpoint, because "closing the training loop is not yet the same as closing the capability loop."
Against the nearest notes, this paper moves the open problem one step earlier than they do. Can agents evolve their own objectives during search? has SAGA's outer loop propose objectives and compile them into executable scoring functions; Aspire is a test of the harder case where no scoring function exists yet and evaluation stays out of the agent's sight. Can AI systems improve themselves through trial and error? improves against fixed benchmarks, which is exactly the setting the introduction calls the existing norm. The weights-versus-harness support echoes Do self-improving agents really split into two distinct loops?. The third decision, verification, is where What limits how much models can improve themselves? would apply, though the excerpt does not itself make that link.
The excerpt is silent on the numbers behind these results: the size of the gap to the fixed reference, which models and harnesses were run, and what the reference is. The authors bound their own conclusions by the six goals, the coverage and scoring quality of the expert-authored items, one canonical adaptive-feedback run per configuration and goal, and trace content available only under controlled access. What it supports is narrow: in this benchmark, an evaluated checkpoint is a weak proxy for retained capability, so any claim of self-evolution from a vague goal needs a base-model comparison, not only a comparison with the previous checkpoint.
Inquiring lines that read this note 2
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
Can local safety checks guarantee system-level behavioral safety? What fundamental constraints limit how effectively agents can improve themselves?Related concepts in this collection 4
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Can agents evolve their own objectives during search?
Can an AI system treat objective design itself as a searchable variable, reformulating goals in response to optimization outcomes rather than optimizing under fixed targets?
extends: SAGA compiles new objectives into scoring functions, while Aspire hides evaluation and asks whether agents can operationalize a goal at all
-
Can AI systems improve themselves through trial and error?
Explores whether replacing formal proof requirements with empirical benchmark testing enables AI systems to successfully modify and improve their own code iteratively, and what mechanisms prevent compounding failures.
contrasts: DGM improves against a fixed benchmark, the setting Aspire treats as the existing norm
-
Do self-improving agents really split into two distinct loops?
Explores whether modern self-improving agents can be understood through a clean abstraction separating fast scaffold updates from slow model weight updates, and whether this framework actually explains the field's recent progress.
parallel: Aspire covers both weight and harness evolution in one environment
-
What limits how much models can improve themselves?
Explores whether self-improvement has fundamental boundaries set by how well models can verify versus generate solutions, and what this means across different task types.
relevant to the verify decision, though the excerpt does not connect the two
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Aspire: Can Models Self-Evolve from Vague Goals?
- Self-Improvements in Modern Agentic Systems: A Survey
- Generalized Agent Iteration: One Formal Framework for Iterative Policy Improvement and Recursive Self-Improvement
- Recursive Self-Improvement in AI: From Bounded Self-Refinement to Autonomous Research Loops
- The Red Queen Gödel Machine: Co-Evolving Agents and Their Evaluators
- Large Language Model Agents Are Not Always Faithful Self-Evolvers
- RLVMR: Reinforcement Learning with Verifiable Meta-Reasoning Rewards for Robust Long-Horizon Agents
- Position: LLMs Can't Plan, But Can Help Planning in LLM-Modulo Frameworks
Original note title
self-evolution from a vague goal couples what to improve, how to improve it and how to verify — existing work focuses primarily on the second