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 instructions/dexrobot/dexrobot_isaac/claude-mdgit clone --depth 1 https://github.com/DexRobot/dexrobot_isaacWrote 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/instructions/dexrobot/dexrobot_isaac/claude-md)<a href="https://agentmods.dev/instructions/dexrobot/dexrobot_isaac/claude-md"><img src="https://agentmods.dev/badge/instructions/dexrobot/dexrobot_isaac/claude-md.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 | $0.05362 | $0.05362 |
| Opus 5 | $0.02681 | $0.02681 |
| Sonnet 5 | $0.01072 | $0.01072 |
| Haiku 4.5 | $0.00536 | $0.00536 |
Grade A, and why
dexrobot_isaac CLAUDE.md 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 5d 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 — 633 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Build Commands
- Install:
pip install -e . - Run simple test:
python examples/dexhand_test.py - Run with options:
python examples/dexhand_test.py env.episodeLength=200 debug=true steps=500 - Test different control modes:
python examples/dexhand_test.py env.controlMode=position_delta env.policyControlsFingers=true env.policyControlsHandBase=false - Test headless with fewer envs:
python examples/dexhand_test.py headless=true env.numEnvs=16 steps=100
Development Philosophy
Fail Fast - No Defensive Programming
This is research code where exposing bugs immediately is critical. NEVER hide errors with fallbacks.
❌ FORBIDDEN:
if x is None: x = default_value # NO!
try: ... except: use_fallback # NO!
value = x if x else fallback # NO!
if hasattr(obj, 'attr'): ... # NO! Let AttributeError expose bugs
✅ REQUIRED:
if x is None:
raise RuntimeError("x is None - this indicates initialization bug")
# Let code crash immediately to expose problems at their source
Think Like a Scientist
Write elegant mathematical code, not defensive business logic.
Defensive Programming Clarification:
- ✅ DO check for external failures (hardware, file I/O, network)
- ❌ DON'T check if your own dependencies are None
- ❌ DON'T add fallbacks for your own logic errors
- If a dependency is required at init, it should NEVER be None later
❌ WRONG - Business programmer mindset:
if self.policy_controls_hand_base:
if self.actions.shape[1] > 0:
base_actions = self.actions[:, :self.NUM_BASE_DOFS]
# ... 20 more lines of branching
✅ CORRECT - Scientific computing mindset:
# Use masks and vectorization
scaled_actions[:, self.active_target_mask] = self._scale_actions_to_limits(actions)
Key Principles:
- Masking > Branching: Boolean masks replace conditional logic
- Precompute Everything: Runtime should be pure math
- Vectorize Operations: Think in tensors, not loops
- Function Pointers: Assign functions during init, not runtime branching
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.
- 5d ago First seen · 633 lines · 5,362 tokens per session scan A e22bf1e054e0
dexrobot_isaac CLAUDE.md is an instructions file published in the GitHub repository DexRobot/dexrobot_isaac (23 stars, last pushed 1y ago), licensed Apache-2.0. It adds 5,362 tokens to every session, about $0.0268 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-30.
Other instructions, from other repositories
nebius-physical-ai CLAUDE.md
Claude Code instructions for nebius/nebius-physical-ai, covering nebius physical ai, skill index, partner capability roadmap and project instructions.
waveform-mcp CLAUDE.md
Instructions for jiegec/waveform-mcp, covering claude's notes for waveform-mcp, project overview, architecture, mcp tools (8 total) and key dependencies.
small-datacenter-airflow-thermal-optimization-agent-skill CLAUDE.md
Instructions for dungnotnull/small-datacenter-airflow-thermal-optimization-agent-skill, covering skill identity, problem this skill solves, harness flow summary, sub-skills and tools required.
rc-boat-hydrodynamics-design-agent-skill CLAUDE.md
Instructions for dungnotnull/rc-boat-hydrodynamics-design-agent-skill, covering claude.md — skill 226: rc-boat-hydrodynamics-design, skill identity, problem this skill solves, harness flow summary and sub-skills.
custom-water-cooling-loop-design-agent-skill CLAUDE.md
Instructions for dungnotnull/custom-water-cooling-loop-design-agent-skill, covering claude.md — skill 259: custom-water-cooling-loop-design, skill identity, problem this skill solves, harness flow summary and sub-skills.
water-rescue-drone-design-agent-skill CLAUDE.md
Instructions for dungnotnull/water-rescue-drone-design-agent-skill, covering claude.md — skill 244: water-rescue-drone-design, skill identity, problem this skill solves, two coordinated layers and harness flow summary.