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.
curl -O https://raw.githubusercontent.com/allenai/vla-evaluation-harness/main/.claude/skills/add-model-server/SKILL.mdgit clone --depth 1 https://github.com/allenai/vla-evaluation-harnessWrote 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/allenai/vla-evaluation-harness/add-model-server)<a href="https://agentmods.dev/skills/allenai/vla-evaluation-harness/add-model-server"><img src="https://agentmods.dev/badge/skills/allenai/vla-evaluation-harness/add-model-server/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.
<a href="https://agentmods.dev/skills/allenai/vla-evaluation-harness/add-model-server"><img src="https://agentmods.dev/badge/skills/allenai/vla-evaluation-harness/add-model-server.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Prompt Injection · line 111 Subtle instructions detected that may alter agent decision-making or introduce hidden biases.Fix: Review content for implicit steering or bias. Ensure instructions are explicit and align with the skill's stated purpose.
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.00080 | $0.02078 |
| Opus 5 | $0.00040 | $0.01039 |
| Sonnet 5 | $0.00016 | $0.00416 |
| Haiku 4.5 | $0.00008 | $0.00208 |
Grade A, and why
add-model-server 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 9d 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 — 230 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Add Model Server
Integrate a new VLA model into vla-eval. Model servers are standalone uv scripts that run a WebSocket server, receiving observations and returning actions.
1. Gather requirements
Ask the user for (if not already provided):
- Model name (e.g.
openvla) - Framework/library (e.g. HuggingFace Transformers, custom repo)
- Python dependencies (torch version, model-specific packages)
- Checkpoint source (HuggingFace Hub model ID or local path)
- Action output format (dimension, chunk_size, continuous vs discrete)
- Input requirements (single image vs multi-view, needs proprioceptive state?)
2. Create the model server script
Create src/vla_eval/model_servers/<name>.py as a uv script with PEP 723 inline metadata:
# /// script
# requires-python = "~=3.11"
# dependencies = [
# "vla-eval",
# "<model-package>",
# "torch>=2.0",
# "transformers>=4.40,<5",
# "pillow>=9.0",
# "numpy>=1.24",
# ]
#
# [tool.uv.sources]
# vla-eval = { path = "../../..", editable = true }
# <model-package> = { git = "https://github.com/org/repo.git", rev = "<commit-sha>" }
#
# [tool.uv]
# exclude-newer = "<YYYY-MM-DD>T00:00:00Z"
# ///
from __future__ import annotations
import logging
from typing import Any
import numpy as np
from PIL import Image as PILImage
from vla_eval.model_servers.base import SessionContext
from vla_eval.model_servers.predict import PredictModelServer
from vla_eval.specs import DimSpec
from vla_eval.types import Action, Observation
logger = logging.getLogger(__name__)
class MyModelServer(PredictModelServer):
def __init__(self, checkpoint: str, **kwargs: Any) -> None:
super().__init__(**kwargs)
self.checkpoint = checkpoint
import torch
# Load model here...
self._model = ...
def predict(self, obs: Observation, ctx: SessionContext) -> Action:
"""Single-observation inference. Blocking call.
Args:
obs: {"images": {"cam_name": np.ndarray HWC uint8},
"task_description": str,
"state": np.ndarray (optional)}
ctx: Session context (session_id, episode_id, step, is_first)
Returns:
{"actions": np.ndarray} with shape:
- (action_dim,) for single actions
- (chunk_size, action_dim) for action chunks
"""
# Extract image and task description
images = obs.get("images", {})
img_array = next(iter(images.values()))
pil_image = PILImage.fromarray(img_array).convert("RGB")
text = obs.get("task_description", "")
# Run inference...
actions = ...
return {"actions": np.array(actions, dtype=np.float32)}
def get_action_spec(self) -> dict[str, DimSpec]:
# Declare the action format this server produces.
# The orchestrator compares this against the benchmark's spec
# and warns on mismatches before wasting GPU hours.
...
def get_observation_spec(self) -> dict[str, DimSpec]:
# Declare what observations this server expects.
...
if __name__ == "__main__":
from vla_eval.model_servers.serve import run_server
run_server(MyModelServer)
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.
- 9d ago First seen · 230 lines · 80 tokens per session scan A cb5c5893cc5b
add-model-server is a skill published in the GitHub repository allenai/vla-evaluation-harness (591 stars, last pushed 8d ago), licensed Apache-2.0. It adds 80 tokens to every session and 2,078 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.
Other skills, from other repositories
arboreto
Infer gene regulatory networks (GRNs) from gene expression data using scalable algorithms (GRNBoost2, GENIE3). Use when analyzing transcriptomics data (bulk RNA-seq, single-cell RNA-seq) to identify transcription factor-target gene relationships and regulatory interactions. Supports distributed computation for…
torchdrug
Build and troubleshoot TorchDrug 0.2.1 workflows for molecular graphs, property prediction, self-supervised pretraining, molecule generation, retrosynthesis, protein representation learning, and knowledge graph reasoning. Use when code imports torchdrug or needs its datasets, models, tasks, or Engine.
deepspot-m
Generate transcriptome-wide virtual spatial transcriptomics from H&E histology with DeepSpot-M. Use when you need spatial gene expression in log1p-CPM for 224x224 tiles at about 20x, want to query protein-coding genes by symbol instead of a fixed panel, or want to run prediction across a whole slide after tiling with…
pyhealth
Build clinical/healthcare deep-learning pipelines with PyHealth — loading EHR/signal/imaging datasets (MIMIC-III/IV, eICU, OMOP, SleepEDF, ChestXray14, EHRShot), defining tasks (mortality, readmission, length-of-stay, drug recommendation, sleep staging, ICD coding, EEG events), instantiating models (Transformer…
pick-a-pii-model
Select an on-device OpenMed PII model from the committed registry by language, runtime format, and size budget, then require recall validation before deployment. Use when an agent must choose a local PII detector for CPU, Apple Silicon, or a mobile export without relying on live model discovery.
evo2
Score, embed, and generate DNA sequences with Evo 2, a long-context genomic foundation model. Use this skill when: (1) Computing per-nucleotide or per-sequence likelihoods for variant effect scoring, (2) Embedding genomic windows for downstream classification, (3) Generating DNA conditioned on a prefix, (4) Scoring…