Papers › SkillRise: Agentic Reinforcement Learning for Cross-Task Skill Evolution

SkillRise: Agentic Reinforcement Learning for Cross-Task Skill Evolution

29 Jul 2026arXiv:2607.26784added by Syntology

Zhiyuan Yao, Yuxin Chen, Zhengxi Lu, Zishan Xu, Yueqing Sun, Yifu Guo, Yuquan Lu, Zhengzhou Cai, Kangning Zhang, Zhuowen Han, Zi-Han Wang, Ziang Ye, Qi Gu, Xunliang Cai, Weiwen Liu, Yongliang Shen

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Large language model agents often encounter related yet distinct tasks that share reusable solution patterns. Yet standard agentic reinforcement learning treats tasks as independent episodes, while existing approaches to skill learning either focus on repeated attempts of one task or use pipelines with multiple stages that entangle extraction, retrieval, and execution. We introduce SkillRise, a unified reinforcement learning framework for learning skills across tasks. SkillRise organizes related instances into progressively challenging sequences and uses a single policy to alternate between task solving and curating an evolving skill document passed directly to the next task. Decoupled credit assignment across tasks supervises solving with the current task outcome and curation with discounted downstream outcomes. Experiments on ALFWorld, WebShop, and ScienceWorld show that SkillRise achieves the strongest Pass@1 performance among the compared methods, with gains over the strongest baseline ranging from 2.3 to 8.5 percentage points. Although trained across distinct tasks, its learned curation policy remains effective for repeated attempts on the same task. Further analysis reveals scaling at test time across tasks: performance improves with longer sequences of related tasks even when each task is attempted only once. This trend suggests that SkillRise reuses transferable skills across tasks rather than benefiting from repeated sampling of the same task. SkillRise further retains strong performance while substantially reducing the runtime overhead of skill learning pipelines with multiple stages. Together, these results provide a simple and efficient training paradigm for LLM agents to extract, refine, and reuse transferable skills across tasks.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2607.26784")

Code

Syntology Ran 10 of 11 code samples harvested from 1 repository linked to this paper; 1 has no recorded run. Of those that ran: 1 ran · honoured contract; 6 ran · our draft was wrong; 3 ran with no contract checked.

By repository: found in paper text by Syntology: 11 samples from 1 repository, 10 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

Within-yao/SkillRise found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

11 samples harvested; 10 ran; 1 honoured the contract we drafted; 1 has no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · honoured contract
6ran · our draft was wrong
3ran
1unverified

Licence: 0 of the 11 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from Within-yao/SkillRise. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

EnvironmentManagerBase Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology ran Apache-2.0 (permissive) · 5016ca4ef4d18a0a · report
GroupLoader Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology ran Apache-2.0 (permissive) · f2045b8a81d620b5 · report
SimpleMemory Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology ran Apache-2.0 (permissive) · 14d332dcdd01f1b5 · report
_format_reflections Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology ran · our draft was wrong Apache-2.0 (permissive) · b680620d9ddaabe8 · report
_format_skill Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology ran · our draft was wrong fingerprinted Apache-2.0 (permissive) · 1990312b38c5e39c · report
_split_root Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology ran · our draft was wrong fingerprinted Apache-2.0 (permissive) · 072456c415283959 · report
get_reflect_prompt Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology ran · our draft was wrong fingerprinted Apache-2.0 (permissive) · 84fd6da202de7aec · report
get_skillrise_prompt Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology ran · our draft was wrong Apache-2.0 (permissive) · 45a6f77cbc6355c7 · report
resolve_gamefile Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology ran · our draft was wrong fingerprinted Apache-2.0 (permissive) · cae4d6bdb53d3044 · report
to_numpy Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology ran · honoured contract Apache-2.0 (permissive) · 21853363fde13d45 · report
SkillRiseAlfWorldEnvironmentManager Within-yao/SkillRise/agent_system/environments/skillrise_alfworld/env_manager.py found in paper text by Syntology unverified Apache-2.0 (permissive) · d9be5f536bfd266d · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2607.26784, was issued in July 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections