Filter
Exclude
Time range
-
Minimum likes
It was a packed house at the SkyRL Meetup today. Thanks to all the speakers!
Join us for the first-ever SkyRL Meetup! It's been a year since we released the SkyRL library. SkyRL now has 2k+ GitHub stars and a growing user base in academia and industry, including researchers from Stanford, CMU, UC Berkeley, Microsoft AI, Datadog, and more. We're hosting a SkyRL Meetup on August 18th at the Anyscale office in SF. We have a special set of lightning talks: 🔗 Making frontier RL training accessible to everyone, from @trajectorylabs 🐶 Post-training an SRE agent with SkyRL, from @datadoghq ⚡️ Scaling RL with SkyRL on AMD GPUs, from @AMD 🧑🏻‍💻 Training knowledge work agents with SkyRL, from the SkyRL team (@charlie_ruan) We’ll also do a deep dive into the library and talk about the road ahead. More details here: luma.com/y4ahouh6
2
12
4,935
Check out VLM training in SkyRL! SFT / multi-turn RL, LoRA / full-finetuning, tinker-compatible as well!
SkyRL now supports end-to-end vision-language post-training, from SFT to agentic RL, and adds vision model support to SkyRL’s Tinker interface! Existing multimodal cookbooks, e.g. VLM classification, work out of the box:
10
925
Great work from the @OpenHandsDev community and CMU! Open source SOTA on code localization via RL. Happy to see the beautiful reward curves trained with SkyRL!
Can we train code agents to search relevant locations in a codebase only using a terminal? Introducing CodeScout: an effective RL recipe for code search 🚀 🏆 Outperforms 18x larger OSS LLMs 🔥 Comparable to proprietary LLMs 📈 SoTA on SWE-Bench Verified, Pro, & Lite 🧵 [1/N]
7
25
3,350
We’ve been consistently surprised lately by how capable frontier models are at handling complex kernel implementation and system optimization. Check out this work as a step toward automating AI infrastructure building!
Introducing our new work K-Search: LLM Kernel Generation via Co-Evolving Intrinsic World Model — a new paradigm for automated GPU kernel generation, achieving SoTA results. 🔍 Big insight: Traditional methods treat LLMs as stochastic code generators inside heuristic loops — but this misses a key point: LLMs are powerful planners with rich domain priors. 🧠 Core idea: K-Search uses the LLM itself as a co-evolving world model — one that plans + updates beliefs + guides search decisions based on experience. 📌 This decouples high-level strategy (intent) from low-level code implementation, allowing the optimizer to pursue multi-step transformations even when intermediate implementations don’t immediately improve performance. 📈 Key results: 🔥 Our discovered kernels are ~2.10× average speedup vs state-of-the-art evolutionary search across 4 FlashInfer kernels on H100/B200. 🔥 Up to 14.3× gain on complex Mixture-of-Experts (MoE) kernels. 🔥 State-of-the-art performance on GPUMode TriMul (H100) task — beating both automated and human solutions. 🙏 Acknowledgements This work is developed in @BerkeleySky, w/ the amazing @ziming_mao, @profjoeyg, and @istoica05. We thank @DachengLi177, @MayankMish98, @randwalk0, @pgasawa, @fangz_zzu, and @tian_xia_ for helpful discussion and feedback. We also thank the generous compute support from @databricks, @awscloud, @anyscalecompute, @nvidia, @Google, @LambdaAPI, and @MayfieldFund. 👨‍💻 GitHub: github.com/caoshiyi/K-Search 📄 arXiv: arxiv.org/pdf/2602.19128v1
3
20
2,850
Excited to see SkyRL being used by systems research to study how agentic RL workload can be optimized!! github.com/ThunderAgent-org/…
🔥Modifying 2 lines of code and get your agentic serving/rollout up to 3.9x faster losslessly! ⚡️Say hello to ThunderAgent, a fast, simple, and program-aware agentic Inference System. 🥇 We propose a program abstraction to schedule all GPU and CPU resources, the first principled approach for distributed agentic inference and rollout. 🌐 Blog: thunderagent.ai/ 💻 Code: github.com/ThunderAgent-org/… 📜 Paper: arxiv.org/pdf/2602.13692 #AI #ThunderAgent #LLMAgent #Mlsys 1/n
1
4
22
2,374
Train your terminal-use agents with SkyRL+Harbor!
Releasing the official SkyRL + Harbor integration: a standardized way to train terminal-use agents with RL. From the creators of Terminal-Bench, Harbor is a widely adopted framework for evaluating terminal-use agents on any task expressible as a Dockerfile + instruction + test script. This integration extends it: the same tasks you evaluate on, you can now RL-train on. Blog: novasky-ai.notion.site/skyrl… 🧵
1
16
1,235
We are excited to announce that SkyRL now implements the Tinker API. Run Tinker training scripts on your own hardware with zero code changes. Try it out today: novasky-ai.notion.site/skyrl…
SkyRL now implements the Tinker API. Now, training scripts written for Tinker can run on your own GPUs with zero code changes using SkyRL's FSDP2, Megatron, and vLLM backends. Blog: novasky-ai.notion.site/skyrl… 🧵
4
27
3,194
A very cool project built with SkyRL!!
(1/9) We built Endless Terminals: a fully autonomous pipeline that procedurally generates terminal tasks for RL training with no human annotation needed. Simple PPO + scaled environments give consistent improvements on downstream tasks like Terminal Bench 2.0!
4
14
2,639
To get started with `skyrl-train` as a library instead of forking, you can follow our instructions here: skyrl.readthedocs.io/en/late… to use the PyPI package! (6/n)
1
2
316
And More! - Guides to running SkyRL on managed platforms (RunPod, Anyscale, SkyPilot): skyrl.readthedocs.io/en/late… - Experimental GPT-OSS Support - Bump vLLM->0.11.0, Ray->2.51.1 - Integration with PyTorch OpenEnv (5/n)
1
2
226
We recently released SkyRL-Train v0.3.0! Highlights include: - Experimental support for Pipeline-RL style Async-RL - Updated E2E Recipes page with Math, Search, SQL runs - Migration from mbridge -> Megatron-Bridge - 14 new OSS contributors! (1/n) 🧵
2
6
28
3,190
OpenThoughts-Agent + SkyRL + Harbor 🚀🚀
Announcing OpenThoughts-Agent with an incredible team — a data-centric effort on TerminalBench-style tasks, built with SkyRL+Harbor 💻🤖 Co-leading the RL team over the past month has been a blast, and we’re just getting started! (1/n) 🧵
1
1
15
2,515
🔥🔥🔥[SkyRL-Agent Release] Check out our agent layer for SkyRL! To facilitate agent training, we decouple the agent layer and the training backend so builders can iterate quickly — plug in new tools, dispatchers, or RL backends with minimal friction. Built for ⚡ Fast, 🧩 modular, 🔄 backend-portable.
1/n 🚀 Introducing SkyRL-Agent, a framework for efficient RL agent training. ⚡ 1.55× faster async rollout dispatch 🛠 Lightweight tool + task integration 🔄 Backend-agnostic (SkyRL-train / VeRL / Tinker) 🏆 Used to train SA-SWE-32B, improving Qwen3-32B from 24.4% → 39.4% Pass@1 on SWE-Bench Verified with >2× lower cost GitHub: github.com/NovaSky-AI/SkyRL Paper link: arxiv.org/pdf/2511.16108 👇 more details
1
23
2,516
☁️SkyRL now runs seamlessly with SkyPilot! Let @skypilot_org handle GPU provisioning and cluster setup, so you can focus on RL training with SkyRL. 🎯 Launch distributed RL jobs effortlessly ⚙️ Auto-provision GPUs across clouds 🤖 Train your LLM agents at scale Get started with the SkyRL × SkyPilot guide: 🔗skyrl.readthedocs.io/en/late… 🔗docs.skypilot.co/en/latest/e…
9
25
5,497
SkyRL v0.2.0 is here! With 22 contributors (including 11 new contributors!), this release holds many updates like strong MoE support with Megatron, LoRA support, standardized inference on the OpenAI API, new integrations, and many many more. The code: github.com/NovaSky-AI/SkyRL
1
4
23
2,187
SkyRL just crossed 1000 Github stars! Thank you to all the wonderful contributors and users building this project together 🥳 Check it out: github.com/NovaSky-AI/SkyRL
5
37
5,967
SkyRL x Megatron is ready! Try large-scale MoE training on SkyRL today: github.com/NovaSky-AI/SkyRL/…
SkyRL now supports Megatron! Training massive MoE models demands more than just ZeRO-3/FSDP sharding. The Megatron backend for SkyRL unlocks high throughput training with: ✅ 5D parallelism (tensor + pipeline + context + expert + data) ✅ Efficient training for 30B+ MoEs
5
15
1,712
Excited to see this work train "Advisor Models" using SkyRL! Great work by @pgasawa and @aczhu1326.
Training our advisors was too hard, so we tried to train black-box models like GPT-5 instead. Check out our work: Advisor Models, a training framework that adapts frontier models behind an API to your specific environment, users, or tasks using a smaller, advisor model (1/n)!
3
4
14
1,945
We're excited about Tinker, and believe it opens up a new way of looking at post-training and inference systems, and how they can work together. We introduce SkyRL tx to develop an open backend for the Tinker API -- please join us!
Introducing SkyRL tx 🧸, an open-source project to implement the Tinker API. The SkyRL team is excited about the Tinker API and the opportunities of using a single canonical interface that unifies training and inference. SkyRL tx lets you run a Tinker-like service locally today, but the project is early and we want to collaborate with you all! Blog: novasky-ai.notion.site/skyrl… Code: github.com/NovaSky-AI/SkyRL/…
2
13
1,856
Scaling agentic simulations is hard, so in collaboration with @anyscalecompute we wrote up our experience using Ray for agent sims—featuring an end-to-end RL example with SkyRL! Check it out here: anyscale.com/blog/massively-…
1
5
11
3,079