Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/huggingface/openenv/releasenpx skills add huggingface/OpenEnv --skill releasegit clone --depth 1 https://github.com/huggingface/OpenEnvWhat 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 | $0.00021 | $0.02178 |
| Opus 5 | $0.00010 | $0.01089 |
| Sonnet 5 | $0.00004 | $0.00436 |
| Haiku 4.5 | $0.00002 | $0.00218 |
Grade A, and why
release scanned grade A with 1 finding 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 yesterday.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- Capture `hf spaces info`/`curl .../health` output for the final success set so the release briefing notes the exact runtime status used to flip canonical references. How it starts
The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release Skill
This skill orchestrates the repo-embedded deployment tooling and documents the openenv-namespace canonicalization process.
Prerequisites
hfCLI authenticated (runhf auth loginor setHF_TOKEN).- Local build dependencies installed so
scripts/prepare_hf_deployment.shcan stage Docker contexts. - Access to
scripts/manage_hf_collection.pyfor collection updates and discovery.
Primary Flow
- Stage envs with
scripts/prepare_hf_deployment.sh. Default arguments deploy every deployable env fromenvs/. Pass--env <name>to target a subset. The script:- Resolves the requested OpenEnv ref for staged dependency rewrites. If
0.2.2is only a release-candidate label and nov0.2.2tag exists yet, the script should fall back tomainfor env dependency rewrites while keeping the Hub suffix at-0.2.2. - Rewrites loose
openenv-core[core]>=...specs and direct Dockerfile installs togit+https://github.com/huggingface/OpenEnv.git@<resolved-ref>so the sweep does not silently install0.2.1from PyPI. - Builds a staging tree with
src/,envs/<env>/, and a rewrittenDockerfilethat setsBASE_IMAGEtoghcr.io/huggingface/openenv-base:latestunless a hash is supplied. - Generates a README with Hub metadata, enforces
openenv/openenv-<version>tags, and adds theHUB_TAGused in collection sync. - Uses
hf repo create/hf uploadplus visibility flags to push Docker spaces.
- Resolves the requested OpenEnv ref for staged dependency rewrites. If
- Suffix naming and privacy. Deploy to private spaces named
<env>-0.2.2(setSPACE_SUFFIX=-0.2.2or rely on the version-derived default). Use--privateto keep the collection private for now. The repo deploy script should update only the versioned collection during this phase, not the global tagged collection. - Runtime verification. For private Spaces, verify through authenticated
hf.spacedomains, not anonymous browser URLs. Usescripts/verify_private_spaces.py --hf-namespace openenv --suffix -0.2.2or inspecthf spaces info <space>plus the runtime domain fromruntime.raw.domains. Preferhf spaces ls --expand=runtimeto confirmRUNNING/SLEEPING. For stuck or error states, consultscripts/prepare_hf_deployment.shlogic or fall back to thehf-space-recoveryskill.- Do not treat
/healthalone as sufficient. This sweep found false positives where/healthwas200but runtime use still failed:chat_env-0.2.2returned500on/reset, andtbench2_env-0.2.2also returned500on/reset. - For HTTP envs, an authenticated
POST /resetis the minimum usability gate. If the action schema is simple, follow with a schema-correctPOST /stepprobe as well;snake_env,finrl_env, andsumo_rl_envall surfaced step-time failures that a health-only check would miss. - Some envs are slow enough that
POST /resetmay time out on a 20-second probe (git_env,unity_env). Treat those as inconclusive until manually retried with a longer timeout or an env-specific probe. - Certain canonical spaces such as
openenv/echo_envand the TextArena variants expose multipleREADYruntime domains. The verifier now probes everyREADYdomain and reports success once any domain returns usable data, so the canonical status is based on the first passing domain rather than the first listed domain.
- Do not treat
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.
- yesterday First seen · 65 lines · 21 tokens per session scan A ae507518ed7d
release is a skill published in the GitHub repository huggingface/OpenEnv (2,531 stars, last pushed 4d ago), licensed BSD-3-Clause. It adds 21 tokens to every session and 2,178 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…