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/robium-ai/robium/1.7.1npx skills add robium-ai/robium --skill 1.7.1git clone --depth 1 https://github.com/robium-ai/robiumWrote 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/skills/robium-ai/robium/1.7.1)<a href="https://agentmods.dev/skills/robium-ai/robium/1.7.1"><img src="https://agentmods.dev/badge/skills/robium-ai/robium/1.7.1.svg" alt="Measured on agentmods" 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.00141 | $0.05434 |
| Opus 5 | $0.00071 | $0.02717 |
| Sonnet 5 | $0.00028 | $0.01087 |
| Haiku 4.5 | $0.00014 | $0.00543 |
Grade C, and why
environments scanned grade C 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 6d 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.
Hidden instructionshighPrompt injection
Directives inside HTML comments, invisible characters or bidirectional overrides are read by the model and not by the person reviewing the file.
- **Never `pip install` into the system Python.** <!-- id: never-pip-install-system-python --> Not on the host, not inside Copies of this mod
1 near-identical copy found in the catalogue:
- environments — 88% identical, 64 lines differ
How it starts
The opening of the file, as written. The whole thing — 339 lines — stays where its author put it; the contents beside it link to each section on GitHub.
environments
The environment-strategy umbrella for robium. Every robium build needs an answer
to "how does this run, identically, on my laptop and on whatever server it ends
up on" before the first line of application code is written. This skill decides
uv vs venv vs Docker, and, once Docker is chosen, how to get GPU passthrough
and remote/headless display right. It does not own multi-module application
Dockerfiles or compose wiring across nodes; that's integration.
When to use this skill
- Starting any new robotics project and the environment strategy isn't decided yet; this is a required early step, not an optional one.
- The trigger phrases in the description: 'uv', 'venv', 'virtualenv', 'docker for this project', 'reproducible environment', 'GPU in container'.
- Debugging "works on my machine but not on the server": almost always an environment-parity bug, not an application bug.
- Cross-references: go to the sibling skill instead when the question is:
- Wiring multiple app modules together, Dockerfiles for a multi-node app, or
compose files spanning services →
integration(this skill covers a single environment's shape;integrationcovers the app that runs in it). - Remote visualization once headless is decided →
foxglove. - ROS 2-specific package/build questions once Docker + ROS 2 is chosen →
ros2. - Picking a manipulation/training framework once the env is settled →
lerobot. - Deploying a headless container to Google Cloud Run (the CPU deploy target,
alongside the GPU-cloud/RunPod one this skill owns): the build → deploy
path and the sim-on-Cloud-Run gotchas →
cloud-run. - The whole-stack decision this feeds into →
architect(load that first if you haven't; it routes here).
- Wiring multiple app modules together, Dockerfiles for a multi-node app, or
compose files spanning services →
Key directives
- Delegation posture: embed. The decision logic (uv vs venv vs Docker) and the concrete patterns (pyproject.toml shape, Dockerfile shape, GPU/display flags) live in this skill and its references; this is a foundational, every-build concern, not a thin pointer to someone else's docs.
- Environment before code. Decide and record the environment strategy before writing application code. An undecided environment is an open risk, not a detail to fix later.
- Preflight the machine before deciding. Run
npx robium-ai doctor --json(the robium CLI, npm package robium-ai) at the start of an environment decision and read the report (platform/Apple Silicon, Docker daemon state, GPU, free disk, python3/uv) instead of re-deriving those facts with ad-hoc shell probes.npx robium-ai doctoris the human-readable variant. If npx is unavailable, fall back to probing manually; the decision logic below is unchanged either way. - Never
pip installinto the system Python. Not on the host, not inside a container's base image. Every install goes into a project-scoped uv environment (uv sync,uv run) or, inside Docker, a venv managed the same way. The only sanctioned exception is a deliberate, explicit--systemflag (orUV_SYSTEM_PYTHON=1) inside a container build stage that is itself disposable; seereferences/uv-patterns.md. - Every project states its env strategy in the architecture brief. If
you're routed here from
architect, write the choice (uv / venv / Docker, and why) intodocs/architecture-brief.md's env-strategy section before moving on; don't let it live only in your head or in a Dockerfile no one reads. - Local == remote is the acceptance test. An environment strategy isn't
done until you can state, concretely, why the same commands produce the
same result on a laptop and on a headless remote server (same base image
digest or lockfile, same Python/CUDA versions, no host-only assumptions). If
you can't state that, the strategy isn't finished; see the parity
checklist in
references/docker-patterns.md. - Never write image tags or version numbers from memory. Verify current
uv usage against docs.astral.sh/uv, current
ROS 2 image tags against
hub.docker.com/_/ros, and NVIDIA Container
Toolkit steps against
docs.nvidia.com
before committing them to a real project. Every example in this skill is
marked
status: unverifiedfor exactly this reason; treat it as a starting shape to re-check, not a pinned truth.
What ships with it
8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 6d ago First seen · 339 lines · 141 tokens per session scan C f855a9a3f963
environments is a skill published in the GitHub repository robium-ai/robium (9 stars, last pushed 8d ago), licensed MIT. It adds 141 tokens to every session and 5,434 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it C with 1 finding (hidden instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
harness
To build an AI harness: run, observe, validate, automate repeated work faster — CLI/MCP actions, devcontainers, skills, subagents, hooks, pipelines, automations.
docker
Writes and reviews Dockerfile, .dockerignore, and docker-compose files: multi-stage builds, pinned base images, non-root users, cache-friendly layer order, and secrets kept out of image layers. Use when asked to containerize or containerise a service, shrink a bloated image, edit a Dockerfile or compose file, or bump…
deploy-docker-compose
Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…
go-testing
Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.
polar-local-environment
This skill should be used when setting up or managing Polar local development environment with Docker.
requirements-authoring
To author, update, and validate functional/non-functional requirements as atomic units with user approval.