dexrobot_isaac CLAUDE.md

dexrobot_isaac CLAUDE.md is an instructions file for coding agents from DexRobot/dexrobot_isaac. It costs 5,362 tokens per session, scanned A, original, Apache-2.0.

Development instructions for dexrobot_isaac, research software for testing and controlling a robotic hand in simulation.

In plain words
What is it for?
Use them when running hand-control examples, changing simulation settings, testing control modes, or debugging initialization and training code.
Why use it?
They provide installation and test commands and require errors to be exposed immediately instead of hidden by fallback behavior.

Instructions file

Install

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.

agentmods
npx agentmods add instructions/dexrobot/dexrobot_isaac/claude-md
Clone the repo
git clone --depth 1 https://github.com/DexRobot/dexrobot_isaac

Wrote 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.

agentmods badge for dexrobot_isaac CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dexrobot/dexrobot_isaac/claude-md.svg)](https://agentmods.dev/instructions/dexrobot/dexrobot_isaac/claude-md)
Your own site
<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>
Per session 5,362 This file is loaded in full into every session.
When invoked 5,362 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash e22bf1e054e0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

CLAUDE.md · 633 lines

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:

  1. Masking > Branching: Boolean masks replace conditional logic
  2. Precompute Everything: Runtime should be pure math
  3. Vectorize Operations: Think in tensors, not loops
  4. Function Pointers: Assign functions during init, not runtime branching

Read the full file on GitHub · 633 lines

Changes

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.

  1. 5d ago First seen · 633 lines · 5,362 tokens per session scan A e22bf1e054e0

Subscribe to this mod's changes

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.

Related

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.

nebius/nebius-physical-ai · 2,896 tokens

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.

jiegec/waveform-mcp · 958 tokens

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.

dungnotnull/small-datacenter-airflow-thermal-optimization-agent-skill · 1,814 tokens

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.

dungnotnull/rc-boat-hydrodynamics-design-agent-skill · 1,456 tokens

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.

dungnotnull/custom-water-cooling-loop-design-agent-skill · 1,265 tokens

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.

dungnotnull/water-rescue-drone-design-agent-skill · 1,333 tokens