Agent skill

reinforcement-learning-guide

Reinforcement learning fundamentals, algorithms, and research

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/domains/ai-ml/reinforcement-learning-guide/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. RL Fundamentals
  2. The RL Framework
  3. Key Equations
  4. Algorithm Taxonomy
  5. Implementation: DQN
  6. Implementation: PPO
  7. Research Environments
  8. Top Venues
  9. Key Research Directions (2024-2025)
More from Auto-Empirical-Research-Skills
All skills →
About this skill
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.

Keep going