rl-expert-skills
v1.0.1
Published
RL Expert skills for Claude Code and OpenAI Codex — 45 reinforcement learning skills covering architecture, algorithms, environments, evaluation, and MLOps.
Maintainers
Readme
rl-expert-skills
45 reinforcement learning skills for Claude Code and OpenAI Codex.
Covers architecture, algorithms, environments, evaluation, and MLOps.
Usage
From any project folder:
npx rl-expert-skillsThe installer will ask:
- Which tool? — Claude Code, OpenAI Codex, or both
- Scope? — current project or current user
What gets installed
| Tool | Project scope | User scope |
|------|--------------|------------|
| Claude Code | .claude/skills/ | ~/.claude/skills/ |
| OpenAI Codex | .codex/skills/ + AGENTS.md | ~/.codex/skills/ + ~/.codex/instructions.md |
Skills included
Orchestrator agents
rl-architect— MDP formulation, algorithm selection, system blueprintrl-algo-engineer— neural networks, training loop, loss functionsrl-env-engineer— Gymnasium/PettingZoo environments and wrappersrl-evaluator— evaluation, OOD testing, failure diagnosisrl-mlops-engineer— experiment tracking, distributed training, checkpointing
Individual skills (40 skills covering reward design, policy/critic architecture, MARL, offline RL, RLHF, domain randomization, and more)
Publishing
First time
cd path/to/rl-expert-skills
npm login
npm publish --access publicUpdating skills
After editing the source skills, re-bundle and republish:
cd path/to/rl-expert-skills
npm run prepare # re-copies skills from ../RL-Expert/skills/
npm version patch # bump version (patch / minor / major)
npm publish --access publicUsing before publishing (local test)
From any project folder:
npx path/to/rl-expert-skills