vla-evaluation-harness: Skill for Claude Code

.claude/skills/add-benchmark/SKILL.md

add-benchmark is a skill for Claude Code from allenai/vla-evaluation-harness. It costs 78 tokens per session (2,251 once invoked), scanned A, original, Apache-2.0.

A guide to adding a new simulation benchmark to a robot-learning evaluation system. A benchmark is a repeatable test environment used to measure how well a model completes tasks.

In plain words
What is it for?
Use it when integrating a simulator such as MuJoCo, SAPIEN, PyBullet, Isaac Sim, ManiSkill3, or OmniGibson. It covers the benchmark module, Docker dependencies, camera and robot-state inputs, action formats, completion rules, and episode limits.
Why use it?
It explains the required pieces so a new simulator can communicate with model servers and produce comparable results. This avoids missing details such as observations, actions, or success checks.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is allenai/vla-evaluation-harness's own configuration. It tells Claude Code how to work on vla-evaluation-harness itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything vla-evaluation-harness configures →

Reuse

Borrowing it

Nothing to install: this file belongs to allenai/vla-evaluation-harness. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/allenai/vla-evaluation-harness/main/.claude/skills/add-benchmark/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/allenai/vla-evaluation-harness

Made for: Claude Code.

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 add-benchmark

README.md
[![agentmods](https://agentmods.dev/badge/skills/allenai/vla-evaluation-harness/add-benchmark/github.svg)](https://agentmods.dev/skills/allenai/vla-evaluation-harness/add-benchmark)
Your own site
<a href="https://agentmods.dev/skills/allenai/vla-evaluation-harness/add-benchmark"><img src="https://agentmods.dev/badge/skills/allenai/vla-evaluation-harness/add-benchmark/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for add-benchmark

Your own site · 80×15
<a href="https://agentmods.dev/skills/allenai/vla-evaluation-harness/add-benchmark"><img src="https://agentmods.dev/badge/skills/allenai/vla-evaluation-harness/add-benchmark.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,251 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00078 $0.02251
Opus 5 $0.00039 $0.01125
Sonnet 5 $0.00016 $0.00450
Haiku 4.5 $0.00008 $0.00225

Measured 10d ago against content hash 7be89501e6b0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

add-benchmark 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 10d 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/skills/add-benchmark/SKILL.md · 230 lines

How it starts

The opening of the file, as written. The whole thing — 230 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Add Benchmark

Integrate a new simulation benchmark into vla-eval. Benchmarks run inside Docker containers and communicate with model servers over WebSocket + msgpack.

1. Gather requirements

Ask the user for (if not already provided):

  • Benchmark name (e.g. maniskill3)
  • Simulation framework (e.g. MuJoCo, SAPIEN, PyBullet, Isaac Sim)
  • Key pip dependencies needed inside Docker
  • Observation format — cameras, resolution, whether to include proprioceptive state
  • Action space — dimension, format (e.g. 7-DoF delta EEF + gripper)
  • Success condition — how to detect task completion
  • Max steps per episode

2. Create the benchmark module

Create src/vla_eval/benchmarks/<name>/:

src/vla_eval/benchmarks/<name>/
├── __init__.py      # empty
├── benchmark.py     # main implementation
└── utils.py         # optional helpers

Subclass StepBenchmark from vla_eval.benchmarks.base and implement the required methods:

from typing import Any

import numpy as np

from vla_eval.benchmarks.base import StepBenchmark, StepResult
from vla_eval.specs import DimSpec
from vla_eval.types import Action, EpisodeResult, Observation, Task


class MyBenchmark(StepBenchmark):
    def __init__(self, **kwargs: Any) -> None:
        super().__init__()
        # Accept benchmark-specific params from config YAML `params:` section.
        # Lazily import heavy deps (MuJoCo, SAPIEN) — NOT at module level,
        # because the registry resolves the class without loading the sim.
        ...

    # --- Required methods (6) ---

    def get_tasks(self) -> list[Task]:
        # Return list of task dicts. Each MUST have a "name" key.
        # May include "suite" for task filtering.
        ...

    def reset(self, task: Task) -> Any:
        # Reset env for task. Store env on self. Return initial raw observation.
        # task dict has "episode_idx" (int) injected by the orchestrator.
        ...

    def step(self, action: Action) -> StepResult:
        # action dict has "actions" key (np.ndarray from model server).
        # Return StepResult(obs, reward, done, info).
        ...

    def make_obs(self, raw_obs: Any, task: Task) -> Observation:
        # Convert raw env observation to dict for model server.
        # Convention:
        #   {"images": {"cam_name": np.ndarray HWC uint8},
        #    "task_description": str}
        # Optionally add "state": np.ndarray for proprioception.
        ...

    def get_step_result(self, step_result: StepResult) -> EpisodeResult:
        # Extract episode result from the final StepResult.
        # Must return at least {"success": bool}.
        ...

    # --- Optional overrides ---

    def check_done(self, step_result: StepResult) -> bool:
        # Default: step_result.done. Override for custom termination logic.
        return step_result.done

    def get_action_spec(self) -> dict[str, DimSpec]:
        # Declare the action format this benchmark's env consumes.
        # The orchestrator compares this against the model server's spec
        # and warns on mismatches — catching convention bugs early.
        ...

    def get_observation_spec(self) -> dict[str, DimSpec]:
        # Declare the observation format this benchmark produces.
        ...

    def get_metric_keys(self) -> dict[str, str]:
        # Declare which metrics from get_step_result() to aggregate.
        # Default: {"success": "mean"} (= success rate).
        # Aggregation options: "mean", "sum", "max", "min".
        return {"success": "mean"}

    def get_metadata(self) -> dict[str, Any]:
        # Return {"max_steps": N} for benchmark default.
        return {}

    def cleanup(self) -> None:
        # Release resources (envs, renderers). Called at end of evaluation.
        ...

Read the full file on GitHub · 230 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. 10d ago First seen · 230 lines · 78 tokens per session scan A 7be89501e6b0

Subscribe to this mod's changes

add-benchmark is a skill published in the GitHub repository allenai/vla-evaluation-harness (591 stars, last pushed 8d ago), licensed Apache-2.0. It adds 78 tokens to every session and 2,251 once invoked, about $0.0004 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.