| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
An easy-to-configure, extensible veRL extension that brings the Anthropic Skill Creator into agentic RL training. Full control over skill versioning, sampling, bundle testing, and skill-policy co-evolution.
Official code for the paper: ReSkill: Reconciling Skill Creation with Policy Optimization in Agentic RL.
(a) Inspired by Anthropic's human-in-the-loop Skill Creator, ReSkill recasts skill creation as an RL-in-the-loop process. (b) Compared with decoupled skill-update methods, ReSkill exposes a highly configurable loop for jointly evolving skills and policies.
ReSkill combines three pieces:
git clone https://github.com/amazon-science/reskill.git
cd reskill
git submodule update --init --recursive verl
pip install -e .Install only the benchmark and backend extras you need:
pip install -e ".[<env>,vllm]"Validated stack pins are recorded under requirements/.
The current benchmark extras are alfworld, search, and scienceworld. Additional environment support will be added over time.
Skill creation calls out to an LLM, selected by env.trigger_skills.skill_llm.backend. The default (bedrock) works out of the box via boto3; the other backends need their matching extra:
| skill_llm.backend | Install |
|---|---|
| bedrock (default) | included |
| anthropic | pip install -e ".[anthropic]" |
| openai | pip install -e ".[openai]" |
Prepare data for an environment:
python scripts/data_prep/prepare_<env>.py --output_dir data/<env>Run training:
python scripts/train.py --config-name <env>Concrete configs live under configs/, and cluster launch examples live under scripts/launch/.
ReSkill is designed so both sides of the co-evolution loop can be customized.
This codebase is under active restructuring and testing as we work toward a stable release. Thank you for your patience and interest!
We thank the contributors to veRL, verl-agent, and Anthropic Skill Creator for their open-source foundations and inspiration, which ReSkill builds upon.
Apache 2.0
If you find this work helpful, please kindly consider citing our paper and starring the repository.
@article{he2026reskill,
title={ReSkill: Reconciling Skill Creation with Policy Optimization in Agentic RL},
author={He, Zelin and Lin, Haotian and Han, Boran and Zhu, Wei and Fang, Haoyang and Wang, Bernie and Zhu, Xuan and Li, Runze and Reimherr, Matthew},
journal={arXiv preprint arXiv:2606.01619},
year={2026}
}| Back | FazBrowse Home | New Git URL |