reinforcement-learning-guide
Reinforcement learning fundamentals, algorithms, and research
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill reinforcement-learning-guide --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Reinforcement Learning Guide Understand and implement reinforcement learning algorithms from tabular methods through deep RL, including policy gradients, actor-critic, and model-based approaches. ## RL Fundamentals ### The RL Framework An agent interacts with an environment to maximize cumulative reward: ``` Agent Environment | | |--- action a_t ---------->| | |--- next state s_{t+1} |<-- reward r_t, state s_t |--- reward r_{t+1} | | ``` | Concept | Symbol | Definition | |---------|--------|-----------| | State | s | Observation of the environment | | Action | a | Decision made by the agent | | Reward | r | Scalar feedback signal | | Policy | pi(a\|s) | Mapping from states to actions | | Value function | V(s) | Expected cumulative reward from state s | | Q-function | Q(s, a) | Expected cumulative reward from (s, a) | | Discount factor | gamma | Weight of future vs. immediate rewards (0-1) | | Return | G_t | Sum of discounted future rewards from time t | ### Key Equations ``` # Return (discounted cumulative reward) G_t = r_t + gamma * r_{t+1} + gamma^2 * r_{t+2} + ... # Bellman equation for V V(s) = E[r + gamma * V(s') | s] # Bellman equation for Q Q(s, a) = E[r + gamma * max_a' Q
- RL Fundamentals
- The RL Framework
- Key Equations
- Algorithm Taxonomy
- Implementation: DQN
- Implementation: PPO
- Research Environments
- Top Venues
- Key Research Directions (2024-2025)
What does the reinforcement-learning-guide skill do?
Reinforcement learning fundamentals, algorithms, and research
How do I install it?
Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill reinforcement-learning-guide --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.