yh-yao/awesome-rl-ai-agents

A curated list of recent progress and resources on Reinforcement Learning for AI Agents.

7

31 commits

updated Sep 15, 2026

See the code

README

Awesome RL for AI Agents Awesome

RL for AI Agents

A curated list of recent progress and resources on Reinforcement Learning for AI Agents.

Last update PRs Welcome License


What's New

Highlights added in this refresh (mostly 2026):

  • Long-horizon credit assignment — GACA, VICT, PGPO, IAPO, AHEAD
  • Outcome-only RL that scales — CANOPY
  • Budget-aware search — AnySearch (one policy, any budget)
  • Memory, skills, and harnesses — AgenticRag-R1, TRACER, SkillForge, SPACE, HAT
  • Environments & evaluation — EnvCraft, ClawBench, MobilePA-Bench
  • Surveys — rubric-guided RL (EMNLP Findings 2026)

Contents


Reinforcement learning (RL) is rapidly becoming a driving force for AI agents that can reason, act, and adapt in the real world. While large language models (LLMs) provide powerful priors for reasoning, they remain static without feedback. RL closes this gap by enabling agents to learn from interactions—through self-reflection, outcome-based rewards, and tool or human feedback.

This repository curates up-to-date resources on RL for AI agents, organized along three main axes:

  • Agentic workflows without training – prompting strategies that enhance reasoning without fine-tuning.
  • Evaluation and benchmarks – systematic tests for reasoning, tool use, and automation.
  • RL for single and multi-agent systems – advancing self-evolution, efficient tool use, and collaboration.

Tables provide quick overviews, while accompanying descriptions highlight deeper insights.


Agentic Workflow without Training

TitleShort titleVenueYearMaterialsDescription
Tree of Thoughts: Deliberate Problem Solving with Large Language ModelsToTICML2023PaperSearch over reasoning trees to explore alternatives before committing.
Reflexion: Language Agents with Verbal Reinforcement LearningReflexionNeurIPS2023PaperSelf-critique and retry loops that emulate feedback without training.
Self-Refine: Iterative Refinement with Self-FeedbackSelf-RefineNeurIPS2023PaperIterative editing using self-generated feedback to improve outputs.
ReAct: Synergizing Reasoning and Acting in Language ModelsReActICLR2023PaperInterleaves chain-of-thought with tool calls for grounded reasoning.
SwiftSage: A Generative Agent with Fast and Slow Thinking for Complex Interactive TasksSwiftSageACL2023PaperSplits fast vs slow planning to balance cost and performance.
DynaSaur: Large Language Agents Beyond Predefined ActionsDynaSaurarXiv2024PaperDynamically extends the agent’s action space beyond fixed tool sets.

Agent Evaluation and Benchmarks

TitleShort titleVenueYearMaterialsDescription
GAIA: A Benchmark for General AI AssistantsGAIAarXiv2023Paper466 real-world tasks spanning tools and reasoning.
TaskBench: Benchmarking Large Language Models for Task AutomationTaskBenchEMNLP2023PaperEvaluates multi-step automation and tool integration.
AgentBench: Evaluating LLMs as AgentsAgentBencharXiv2023Paper51 scenarios to test agentic behaviors and robustness.
ACEBench: Who Wins the Match Point in Tool Usage?ACEBencharXiv2025PaperFine-grained tool-use evaluation with step sensitivity.
Agent Leaderboard (Galileo)Galileo LBHF2024DatasetCommunity leaderboard built around GAIA-style tasks.
Agentic Predictor: Performance Prediction for Agentic WorkflowsAgentic PredictorarXiv2025PaperPredicts workflow performance for better design-time choices.
ClawBench: Can AI Agents Complete Everyday Online Tasks?ClawBencharXiv2026Paper | Code153 everyday tasks across 144 live websites, with final requests intercepted for safe evaluation.
MobilePA-Bench: Benchmarking Mobile Planner Agents on Complex Real-World TasksMobilePA-BencharXiv2026PaperOn-device planner agents on complex real-world mobile tasks.

Agent Training Frameworks

TitleShort titleYear🌟 StarsMaterialsDescription
Agent Lightning: Train ANY AI Agents with Reinforcement LearningAgent Lightning2025Paper | CodeUnified MDP; decouples execution and training with scalable workers.
SkyRL-v0: Train Real-World Long-Horizon Agents via RLSkyRL-v02025Blog | CodeOnline RL pipeline for long-horizon agent training.
OpenManus-RL: Live-Streamed RL Tuning Framework for LLM AgentsOpenManus-RL2025Code | DatasetLive-streamed tuning of LLM agents with dataset support.
MASLab: A Unified and Comprehensive Codebase for LLM-based Multi-Agent SystemsMASLab2025Paper | CodeUnified MAS codebase integrating 20+ multi-agent system methods.
VerlTool: Towards Holistic Agentic RL with Tool UseVerlTool2025Paper | CodeModular ARLT; supports asynchronous rollouts.
L0: Reinforcement Learning to Become General AgentsL02025Paper | CodeScalable RL pipeline; NB-Agent scaffold; concurrent worker pool.
verl-agent: Extension of veRL for LLM Agentsverl-agent2025CodeStep-independent multi-turn rollouts; memory modules; GiGPO RL algorithm.
ART: Agent Reinforcement TrainerART2025CodePython harness for GRPO-based RL; OpenAI API-compatible; notebook examples.
AReaL: Ant Reasoning RL for LLMsAReaL2025Paper | CodeFully async RL system; scalable from 1→1K GPUs; open & reproducible.
Agent-R1: End-to-End RL for Tool-using AgentsAgent-R12025--(No public repo found)Multi-tool coordination; process rewards; reward normalization (described, not yet open).
siiRL: Scalable Infrastructure for Interactive RL AgentssiiRL2025Paper | CodeInfrastructure and algorithms for large-scale RL training.
slime: Self-Improving LLM Agentsslime2025Blog | CodeContinuous improvement framework for LLM agents.
ROLL: RL for Open-Ended LLM AgentsROLL2025Paper | CodeAlibaba’s RL framework for multi-task LLM agents.
MARTI: Multi-Agent RL with Tool IntegrationMARTI2025CodeTsinghua’s tool-augmented multi-agent RL.
RL2: Reinforcement Learning ReloadedRL22025CodeIndividual repo exploring advanced RL.
verifiers: Benchmarking LLM Verificationverifiers2025CodeVerification-focused RL experiments.
oat: Optimizing Agent Trainingoat2024Paper | CodeNUS / Sea AI’s agent optimization framework.
veRL: Volcengine RL FrameworkveRL2024Paper | CodeByteDance’s general-purpose RL framework.
OpenRLHF: Open Reinforcement Learning from Human FeedbackOpenRLHF2023Paper | CodeOpen-source RLHF training platform.
TRL: Transformer Reinforcement LearningTRL2019CodeHuggingFace’s RL library for transformers.
EnvCraft: Synthesizing Executable Environments in Agentic RL for Claw-like AgentEnvCraft2026--PaperSynthesizes 139 sandbox environments (~20K tasks) for claw-style agentic RL.

RL for Single Agent

Reinforcement learning methods that focus on individual agents (typically LLMs), enabling them to adapt, self-improve, and use tools effectively.

Self-Evolution & Test-Time RL

TitleShort titleVenueYearMaterialsDescription
TTRL: Test-Time Reinforcement LearningTTRLICLR2025PaperInference-time RL via majority-vote rewards.
ProRL: Prolonged Reinforcement Learning Expands Reasoning Boundaries in Large Language ModelsProRLICLR2025PaperKL-control with reference resets for longer reasoning.
RAGEN: Understanding Self-Evolution in LLM Agents via Multi-Turn Reinforcement LearningRAGEN / StarPOICLR2025PaperMulti-turn critic-based RL for evolving behaviors.
Alita: Generalist Agent Enabling Scalable Agentic Reasoning with Minimal Predefinition and Maximal Self-EvolutionAlitaGAIA LB2025PaperModular framework for online self-evolution.
Gödel Agent: A Self-Referential Agent Framework for Recursive Self-ImprovementGödel AgentACL / arXiv2024–2025PaperRecursive self-modification with reasoning loops.
Darwin Godel Machine: Open-Ended Evolution of Self-Improving AgentsDarwin GMarXiv2025PaperDarwinian exploration for open-ended agent improvement.
SkyRL-v0: Train Real-World Long-Horizon Agents via Reinforcement LearningSkyRL-v0arXiv / GitHub2025Blog | CodeLong-horizon online RL training pipeline.
Explore More, Drift Less: Outcome-Only Reinforcement Learning Can Suffice for Long-Horizon Interactive AgentsCANOPYarXiv2026Paper | CodeCoverage-anchored on-policy RL; tops AppWorld without dense rewards.
Training Agents to Evolve with Their Harness: TaoLive Digital Avatar Agent Technical ReportHATarXiv2026PaperHarness-aware SFT + RL so compact models adapt when skills, tools, and prompts change.
SkillForge: Evolving Verifiable Skills for Reinforcement Learning AgentsSkillForgearXiv2026PaperVerifies and refines a skill bank through environment interaction.

RL for Tool Use & Agent Training

TitleShort titleVenueYearMaterialsDescription
AGILE: RL Framework for LLM AgentsAGILEarXiv2024PaperCombines RL, memory, and tool use.
AgentOptimizer: Functions as Learnable WeightsAgentOptimizerICML2024PaperOffline training with learnable tool weights.
FireAct: Fine-tuning LLM AgentsFireActarXiv2023PaperMulti-task SFT baseline for RL comparison.
Tool-Integrated Reinforcement LearningToRLarXiv2025PaperLarge-scale tool-integrated RL training.
ToolRL: Reward is All Tool Learning NeedsToolRLarXiv2025PaperStudies reward shaping for tool use.
ARTIST: Unified Reasoning & ToolsARTISTarXiv2025PaperJoint reasoning + tool integration.
ZeroTIR: Scaling Law for Tool RLZeroTIRarXiv2025PaperScaling behavior of tool-augmented RL.
OTC: Acting Less is Reasoning MoreOTCarXiv2025PaperOptimizes efficiency by reducing unnecessary tool calls.
WebAgent-R1: End-to-End Multi-Turn RLWebAgent-R1arXiv2025PaperTrains web agents on multi-turn environments.
GiGPO: Group-in-Group PPOGiGPOarXiv2025PaperHierarchical PPO for agent training.
Nemotron-Research-Tool-N1Nemotron-Tool-N1arXiv2025PaperPure RL setup for tool reasoning.
CATP-LLM: Cost-Aware Tool PlanningCATP-LLMICCV / arXiv2024–2025Paper | CodeOptimizes tool usage under cost constraints.
Tool-Star: Multi-Tool RL via Hierarchical RewardsTool-StararXiv2025PaperReinforcement with structured multi-tool reasoning.
Act More, Decide Less: Skill-Guided Adaptive Action Chunking for Long-Horizon LLM AgentsSPACEEMNLP2026PaperSkill-guided action chunks; fewer LLM rounds, higher success.

Memory, Skills & Knowledge

TitleShort titleVenueYearMaterialsDescription
Memory-R1: RL Memory ManagerMemory-R1arXiv2025PaperRL-based memory controller for better retrieval.
A-MEM: Agentic Memory for LLM AgentsA-MEMarXiv2025PaperZettelkasten-style dynamic memory management.
KnowAgent: Knowledge-Augmented PlanningKnowAgentNAACL Findings2025PaperPlanning with structured knowledge bases.
AgenticRag-R1: Agentic Reinforcement Learning with Stack Memory for Multi-Step Reasoning, Retrieval and MemorizingAgenticRag-R1arXiv2026Paper | CodeStack memory + fine-grained actions for agentic RAG.
TRACER: Per-Tool Context Retention for LLM Agents via Consequence-Attributed Reinforcement LearningTRACERarXiv2026PaperLearns which tool outputs to keep; 29–46% fewer tokens.

Fine-Grained RL & Trajectory Calibration

TitleShort titleVenueYearMaterialsDescription
StepTool: Multi-Step Tool UsageStepToolCIKM2025PaperStep-grained rewards for tool usage.
RLTR: Process-Centric RewardsRLTRarXiv2025PaperRewards good reasoning trajectories, not just outcomes.
SPA-RL: Stepwise Progress AttributionSPA-RLarXiv2025PaperCredits progress at intermediate steps.
STeCa: Step-Level Trajectory CalibrationSTeCaACL Findings2025PaperCalibrates suboptimal steps for better learning.
SWEET-RL: Multi-Turn Collaborative RLSWEET-RLarXiv2025PaperMulti-turn reasoning with collaborative critic.
ATLaS: Critical Step SelectionATLaSACL2025PaperFocuses learning on critical reasoning steps.
Granularity-Adaptive Credit Assignment for Long-Horizon LLM Agent Reinforcement LearningGACAarXiv2026PaperMixes step- and episode-level advantages by uncertainty (NLL).
VICT: Verifier-Instrumented Credit Tracing for Long-Horizon LLM Agent Reinforcement LearningVICTEMNLP2026PaperTraces verifier atoms back to actions; no extra critic.
PGPO: Potential-Guided Policy Optimization for Multi-Turn Agentic TasksPGPOarXiv2026PaperCross-trajectory credit via empirical state potentials.
IAPO: Influence-Aware Policy Optimization for Credit Assignment in Multi-Turn Service AgentsIAPOarXiv2026PaperInfluence graphs over user/tool observations for service agents.
AHEAD: Adaptive Hindsight with Environment-Augmented Distillation for Agentic RLAHEADarXiv2026PaperStep-aware privileged distillation on error steps.

Alignment & Preference Optimization

TitleShort titleVenueYearMaterialsDescription
Beyond One-Preference-Fits-All Alignment: Multi-Objective DPOMODPOarXiv2023–2024PaperExtends DPO to multi-objective alignment.
Forty Shades of Blue: Quality-Diversity Alignment via Mode-Conditioned Reinforcement LearningMoDAarXiv2026PaperMode-conditioned RL against alignment-induced mode collapse.

Algorithm Families (PPO, DPO, GRPO, etc.)

Summarizes key algorithm families, objectives, and available implementations.

MethodYearObjectiveClipKL PenaltyMechanismSignalLinkResource
PPO family
PPO2017Policy gradientYesNoPolicy ratio clippingRewardPaper-
VAPO2025Policy gradientYesAdaptiveAdaptive KL penalty + variance controlReward + variancePaper-
PF-PPO2024Policy gradientYesYesPolicy filtrationNoisy rewardPaperCode
VinePPO2024Policy gradientYesYesUnbiased value estimatesRewardPaperCode
PSGPO2024Policy gradientYesYesProcess supervisionProcess rewardPaper-
DPO family
DPO2024Preference optimizationNoYesImplicit rewardHuman preferencePaper-
β-DPO2024Preference optimizationNoAdaptiveDynamic KL coefficientHuman preferencePaperCode
SimPO2024Preference optimizationNoScaledAvg log-prob as implicit rewardHuman preferencePaperCode
IPO2024Implicit preferenceNoNoPreference classificationRankPaper-
KTO2024Knowledge transfer optimizationNoYesTeacher-student stabilizationLogitsPaperCode
ORPO2024Online regularized PONoYesOnline stabilizationFeedback rewardPaperCode
Step-DPO2024Step-wise preferenceNoYesStep-level supervisionStep preferencePaperCode
LCPO2025Length-conditioned PONoYesLength preferenceRewardPaper-
GRPO family
GRPO2025Policy gradient (group reward)YesYesGroup-based relative reward, no value estimatesGroup rewardPaper-
DAPO2025Surrogate of GRPOYesYesDecoupled clip + dynamic samplingDynamic group rewardPaperCode | Model | Website
GSPO2025Surrogate of GRPOYesYesSequence-level clipping & rewardSmooth group rewardPaper-
GMPO2025Surrogate of GRPOYesYesGeometric mean of token rewardsMargin-based rewardPaperCode
ProRL2025Same as GRPOYesYesReference policy resetGroup rewardPaperModel
Posterior-GRPO2025Same as GRPOYesYesRewards only successful processesProcess rewardPaper-
Dr.GRPO2025Unbiased GRPOYesYesRemoves bias in optimizationGroup rewardPaperCode | Model
Step-GRPO2025Same as GRPOYesYesRule-based reasoning rewardStep-wise rewardPaperCode | Model
SRPO2025Same as GRPOYesYesTwo-stage history resamplingRewardPaperModel
GRESO2025Same as GRPOYesYesPre-rollout filteringRewardPaperCode | Website
StarPO2025Same as GRPOYesYesReasoning-guided multi-turnGroup rewardPaperCode | Website
GHPO2025Policy gradientYesYesAdaptive prompt refinementRewardPaperCode
Skywork R1V22025GRPO (hybrid signal)YesYesSelective buffer, multimodal rewardMultimodalPaperCode | Model
ASPO2025GRPO (shaped advantage)YesYesClipped advantage biasGroup rewardPaper-
TreePO2025Surrogate of GRPOYesYesSelf-guided rolloutGroup rewardPaperCode | Model | Website
EDGE-GRPO2025Same as GRPOYesYesEntropy-driven advantage + error correctionGroup rewardPaperCode | Model
DARS2025Same as GRPOYesNoMulti-stage hardest problemsGroup rewardPaperCode | Model
CHORD2025Weighted GRPO + SFTYesYesAuxiliary supervised lossGroup rewardPaperCode
PAPO2025Surrogate of GRPOYesYesImplicit perception lossGroup rewardPaperCode | Model | Website
Pass@k Training2025Same as GRPOYesYesPass@k metric as rewardGroup rewardPaperCode

Cost-Aware Reasoning & Budget-Constrained RL

As agents scale, cost, latency, and efficiency become critical. These works tackle budget-aware reasoning, token efficiency, and cost-sensitive planning.

TitleShort titleVenueYearMaterialsDescription
Cost-Augmented Monte Carlo Tree Search for LLM-Assisted PlanningCATSarXiv2025PaperIncorporates cost into MCTS for planning under constraints.
Token-Budget-Aware LLM ReasoningTALEarXiv2024PaperAllocates token budget optimally across reasoning steps.
FrugalGPT: Using LLMs While Reducing CostFrugalGPTarXiv2023PaperEarly exploration of cost minimization by routing queries.
Efficient Contextual LLM Cascades via Budget-Constrained Policy LearningTREACLEarXiv2024PaperLearns cascades balancing budget and accuracy.
BudgetMLAgent: Cost-Effective Multi-Agent System for ML AutomationBudgetMLAgentAIMLSystems2025Multi-agent framework designed for cost efficiency.
The Cost of Dynamic Reasoning: A Systems ViewSystems CostarXiv2025PaperMeasures latency, energy, and financial cost of agent reasoning.
Budget-Aware Evaluation of LLM Reasoning StrategiesBudgetEvalEMNLP2024PaperProposes evaluation framework accounting for budget limits.
LLM Cascades with Mixture of Thoughts for Cost-Efficient ReasoningMoT CascadeICLR / arXiv2024Paper | CodeUses “mixture of thoughts” cascades for efficiency.
BudgetThinker: Budget-Aware LLM Reasoning with Control TokensBudgetThinkerarXiv2025PaperIntroduces control tokens to manage budget during inference.
One Policy, Any Budget: Internalizing Budget-Aware Search via Reinforcement LearningAnySearcharXiv2026Paper | CodeOne search policy that adapts to any deployment budget.

RL for Multi-Agent Systems

Planning

TitleShort titleVenueYearMaterialsDescription
OWL: Optimized Workforce Learning for Real-World AutomationOWLarXiv2025PaperPlanner + workers
Profile-Aware Maneuvering for GAIA by AWorldAWorldNeurIPS2024PaperGuard agents
Plan-over-Graph: Towards Parallelable Agent SchedulePlan-over-GrapharXiv2025PaperGraph scheduling
LLM-Based Multi-Agent Reinforcement Learning: DirectionsMARL SurveyarXiv2024PaperSurvey
Self-Resource Allocation in Multi-Agent LLM SystemsSelf-ResAllocarXiv2025PaperPlanner vs orchestrator
Dynamic Speculative Agent PlanningDSParXiv2025PaperLossless agent planning acceleration via dynamic speculation; trades off latency vs cost; no pre-deployment setup.

Collaboration

TitleShort titleVenueYearMaterialsDescription
ACC-Collab: Actor-Critic for Multi-Agent CollaborationACC-CollabICLR2025PaperJoint actor-critic
Chain of Agents: Collaborating on Long-Context TasksChain of AgentsarXiv2024PaperLong-context chains
Scaling LLM-Based Multi-Agent CollaborationScaling MACarXiv2024PaperScaling study
MMAC-Copilot: Multi-Modal Agent CollaborationMMAC-CopilotarXiv2024PaperMulti-modal collab
CORY: Sequential Cooperative Multi-Agent Reinforcement LearningCORYNeurIPS2024Paper | CodeRole-swapping PPO
MAPoRL: Multi-Agent Post-Co-Training with Reinforcement LearningMAPoRLarXiv2025PaperCo-refine + verifier

Embodied Agents & World Models

TitleShort titleVenueYearMaterialsDescription
An Embodied Generalist Agent in 3D WorldLEOICML2024Paper3D embodied agent
DreamerV3: Mastering Diverse Domains through World ModelsDreamerV3arXiv2023PaperWorld-model RL
World-Model-Augmented Web AgentWMA Web AgentICLR/arXiv2025PaperSimulative web agent
WorldCoder: Model-Based LLM AgentWorldCoderarXiv2024PaperCode-based world model
WALL-E 2.0: World Alignment via Neuro-Symbolic LearningWALL-E 2.0arXiv2025PaperNeuro-symbolic alignment
WorldLLM: Curiosity-Driven World ModelingWorldLLMarXiv2025PaperCuriosity + world model
SimuRA: Simulative Reasoning Architecture with World ModelSimuRAarXiv2025PaperMental simulation

Task Agents

Search & Research Agents

MethodCategoryBase LLMLinkResource
DeepRetrievalExternalQwen2.5-3B-Instruct, Llama-3.2-3B-InstructPaperCode
Search-R1ExternalQwen2.5-3B/7B-Base/InstructPaperCode
R1-SearcherExternalQwen2.5-7B, Llama3.1-8B-InstructPaperCode
WebThinkerExternalQwQ-32B, DeepSeek-R1-Distilled-Qwen-7B/14B/32BPaperCode
WebSailorExternalQwen2.5-3B/7B/32B/72BPaperCode
SSRLInternalQwen2.5-1.5B/3B/7B/14B/32B/72B-Instruct, Llama-3.2-1B/8B-InstructPaperCode
OpenAI Deep ResearchExternalOpenAI ModelsBlogWebsite
Perplexity DeepResearchExternal-BlogWebsite

Code Agents

MethodRL Reward TypeBase LLMLinkResource
AceCoderOutcomeQwen2.5-Coder-7B-Base/InstructPaperCode
DeepCoder-14BOutcomeDeepSeek-R1-Distilled-Qwen-14BBlogCode
CodeBoostProcessQwen2.5-Coder-7B-Instruct, Llama-3.1-8B-InstructPaperCode
R1-Code-InterpreterOutcomeQwen2.5-7B/14B-Instruct-1MPaperCode
SWE-RLOutcomeLlama-3.3-70B-InstructPaperCode
Satori-SWEOutcomeQwen-2.5-Math-7BPaperCode
Robust Code RL via Faulty-Code-Driven Test Case SynthesisCode RLPaperDense rewards from synthesized tests on faulty code (EMNLP 2026).

Mathematical Agents

MethodRewardLinkResource
ARTISTOutcomePaper-
ToRLOutcomePaperCode
ZeroTIROutcomePaperCode
TTRLOutcomePaperCode
DeepSeek-Prover-v1.5FormalPaperCode
Leanabell-ProverFormalPaperCode

GUI Agents

MethodParadigmEnvironmentLinkResource
MM-NavigatorVanilla VLM-PaperCode
SeeActVanilla VLM-PaperCode
GUI-R1RLStaticPaperCode
UI-R1RLStaticPaperCode
InFiGUI-R1RLStaticPaperCode
UI-TARSRLInteractivePaperCode

Surveys & Position Papers

TitleShort titleVenueYearMaterialsDescription
The Landscape of Agentic Reinforcement Learning for LLMs: A SurveyARL-SurvarXiv2025PaperComprehensive ARL landscape
Budget-Aware Evaluation of LLM Reasoning StrategiesBudgetEvalEMNLP2024PaperBudget-aware reasoning evaluation
Alignment & Preference Optimization in LLM AgentsAlign-PosarXiv2023PaperAlignment and multi-objective methods
A Survey of Self-Evolving Agents: On Path to Artificial Super IntelligenceSE SurveyarXiv2025PaperTaxonomy and methods for self-evolving agents.
A Survey on Rubric-Guided Reinforcement Learning for Language ModelsRubric-RLEMNLP Findings2026PaperRubrics as interpretable rewards, from constitutions to agentic extensions.
LLM-Based Multi-Agent Reinforcement Learning: DirectionsMARL SurveyarXiv2024PaperDirections for LLM-based MARL.

Contributing

PRs are welcome. Please:

  1. Add papers to the most specific section (avoid duplicating across tables).
  2. Keep table columns consistent with the surrounding section.
  3. Prefer arXiv / official code / official blog links.
  4. One-line descriptions: what the method does, not a full abstract.

Suggested PR title: Add <Short title> (<Year>) to <Section>.


Concluding Remarks

Reinforcement learning for AI agents is moving fast: self-evolution, tool use, long-horizon credit assignment, and cost-aware search are now first-class research problems. This list is a living map of that landscape — please help keep it current.

💡 Pull requests welcome.

🌟 If this is useful, star the repo and share papers or frameworks you like.

agent
llm-agent
reinforcement-learning
reinforcement-learning-agent

Contributors

yh-yao

29 commits

reacher-z

1 commits

yh-yao/awesome-rl-ai-agents

A curated list of recent progress and resources on Reinforcement Learning for AI Agents.

7

31 commits

updated Sep 15, 2026

See the code

README

Awesome RL for AI Agents Awesome

RL for AI Agents

A curated list of recent progress and resources on Reinforcement Learning for AI Agents.

Last update PRs Welcome License


What's New

Highlights added in this refresh (mostly 2026):

  • Long-horizon credit assignment — GACA, VICT, PGPO, IAPO, AHEAD
  • Outcome-only RL that scales — CANOPY
  • Budget-aware search — AnySearch (one policy, any budget)
  • Memory, skills, and harnesses — AgenticRag-R1, TRACER, SkillForge, SPACE, HAT
  • Environments & evaluation — EnvCraft, ClawBench, MobilePA-Bench
  • Surveys — rubric-guided RL (EMNLP Findings 2026)

Contents


Reinforcement learning (RL) is rapidly becoming a driving force for AI agents that can reason, act, and adapt in the real world. While large language models (LLMs) provide powerful priors for reasoning, they remain static without feedback. RL closes this gap by enabling agents to learn from interactions—through self-reflection, outcome-based rewards, and tool or human feedback.

This repository curates up-to-date resources on RL for AI agents, organized along three main axes:

  • Agentic workflows without training – prompting strategies that enhance reasoning without fine-tuning.
  • Evaluation and benchmarks – systematic tests for reasoning, tool use, and automation.
  • RL for single and multi-agent systems – advancing self-evolution, efficient tool use, and collaboration.

Tables provide quick overviews, while accompanying descriptions highlight deeper insights.


Agentic Workflow without Training

TitleShort titleVenueYearMaterialsDescription
Tree of Thoughts: Deliberate Problem Solving with Large Language ModelsToTICML2023PaperSearch over reasoning trees to explore alternatives before committing.
Reflexion: Language Agents with Verbal Reinforcement LearningReflexionNeurIPS2023PaperSelf-critique and retry loops that emulate feedback without training.
Self-Refine: Iterative Refinement with Self-FeedbackSelf-RefineNeurIPS2023PaperIterative editing using self-generated feedback to improve outputs.
ReAct: Synergizing Reasoning and Acting in Language ModelsReActICLR2023PaperInterleaves chain-of-thought with tool calls for grounded reasoning.
SwiftSage: A Generative Agent with Fast and Slow Thinking for Complex Interactive TasksSwiftSageACL2023PaperSplits fast vs slow planning to balance cost and performance.
DynaSaur: Large Language Agents Beyond Predefined ActionsDynaSaurarXiv2024PaperDynamically extends the agent’s action space beyond fixed tool sets.

Agent Evaluation and Benchmarks

TitleShort titleVenueYearMaterialsDescription
GAIA: A Benchmark for General AI AssistantsGAIAarXiv2023Paper466 real-world tasks spanning tools and reasoning.
TaskBench: Benchmarking Large Language Models for Task AutomationTaskBenchEMNLP2023PaperEvaluates multi-step automation and tool integration.
AgentBench: Evaluating LLMs as AgentsAgentBencharXiv2023Paper51 scenarios to test agentic behaviors and robustness.
ACEBench: Who Wins the Match Point in Tool Usage?ACEBencharXiv2025PaperFine-grained tool-use evaluation with step sensitivity.
Agent Leaderboard (Galileo)Galileo LBHF2024DatasetCommunity leaderboard built around GAIA-style tasks.
Agentic Predictor: Performance Prediction for Agentic WorkflowsAgentic PredictorarXiv2025PaperPredicts workflow performance for better design-time choices.
ClawBench: Can AI Agents Complete Everyday Online Tasks?ClawBencharXiv2026Paper | Code153 everyday tasks across 144 live websites, with final requests intercepted for safe evaluation.
MobilePA-Bench: Benchmarking Mobile Planner Agents on Complex Real-World TasksMobilePA-BencharXiv2026PaperOn-device planner agents on complex real-world mobile tasks.

Agent Training Frameworks

TitleShort titleYear🌟 StarsMaterialsDescription
Agent Lightning: Train ANY AI Agents with Reinforcement LearningAgent Lightning2025Paper | CodeUnified MDP; decouples execution and training with scalable workers.
SkyRL-v0: Train Real-World Long-Horizon Agents via RLSkyRL-v02025Blog | CodeOnline RL pipeline for long-horizon agent training.
OpenManus-RL: Live-Streamed RL Tuning Framework for LLM AgentsOpenManus-RL2025Code | DatasetLive-streamed tuning of LLM agents with dataset support.
MASLab: A Unified and Comprehensive Codebase for LLM-based Multi-Agent SystemsMASLab2025Paper | CodeUnified MAS codebase integrating 20+ multi-agent system methods.
VerlTool: Towards Holistic Agentic RL with Tool UseVerlTool2025Paper | CodeModular ARLT; supports asynchronous rollouts.
L0: Reinforcement Learning to Become General AgentsL02025Paper | CodeScalable RL pipeline; NB-Agent scaffold; concurrent worker pool.
verl-agent: Extension of veRL for LLM Agentsverl-agent2025CodeStep-independent multi-turn rollouts; memory modules; GiGPO RL algorithm.
ART: Agent Reinforcement TrainerART2025CodePython harness for GRPO-based RL; OpenAI API-compatible; notebook examples.
AReaL: Ant Reasoning RL for LLMsAReaL2025Paper | CodeFully async RL system; scalable from 1→1K GPUs; open & reproducible.
Agent-R1: End-to-End RL for Tool-using AgentsAgent-R12025--(No public repo found)Multi-tool coordination; process rewards; reward normalization (described, not yet open).
siiRL: Scalable Infrastructure for Interactive RL AgentssiiRL2025Paper | CodeInfrastructure and algorithms for large-scale RL training.
slime: Self-Improving LLM Agentsslime2025Blog | CodeContinuous improvement framework for LLM agents.
ROLL: RL for Open-Ended LLM AgentsROLL2025Paper | CodeAlibaba’s RL framework for multi-task LLM agents.
MARTI: Multi-Agent RL with Tool IntegrationMARTI2025CodeTsinghua’s tool-augmented multi-agent RL.
RL2: Reinforcement Learning ReloadedRL22025CodeIndividual repo exploring advanced RL.
verifiers: Benchmarking LLM Verificationverifiers2025CodeVerification-focused RL experiments.
oat: Optimizing Agent Trainingoat2024Paper | CodeNUS / Sea AI’s agent optimization framework.
veRL: Volcengine RL FrameworkveRL2024Paper | CodeByteDance’s general-purpose RL framework.
OpenRLHF: Open Reinforcement Learning from Human FeedbackOpenRLHF2023Paper | CodeOpen-source RLHF training platform.
TRL: Transformer Reinforcement LearningTRL2019CodeHuggingFace’s RL library for transformers.
EnvCraft: Synthesizing Executable Environments in Agentic RL for Claw-like AgentEnvCraft2026--PaperSynthesizes 139 sandbox environments (~20K tasks) for claw-style agentic RL.

RL for Single Agent

Reinforcement learning methods that focus on individual agents (typically LLMs), enabling them to adapt, self-improve, and use tools effectively.

Self-Evolution & Test-Time RL

TitleShort titleVenueYearMaterialsDescription
TTRL: Test-Time Reinforcement LearningTTRLICLR2025PaperInference-time RL via majority-vote rewards.
ProRL: Prolonged Reinforcement Learning Expands Reasoning Boundaries in Large Language ModelsProRLICLR2025PaperKL-control with reference resets for longer reasoning.
RAGEN: Understanding Self-Evolution in LLM Agents via Multi-Turn Reinforcement LearningRAGEN / StarPOICLR2025PaperMulti-turn critic-based RL for evolving behaviors.
Alita: Generalist Agent Enabling Scalable Agentic Reasoning with Minimal Predefinition and Maximal Self-EvolutionAlitaGAIA LB2025PaperModular framework for online self-evolution.
Gödel Agent: A Self-Referential Agent Framework for Recursive Self-ImprovementGödel AgentACL / arXiv2024–2025PaperRecursive self-modification with reasoning loops.
Darwin Godel Machine: Open-Ended Evolution of Self-Improving AgentsDarwin GMarXiv2025PaperDarwinian exploration for open-ended agent improvement.
SkyRL-v0: Train Real-World Long-Horizon Agents via Reinforcement LearningSkyRL-v0arXiv / GitHub2025Blog | CodeLong-horizon online RL training pipeline.
Explore More, Drift Less: Outcome-Only Reinforcement Learning Can Suffice for Long-Horizon Interactive AgentsCANOPYarXiv2026Paper | CodeCoverage-anchored on-policy RL; tops AppWorld without dense rewards.
Training Agents to Evolve with Their Harness: TaoLive Digital Avatar Agent Technical ReportHATarXiv2026PaperHarness-aware SFT + RL so compact models adapt when skills, tools, and prompts change.
SkillForge: Evolving Verifiable Skills for Reinforcement Learning AgentsSkillForgearXiv2026PaperVerifies and refines a skill bank through environment interaction.

RL for Tool Use & Agent Training

TitleShort titleVenueYearMaterialsDescription
AGILE: RL Framework for LLM AgentsAGILEarXiv2024PaperCombines RL, memory, and tool use.
AgentOptimizer: Functions as Learnable WeightsAgentOptimizerICML2024PaperOffline training with learnable tool weights.
FireAct: Fine-tuning LLM AgentsFireActarXiv2023PaperMulti-task SFT baseline for RL comparison.
Tool-Integrated Reinforcement LearningToRLarXiv2025PaperLarge-scale tool-integrated RL training.
ToolRL: Reward is All Tool Learning NeedsToolRLarXiv2025PaperStudies reward shaping for tool use.
ARTIST: Unified Reasoning & ToolsARTISTarXiv2025PaperJoint reasoning + tool integration.
ZeroTIR: Scaling Law for Tool RLZeroTIRarXiv2025PaperScaling behavior of tool-augmented RL.
OTC: Acting Less is Reasoning MoreOTCarXiv2025PaperOptimizes efficiency by reducing unnecessary tool calls.
WebAgent-R1: End-to-End Multi-Turn RLWebAgent-R1arXiv2025PaperTrains web agents on multi-turn environments.
GiGPO: Group-in-Group PPOGiGPOarXiv2025PaperHierarchical PPO for agent training.
Nemotron-Research-Tool-N1Nemotron-Tool-N1arXiv2025PaperPure RL setup for tool reasoning.
CATP-LLM: Cost-Aware Tool PlanningCATP-LLMICCV / arXiv2024–2025Paper | CodeOptimizes tool usage under cost constraints.
Tool-Star: Multi-Tool RL via Hierarchical RewardsTool-StararXiv2025PaperReinforcement with structured multi-tool reasoning.
Act More, Decide Less: Skill-Guided Adaptive Action Chunking for Long-Horizon LLM AgentsSPACEEMNLP2026PaperSkill-guided action chunks; fewer LLM rounds, higher success.

Memory, Skills & Knowledge

TitleShort titleVenueYearMaterialsDescription
Memory-R1: RL Memory ManagerMemory-R1arXiv2025PaperRL-based memory controller for better retrieval.
A-MEM: Agentic Memory for LLM AgentsA-MEMarXiv2025PaperZettelkasten-style dynamic memory management.
KnowAgent: Knowledge-Augmented PlanningKnowAgentNAACL Findings2025PaperPlanning with structured knowledge bases.
AgenticRag-R1: Agentic Reinforcement Learning with Stack Memory for Multi-Step Reasoning, Retrieval and MemorizingAgenticRag-R1arXiv2026Paper | CodeStack memory + fine-grained actions for agentic RAG.
TRACER: Per-Tool Context Retention for LLM Agents via Consequence-Attributed Reinforcement LearningTRACERarXiv2026PaperLearns which tool outputs to keep; 29–46% fewer tokens.

Fine-Grained RL & Trajectory Calibration

TitleShort titleVenueYearMaterialsDescription
StepTool: Multi-Step Tool UsageStepToolCIKM2025PaperStep-grained rewards for tool usage.
RLTR: Process-Centric RewardsRLTRarXiv2025PaperRewards good reasoning trajectories, not just outcomes.
SPA-RL: Stepwise Progress AttributionSPA-RLarXiv2025PaperCredits progress at intermediate steps.
STeCa: Step-Level Trajectory CalibrationSTeCaACL Findings2025PaperCalibrates suboptimal steps for better learning.
SWEET-RL: Multi-Turn Collaborative RLSWEET-RLarXiv2025PaperMulti-turn reasoning with collaborative critic.
ATLaS: Critical Step SelectionATLaSACL2025PaperFocuses learning on critical reasoning steps.
Granularity-Adaptive Credit Assignment for Long-Horizon LLM Agent Reinforcement LearningGACAarXiv2026PaperMixes step- and episode-level advantages by uncertainty (NLL).
VICT: Verifier-Instrumented Credit Tracing for Long-Horizon LLM Agent Reinforcement LearningVICTEMNLP2026PaperTraces verifier atoms back to actions; no extra critic.
PGPO: Potential-Guided Policy Optimization for Multi-Turn Agentic TasksPGPOarXiv2026PaperCross-trajectory credit via empirical state potentials.
IAPO: Influence-Aware Policy Optimization for Credit Assignment in Multi-Turn Service AgentsIAPOarXiv2026PaperInfluence graphs over user/tool observations for service agents.
AHEAD: Adaptive Hindsight with Environment-Augmented Distillation for Agentic RLAHEADarXiv2026PaperStep-aware privileged distillation on error steps.

Alignment & Preference Optimization

TitleShort titleVenueYearMaterialsDescription
Beyond One-Preference-Fits-All Alignment: Multi-Objective DPOMODPOarXiv2023–2024PaperExtends DPO to multi-objective alignment.
Forty Shades of Blue: Quality-Diversity Alignment via Mode-Conditioned Reinforcement LearningMoDAarXiv2026PaperMode-conditioned RL against alignment-induced mode collapse.

Algorithm Families (PPO, DPO, GRPO, etc.)

Summarizes key algorithm families, objectives, and available implementations.

MethodYearObjectiveClipKL PenaltyMechanismSignalLinkResource
PPO family
PPO2017Policy gradientYesNoPolicy ratio clippingRewardPaper-
VAPO2025Policy gradientYesAdaptiveAdaptive KL penalty + variance controlReward + variancePaper-
PF-PPO2024Policy gradientYesYesPolicy filtrationNoisy rewardPaperCode
VinePPO2024Policy gradientYesYesUnbiased value estimatesRewardPaperCode
PSGPO2024Policy gradientYesYesProcess supervisionProcess rewardPaper-
DPO family
DPO2024Preference optimizationNoYesImplicit rewardHuman preferencePaper-
β-DPO2024Preference optimizationNoAdaptiveDynamic KL coefficientHuman preferencePaperCode
SimPO2024Preference optimizationNoScaledAvg log-prob as implicit rewardHuman preferencePaperCode
IPO2024Implicit preferenceNoNoPreference classificationRankPaper-
KTO2024Knowledge transfer optimizationNoYesTeacher-student stabilizationLogitsPaperCode
ORPO2024Online regularized PONoYesOnline stabilizationFeedback rewardPaperCode
Step-DPO2024Step-wise preferenceNoYesStep-level supervisionStep preferencePaperCode
LCPO2025Length-conditioned PONoYesLength preferenceRewardPaper-
GRPO family
GRPO2025Policy gradient (group reward)YesYesGroup-based relative reward, no value estimatesGroup rewardPaper-
DAPO2025Surrogate of GRPOYesYesDecoupled clip + dynamic samplingDynamic group rewardPaperCode | Model | Website
GSPO2025Surrogate of GRPOYesYesSequence-level clipping & rewardSmooth group rewardPaper-
GMPO2025Surrogate of GRPOYesYesGeometric mean of token rewardsMargin-based rewardPaperCode
ProRL2025Same as GRPOYesYesReference policy resetGroup rewardPaperModel
Posterior-GRPO2025Same as GRPOYesYesRewards only successful processesProcess rewardPaper-
Dr.GRPO2025Unbiased GRPOYesYesRemoves bias in optimizationGroup rewardPaperCode | Model
Step-GRPO2025Same as GRPOYesYesRule-based reasoning rewardStep-wise rewardPaperCode | Model
SRPO2025Same as GRPOYesYesTwo-stage history resamplingRewardPaperModel
GRESO2025Same as GRPOYesYesPre-rollout filteringRewardPaperCode | Website
StarPO2025Same as GRPOYesYesReasoning-guided multi-turnGroup rewardPaperCode | Website
GHPO2025Policy gradientYesYesAdaptive prompt refinementRewardPaperCode
Skywork R1V22025GRPO (hybrid signal)YesYesSelective buffer, multimodal rewardMultimodalPaperCode | Model
ASPO2025GRPO (shaped advantage)YesYesClipped advantage biasGroup rewardPaper-
TreePO2025Surrogate of GRPOYesYesSelf-guided rolloutGroup rewardPaperCode | Model | Website
EDGE-GRPO2025Same as GRPOYesYesEntropy-driven advantage + error correctionGroup rewardPaperCode | Model
DARS2025Same as GRPOYesNoMulti-stage hardest problemsGroup rewardPaperCode | Model
CHORD2025Weighted GRPO + SFTYesYesAuxiliary supervised lossGroup rewardPaperCode
PAPO2025Surrogate of GRPOYesYesImplicit perception lossGroup rewardPaperCode | Model | Website
Pass@k Training2025Same as GRPOYesYesPass@k metric as rewardGroup rewardPaperCode

Cost-Aware Reasoning & Budget-Constrained RL

As agents scale, cost, latency, and efficiency become critical. These works tackle budget-aware reasoning, token efficiency, and cost-sensitive planning.

TitleShort titleVenueYearMaterialsDescription
Cost-Augmented Monte Carlo Tree Search for LLM-Assisted PlanningCATSarXiv2025PaperIncorporates cost into MCTS for planning under constraints.
Token-Budget-Aware LLM ReasoningTALEarXiv2024PaperAllocates token budget optimally across reasoning steps.
FrugalGPT: Using LLMs While Reducing CostFrugalGPTarXiv2023PaperEarly exploration of cost minimization by routing queries.
Efficient Contextual LLM Cascades via Budget-Constrained Policy LearningTREACLEarXiv2024PaperLearns cascades balancing budget and accuracy.
BudgetMLAgent: Cost-Effective Multi-Agent System for ML AutomationBudgetMLAgentAIMLSystems2025Multi-agent framework designed for cost efficiency.
The Cost of Dynamic Reasoning: A Systems ViewSystems CostarXiv2025PaperMeasures latency, energy, and financial cost of agent reasoning.
Budget-Aware Evaluation of LLM Reasoning StrategiesBudgetEvalEMNLP2024PaperProposes evaluation framework accounting for budget limits.
LLM Cascades with Mixture of Thoughts for Cost-Efficient ReasoningMoT CascadeICLR / arXiv2024Paper | CodeUses “mixture of thoughts” cascades for efficiency.
BudgetThinker: Budget-Aware LLM Reasoning with Control TokensBudgetThinkerarXiv2025PaperIntroduces control tokens to manage budget during inference.
One Policy, Any Budget: Internalizing Budget-Aware Search via Reinforcement LearningAnySearcharXiv2026Paper | CodeOne search policy that adapts to any deployment budget.

RL for Multi-Agent Systems

Planning

TitleShort titleVenueYearMaterialsDescription
OWL: Optimized Workforce Learning for Real-World AutomationOWLarXiv2025PaperPlanner + workers
Profile-Aware Maneuvering for GAIA by AWorldAWorldNeurIPS2024PaperGuard agents
Plan-over-Graph: Towards Parallelable Agent SchedulePlan-over-GrapharXiv2025PaperGraph scheduling
LLM-Based Multi-Agent Reinforcement Learning: DirectionsMARL SurveyarXiv2024PaperSurvey
Self-Resource Allocation in Multi-Agent LLM SystemsSelf-ResAllocarXiv2025PaperPlanner vs orchestrator
Dynamic Speculative Agent PlanningDSParXiv2025PaperLossless agent planning acceleration via dynamic speculation; trades off latency vs cost; no pre-deployment setup.

Collaboration

TitleShort titleVenueYearMaterialsDescription
ACC-Collab: Actor-Critic for Multi-Agent CollaborationACC-CollabICLR2025PaperJoint actor-critic
Chain of Agents: Collaborating on Long-Context TasksChain of AgentsarXiv2024PaperLong-context chains
Scaling LLM-Based Multi-Agent CollaborationScaling MACarXiv2024PaperScaling study
MMAC-Copilot: Multi-Modal Agent CollaborationMMAC-CopilotarXiv2024PaperMulti-modal collab
CORY: Sequential Cooperative Multi-Agent Reinforcement LearningCORYNeurIPS2024Paper | CodeRole-swapping PPO
MAPoRL: Multi-Agent Post-Co-Training with Reinforcement LearningMAPoRLarXiv2025PaperCo-refine + verifier

Embodied Agents & World Models

TitleShort titleVenueYearMaterialsDescription
An Embodied Generalist Agent in 3D WorldLEOICML2024Paper3D embodied agent
DreamerV3: Mastering Diverse Domains through World ModelsDreamerV3arXiv2023PaperWorld-model RL
World-Model-Augmented Web AgentWMA Web AgentICLR/arXiv2025PaperSimulative web agent
WorldCoder: Model-Based LLM AgentWorldCoderarXiv2024PaperCode-based world model
WALL-E 2.0: World Alignment via Neuro-Symbolic LearningWALL-E 2.0arXiv2025PaperNeuro-symbolic alignment
WorldLLM: Curiosity-Driven World ModelingWorldLLMarXiv2025PaperCuriosity + world model
SimuRA: Simulative Reasoning Architecture with World ModelSimuRAarXiv2025PaperMental simulation

Task Agents

Search & Research Agents

MethodCategoryBase LLMLinkResource
DeepRetrievalExternalQwen2.5-3B-Instruct, Llama-3.2-3B-InstructPaperCode
Search-R1ExternalQwen2.5-3B/7B-Base/InstructPaperCode
R1-SearcherExternalQwen2.5-7B, Llama3.1-8B-InstructPaperCode
WebThinkerExternalQwQ-32B, DeepSeek-R1-Distilled-Qwen-7B/14B/32BPaperCode
WebSailorExternalQwen2.5-3B/7B/32B/72BPaperCode
SSRLInternalQwen2.5-1.5B/3B/7B/14B/32B/72B-Instruct, Llama-3.2-1B/8B-InstructPaperCode
OpenAI Deep ResearchExternalOpenAI ModelsBlogWebsite
Perplexity DeepResearchExternal-BlogWebsite

Code Agents

MethodRL Reward TypeBase LLMLinkResource
AceCoderOutcomeQwen2.5-Coder-7B-Base/InstructPaperCode
DeepCoder-14BOutcomeDeepSeek-R1-Distilled-Qwen-14BBlogCode
CodeBoostProcessQwen2.5-Coder-7B-Instruct, Llama-3.1-8B-InstructPaperCode
R1-Code-InterpreterOutcomeQwen2.5-7B/14B-Instruct-1MPaperCode
SWE-RLOutcomeLlama-3.3-70B-InstructPaperCode
Satori-SWEOutcomeQwen-2.5-Math-7BPaperCode
Robust Code RL via Faulty-Code-Driven Test Case SynthesisCode RLPaperDense rewards from synthesized tests on faulty code (EMNLP 2026).

Mathematical Agents

MethodRewardLinkResource
ARTISTOutcomePaper-
ToRLOutcomePaperCode
ZeroTIROutcomePaperCode
TTRLOutcomePaperCode
DeepSeek-Prover-v1.5FormalPaperCode
Leanabell-ProverFormalPaperCode

GUI Agents

MethodParadigmEnvironmentLinkResource
MM-NavigatorVanilla VLM-PaperCode
SeeActVanilla VLM-PaperCode
GUI-R1RLStaticPaperCode
UI-R1RLStaticPaperCode
InFiGUI-R1RLStaticPaperCode
UI-TARSRLInteractivePaperCode

Surveys & Position Papers

TitleShort titleVenueYearMaterialsDescription
The Landscape of Agentic Reinforcement Learning for LLMs: A SurveyARL-SurvarXiv2025PaperComprehensive ARL landscape
Budget-Aware Evaluation of LLM Reasoning StrategiesBudgetEvalEMNLP2024PaperBudget-aware reasoning evaluation
Alignment & Preference Optimization in LLM AgentsAlign-PosarXiv2023PaperAlignment and multi-objective methods
A Survey of Self-Evolving Agents: On Path to Artificial Super IntelligenceSE SurveyarXiv2025PaperTaxonomy and methods for self-evolving agents.
A Survey on Rubric-Guided Reinforcement Learning for Language ModelsRubric-RLEMNLP Findings2026PaperRubrics as interpretable rewards, from constitutions to agentic extensions.
LLM-Based Multi-Agent Reinforcement Learning: DirectionsMARL SurveyarXiv2024PaperDirections for LLM-based MARL.

Contributing

PRs are welcome. Please:

  1. Add papers to the most specific section (avoid duplicating across tables).
  2. Keep table columns consistent with the surrounding section.
  3. Prefer arXiv / official code / official blog links.
  4. One-line descriptions: what the method does, not a full abstract.

Suggested PR title: Add <Short title> (<Year>) to <Section>.


Concluding Remarks

Reinforcement learning for AI agents is moving fast: self-evolution, tool use, long-horizon credit assignment, and cost-aware search are now first-class research problems. This list is a living map of that landscape — please help keep it current.

💡 Pull requests welcome.

🌟 If this is useful, star the repo and share papers or frameworks you like.

agent
llm-agent
reinforcement-learning
reinforcement-learning-agent

Contributors

yh-yao

29 commits

reacher-z

1 commits