Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add Aznatkoiny/zAI-Skills/plugin install ai-toolkitWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/aznatkoiny/zai-skills/rl-new-project)<a href="https://agentmods.dev/commands/aznatkoiny/zai-skills/rl-new-project"><img src="https://agentmods.dev/badge/commands/aznatkoiny/zai-skills/rl-new-project/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/aznatkoiny/zai-skills/rl-new-project"><img src="https://agentmods.dev/badge/commands/aznatkoiny/zai-skills/rl-new-project.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00035 | $0.01313 |
| Opus 5 | $0.00017 | $0.00656 |
| Sonnet 5 | $0.00007 | $0.00263 |
| Haiku 4.5 | $0.00003 | $0.00131 |
Grade A, and why
rl-new-project scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are scaffolding a new Python reinforcement learning project using the reinforcement-learning skill.
Arguments
$ARGUMENTS
The arguments describe the environment or task (e.g. "inventory management with discrete restock actions", "2D drone hover, continuous thrust"). If no arguments were given, ask the user what they want the agent to learn — specifically the observation the agent sees, the actions it can take (discrete or continuous), and what success looks like — before scaffolding anything.
Step 1: Load the skill
Read ${CLAUDE_PLUGIN_ROOT}/skills/reinforcement-learning/SKILL.md first. Then read:
${CLAUDE_PLUGIN_ROOT}/skills/reinforcement-learning/references/environments.md— custom env template, validation checklist, wrappers, and the environment testing script.${CLAUDE_PLUGIN_ROOT}/skills/reinforcement-learning/references/algorithms.md— algorithm deep-dives, for justifying the algorithm choice.${CLAUDE_PLUGIN_ROOT}/skills/reinforcement-learning/references/training.md— hyperparameter starting points, reward engineering, normalization.${CLAUDE_PLUGIN_ROOT}/skills/reinforcement-learning/references/debugging.md— the pre-training sanity checklist to turn into a validation script.
Step 2: Choose the algorithm
Apply the SKILL.md Algorithm Decision Tree to the task description: action space type first (discrete vs. continuous), then sample-efficiency and stability requirements. State the chosen algorithm and cite the decision-tree branch and the relevant section of references/algorithms.md that justifies it. Default to PPO when the task description leaves the tradeoffs ambiguous — it is the stable choice per the skill's quick-selection table.
Step 3: Generate the project
Create this layout in the current directory (ask before writing if the directory is not empty):
<project>/
├── pyproject.toml # or requirements.txt — gymnasium>=1.0, stable-baselines3>=2.0, tensorboard, optuna
├── Makefile
├── src/
│ ├── __init__.py
│ ├── env.py # custom Gymnasium environment
│ ├── train.py # SB3 training entry point
│ └── tune.py # Optuna tuning stub
├── scripts/
│ ├── check_env.py # Gymnasium API validation
│ └── sanity_checks.py # pre-training sanity checklist
└── models/ # checkpoints + VecNormalize stats (gitignored)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 68 lines · 35 tokens per session scan A efe9f997bc46
rl-new-project is a command published in the GitHub repository Aznatkoiny/zAI-Skills (9 stars, last pushed 1mo ago), licensed MIT. It adds 35 tokens to every session and 1,313 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
python-dev
Start Python development workflow with architecture, implementation, review, and testing phases.
ccc-python-review
Comprehensive Python code review for PEP 8 compliance, type hints, security, and Pythonic idioms. Invokes the python-reviewer agent.
typescript-dev
Start TypeScript development workflow with architecture, implementation, review, and testing phases.
setup
Interactive setup for Python LSP development environment.
setup
A command that creates a Korean-language CLAUDE.md project guide from a template. CLAUDE.md is a file containing instructions and project context for the Claude coding assistant.
conjure
Use when you want to build a new Claude Code skill, agent, hook, or MCP server but aren't sure which — or when you want to describe what you want in plain language. Auto-detects the right artifact type, asks targeted questions, explains the reasoning, then builds it.