Self-Evolving Skill Learning
- Self-evolving skill learning is defined as the automatic, continual acquisition, refinement, and deployment of behavioral skills by agents through iterative feedback and data-driven cycles.
- It leverages methodologies like reinforcement learning, co-evolutionary dynamics, and unsupervised pattern detection to generate and optimize multi-level skill repositories.
- This paradigm replaces static human-authored libraries with adaptive, dynamically evolving skill sets that enhance lifelong learning and cross-domain transfer.
Self-evolving skill learning refers to the automatic, continual discovery, acquisition, refinement, and deployment of behavioral skills by artificial agents—typically LLM agents or embodied/interactive systems—driven by data and feedback from open-ended, real or simulated environments. This paradigm eliminates reliance on static, human-authored skill libraries and enables agents to autonomously expand their own capabilities, adaptively targeting gaps in competencies based on interaction experience. Modern frameworks operationalize self-evolving skill learning through iterative agent-environment feedback loops, multi-level skill abstraction, reinforcement learning, and data-driven library growth, yielding robust lifelong learning and strong transferability across models and domains.
1. Formal Frameworks and Key Definitions
At the core of self-evolving skill learning are formalizations that capture (a) the agent-environment interface, (b) what constitutes a “skill,” and (c) the lifecycle of skill evolution:
- Skill Definition: A skill is typically represented as an explicit, reusable behavioral unit—such as a parameterized trajectory, instruction/trajectory pair, code/API artifact, or a workflow bundle. For example, in EXIF each skill is a natural language instruction paired with a valid environment trajectory (Yang et al., 4 Jun 2025), while in EvoSkills a skill is a structured, multi-file package comprising SKILL.md, scripts, and test assertions (Zhang et al., 2 Apr 2026).
- Environment and Policy: The agent interacts via a discrete-time Markov-like process, observing , acting with , and maintaining a history (Yang et al., 4 Jun 2025). The policy selects actions, optionally conditioned on goals/instructions.
- Skill Library: The growing collection of discovered, validated skills or serves as an external or internal memory, retrievable based on contextual relevance (Yang et al., 1 Mar 2026, Zhou et al., 19 Mar 2026).
- Closed-loop Architecture: Skill evolution is orchestrated as an iterative or continual process—agent explores, generates new behavioral data, abstracts and validates novel skills, integrates them into the library, and uses richer feedback (success/failure signals, evaluation, or agent self-reflection) to guide the next cycle (Yang et al., 4 Jun 2025, Zhang et al., 2 Apr 2026, Wang et al., 18 Dec 2025, Cai et al., 26 Aug 2025).
2. Algorithmic Paradigms and Learning Mechanisms
Multiple algorithmic families underpin self-evolving skill learning, including supervised fine-tuning, reinforcement learning (RL), evolutionary optimization, and self-play/self-reflection:
2.1 Exploration-Iteration Feedback Loop
A canonical model, exemplified by EXIF (Yang et al., 4 Jun 2025), employs an exploration agent (Alice) to interact with the environment, generating candidate skill trajectories. These are retrospectively paired with grounded instructions, filtered for feasibility, and then used to train the target agent (Bob) via supervised imitation. Critically, Bob’s subsequent failures are mined for feedback , which in turn conditions Alice’s exploration policy in the next round, forming a data-driven, closed-loop self-evolution process.
2.2 Co-evolutionary Generator-Verifier Dynamics
Advanced systems such as EvoSkills (Zhang et al., 2 Apr 2026) and SkillForge (Liu et al., 9 Apr 2026) adopt co-evolutionary or adversarial loops:
- Skill Generator: Iteratively proposes, modifies, and refines multi-file skill artifacts.
- Surrogate or LLM-based Verifier: Independently crafts dense test assertions or mines real-world logs to evaluate and diagnose skill performance, furnishing actionable, structured feedback for further refinement.
Optimization proceeds by alternating between skill update (maximizing observable or surrogate rewards) and verifier refinement (tightening test coverage or diagnosing new failure modes).
2.3 RL-Driven Skill Discovery and Sequencing
RL-centric formulations (e.g., SAGE (Wang et al., 18 Dec 2025), MemSkill (Zhang et al., 2 Feb 2026), Memento-Skills (Zhou et al., 19 Mar 2026)) treat skill invocation, generation, and selection as policy actions within an augmented MDP:
- Primitive/Skill/Generation actions: The agent at timestep chooses between primitive actions, invoking skills in the library 0, or generating new skills 1 (Wang et al., 18 Dec 2025).
- Sequential Rollouts and Transfer: Skills abstracted early in task chains are immediately tested and reinforced on related tasks, enabling fast transfer and sample-efficient learning.
- Skill-Integrated Rewards: Reward functions explicitly incorporate skill creation/utilization, assigning bonus rewards for both the appearance and reuse of transferable skills (Wang et al., 18 Dec 2025).
- Meta-RL: The skill selection policy 2 is often meta-learned using RL or contrastive alignment, maximizing long-run utility over evolving external skill libraries (Zhou et al., 19 Mar 2026).
2.4 Data-Driven Skill Abstraction and Structuring
Experience-driven lifelong learning frameworks (ELL (Cai et al., 26 Aug 2025), SkillX (Wang et al., 6 Apr 2026)) operationalize skill abstraction via trajectory clustering and hierarchical decomposition:
- Unsupervised Pattern Detection: Embed experience trajectories 3 via 4 and cluster into 5 candidate skills using k-means or spectral clustering.
- Multi-Level Representation: Explicitly disentangle planning skills (strategic decomposition), functional skills (domain macros), and atomic skills (tool-level) for compositionality and transfer (Wang et al., 6 Apr 2026).
3. Skill Lifecycle: Generation, Validation, and Refinement
A defining feature is the rigorous, iterative management of the skill lifecycle:
| Stage | Description | Example Systems |
|---|---|---|
| Skill Generation | Autonomous proposal of skill candidates based on exploration, logs, or failure cases | EXIF, SkillWeaver |
| Skill Validation | Test new skills on held-out or adversarial tasks, with metrics such as pass rate, reward, or accuracy | EvoSkills, SkillForge, SAGE |
| Skill Pruning | Remove or merge low-utility, redundant, or obsolete skills based on empirical transfer and validation | SkillX, AutoSkill |
| Skill Refinement | Edit instructions, code, or strategy to eliminate diagnosed defects, informed by failure logs | SkillForge, EvoSkill |
| Skill Composition | Build higher-level or hierarchical skills from atomic and functional bases | SkillX, SkillWeaver |
| Library Update | Integrate, version, and track changes to maintain a robust, explicit skill repository | EvoSkill, SkillX |
The process may be orchestrated by explicit skill designers (diagnosticians), co-evolutionary meta-agents, or self-reflective LLMs (Zhang et al., 2 Apr 2026, Liu et al., 9 Apr 2026, Lu et al., 2023).
4. Evaluation Protocols and Metrics
Evaluation of self-evolving skill learning focuses on both task-oriented and lifelong learning metrics:
- Task Completion Rate and Reward: Fraction of tasks solved, average normalized reward, absolute improvements over baselines (e.g., Webshop: reward increased from 23.2 to 52.6; success rate from 5.0% to 12.4% under EXIF (Yang et al., 4 Jun 2025)).
- Skill Acquisition Rate: Number of skills added to the library per unit time or per interaction.
- Transfer and Generalization: Zero-shot or cross-domain transfer rates of evolved skills into weaker agents, confirming portability (e.g., OfficeQA: +7.3% EM, SealQA: +12.1% with EvoSkill (Alzubi et al., 3 Mar 2026); Uni-Skill: +30–40 points on out-of-base robotic tasks (Xie et al., 3 Mar 2026)).
- Efficiency Metrics: Fewer interaction steps, tokens, or demonstration requirements (SAGE: –26% steps, –59% tokens (Wang et al., 18 Dec 2025); SkillX: –15–20% input tokens and execution steps (Wang et al., 6 Apr 2026)).
- Lifelong Robustness: Measures such as average performance over time, backward/forward transfer, and forgetting scores to assess continual adaptation and stability (Cai et al., 26 Aug 2025).
5. Empirical Results and System-Level Impact
Recent frameworks demonstrate substantial, monotonic improvements across diverse benchmarks and domains:
- EXIF: Achieves reward increases of +29.4 (Webshop), +4 skills learned (Crafter), and robust qualitative gains in task compositionality (Yang et al., 4 Jun 2025).
- EvoSkills: Exceeds human-curated and naive tool-based workflows by +17.6pp (71.1% pass rate vs. 53.5% baseline) and generalizes to multiple LLM backbones with transfer gains of +35–44pp (Zhang et al., 2 Apr 2026).
- SkillForge: Iterative self-optimization enables domain-specific skills to surpass manual and legacy decision-tree systems (+13.8pp strict consistency) (Liu et al., 9 Apr 2026).
- SkillWeaver: Grows plug-and-play web agent libraries with +31.8% WebArena SR improvement, directly boosting weaker agents by up to +54.3% (Zheng et al., 9 Apr 2025).
- SkillX: Structured, multilevel skill-knowledge bases consistently improve downstream task success and sample efficiency, and offer modular transfer to weaker agents (Wang et al., 6 Apr 2026).
Ablative and transfer studies consistently indicate that each component—exploration, feedback-driven refinement, and hierarchical abstraction—yields independent and complementary gains; omitting them leads to collapse or substantial drops in performance.
6. Open Challenges and Future Directions
Despite rapid progress, several open research frontiers persist:
- Skill Quality and Pruning: Automated assessment, aging, and retirement of low-utility skills to prevent bloat and maintain library relevance (Yang et al., 1 Mar 2026, Zhang et al., 2 Feb 2026).
- Scalable Verification: Handling surrogacy limitations in skill validation and approximating ground-truth oracles for complex domains (Zhang et al., 2 Apr 2026).
- Joint Heterogeneous Evolution: Evolutionary frameworks that support multi-model, multi-task and multi-agent co-optimization (Zhang et al., 2 Apr 2026, Nie et al., 19 Apr 2026).
- Theoretically Grounded Guarantees: Formal regret or convergence bounds, especially in non-stationary or adversarially generated task landscapes.
- Integrated Human Feedback: Combining reinforcement learning from human feedback (RLHF) with automated self-evolution for critical or safety-sensitive skills (Tian et al., 30 Apr 2026).
- Cross-modal Generalization: Extending explicit skill evolution into vision-language, multi-agent, and embodied interactive environments (Xie et al., 3 Mar 2026, Nie et al., 19 Apr 2026).
- Curriculum and Exploration: Designing uncertainty-driven or curriculum-based probes to maximize the empirical coverage and boundary expansion of skill libraries (Tian et al., 30 Apr 2026).
7. Relation to Broader Lifelong and Continual Learning
Self-evolving skill learning generalizes and synthesizes multiple threads in open-ended learning:
- Experience-driven Lifelong Learning: Modular consolidation of agent experience into persistent, composable skills supports proactive, not merely reactive, adaptation (Cai et al., 26 Aug 2025, Yang et al., 1 Mar 2026).
- Meta-skill Internalization: Feedback-driven, self-reflective refinement (e.g., SELF (Lu et al., 2023), LSE (Chen et al., 19 Mar 2026)) empowers models not only to store and re-invoke behavioral units, but to iteratively critique and reify their own learning protocols.
- Agent-Agent Co-evolution: Population- or graph-based systems (e.g., SkillGraph (Nie et al., 19 Apr 2026)) couple the evolution of skills with emergent, dynamic communication and collaboration strategies.
Taken together, these frameworks instantiate advanced forms of open-endedness, where agents autonomously grow their own toolkits and pipelines without static parameter fine-tuning or manual supervision, forming the foundation for future generalist, life-long learning AI systems.