Gymnasium Robotics — RL Robotics Environments
Farama Foundation's collection of robotics simulation RL environments: FetchReach, ShadowHand, Maze, AdroitHand.
Gymnasium Robotics — RL Robotics Environments
Gymnasium Robotics is the Farama Foundation's collection of robotics simulation environments for reinforcement learning research, built on top of MuJoCo. It includes multi-goal environments (FetchReach, FetchPush), dexterous manipulation (ShadowHand, AdroitHand), and maze navigation.
Key features
- Goal-conditioned environments with
compute_reward,compute_truncated, andcompute_terminatedhooks - Compatible with any Gymnasium (Gym) RL library: Stable-Baselines3, CleanRL, RLlib
- MuJoCo backend with reproducible physics simulation
- Hierarchical goal observations for HER (Hindsight Experience Replay) out-of-the-box
- Multi-goal success tracking with
info["is_success"]
Quick start
pip install gymnasium-robotics
import gymnasium as gym
import gymnasium_robotics
env = gym.make("FetchReach-v3", render_mode="human")
obs, info = env.reset()
for _ in range(1000):
action = env.action_space.sample()
obs, reward, terminated, truncated, info = env.step(action)
if terminated or truncated:
obs, info = env.reset()
env.close()
npx ai-supply add gymnasium-robotics-rl-envs
Curated mirror of the open-source Gymnasium Robotics (MIT). Get it from the source.
Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.
Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).
The same gate an agent runs before installing (POST /api/v1/trust/gymnasium-robotics-rl-envs/check). Click a policy:
Consume Gymnasium Robotics — RL Robotics Environments programmatically. Authenticate with an API key or session — see Authorize an agent.
# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/gymnasium-robotics-rl-envs
# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/gymnasium-robotics-rl-envs/check \
-H "Content-Type: application/json" \
-d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'
# CLI
npx ai-supply add gymnasium-robotics-rl-envs
# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/gymnasium-robotics-rl-envs/install \
-H "Authorization: Bearer $AIM_KEY"
# MCP tool
install_listing({ "slug": "gymnasium-robotics-rl-envs" })OpenAPI spec →Curated mirror — latest upstream source. See the repository for tagged releases.