voyager-bench

voyager-bench is a skill for Claude Code from fxd0h/Axelera-Voyager-Local-Assistant. It costs 57 tokens per session (2,208 once invoked), scanned A, original, MIT.

A benchmarking guide for measuring machine-learning model performance on Axelera AI Metis hardware with the Voyager SDK. It focuses on measurements such as frames per second, processing speed, and delay.

In plain words
What is it for?
Measuring FPS, throughput, and latency; comparing model variants; and collecting performance statistics from deployed inference pipelines.
Why use it?
It provides a repeatable way to quantify a working model pipeline and compare different model versions. It is intended for measurement, not for building or diagnosing a broken pipeline.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Measuring FPS, throughput, and latency; comparing model variants; and collecting performance statistics from deployed inference pipelines.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fxd0h/axelera-voyager-local-assistant/voyager-bench
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.

Any agent
npx skills add fxd0h/Axelera-Voyager-Local-Assistant --skill voyager-bench
Clone the repo
git clone --depth 1 https://github.com/fxd0h/Axelera-Voyager-Local-Assistant

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 voyager-bench

README.md
[![agentmods](https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-bench/github.svg)](https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-bench)
Your own site
<a href="https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-bench"><img src="https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-bench/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 voyager-bench

Your own site · 80×15
<a href="https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-bench"><img src="https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-bench.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,208 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.
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.00057 $0.02208
Opus 5 $0.00028 $0.01104
Sonnet 5 $0.00011 $0.00442
Haiku 4.5 $0.00006 $0.00221

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

Security

Grade A, and why

voyager-bench 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 12d 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.

skills/voyager-bench/SKILL.md · 265 lines

How it starts

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

Benchmark Model Performance

Measure and analyze model performance on Axelera AI hardware

Use This Skill When / Not When

  • Use when: the user wants to quantify a working pipeline (FPS, latency, throughput, model-variant comparisons).
  • Not when: performance is a suspected fault or regression -- route to voyager-debug.
  • Not when: the pipeline still needs to be built -- route to voyager-launch.

Instructions

Benchmark the specified model/pipeline: $ARGUMENTS

{{INCLUDE common/voyager-sdk-setup.md}}

{{INCLUDE common/voyager-task-integration.md}}

Step 1: Environment Setup

# Environment activation is handled by Step 0/Step 3 of the setup
# include (venv/ or axelera-env/); verify it is active
python -c "import axelera" 2>/dev/null || echo "SDK env not active"

# Verify hardware only when .voyager-runtime.json reports execute_on_device
axdevice

Step 2: Basic Benchmarking

Run benchmark on deployed model using inference with performance flags:

# Benchmark with video file (run N frames, no display, show stats)
./inference.py <model> media/traffic1_1080p.mp4 --no-display --frames 500 --show-stats

# Benchmark with SDK fake video source (synthetic frames, low I/O overhead)
./inference.py <model> fakevideo:640x480@30 --no-display --frames 1000 --show-stats

# Benchmark and save tracer data to CSV
./inference.py <model> <source> --no-display --frames 1000 --show-stats --save-tracers perf.csv

Step 3: Performance Metrics

Key metrics to measure:

  • System Throughput (FPS): End-to-end pipeline performance
  • Device Throughput (FPS): AIPU-only performance
  • Latency (ms): Time per frame
  • CPU Utilization (%): Host CPU usage

Step 4: Detailed Performance Tracing

# Enable statistics display
./inference.py <model> <source> --show-stats

# Save tracer data to CSV
./inference.py <model> <source> --save-tracers performance.csv

# Append to existing file (for comparison)
./inference.py <model> <source> --save-tracers +performance.csv

Read the full file on GitHub · 265 lines

Files

What ships with it

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

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. 12d ago First seen · 265 lines · 57 tokens per session scan A c3c2c706eab8

Subscribe to this mod's changes

voyager-bench is a skill published in the GitHub repository fxd0h/Axelera-Voyager-Local-Assistant (4 stars, last pushed 1mo ago), licensed MIT. It adds 57 tokens to every session and 2,208 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

bubbaloop-physical-ai

Manage physical sensors, cameras, and actuators via the bubbaloop skill runtime. Query real-time sensor data, control node lifecycle, and monitor hardware health.

kornia/bubbaloop · 40 tokens

using-bubbaloop

Use when interacting with a Bubbaloop deployment via its MCP server — guides the discovery → control → automation workflow and prevents the most common mistakes (MCP polling for streaming data, missing Bearer token, ignoring RBAC tier).

kornia/bubbaloop · 53 tokens

habitat-gs-control

Interactively pilot a robot in habitat-gs 3D Gaussian Splatting indoor scenes via MCP tools — load a scene, move, observe with RGB/depth, run autonomous nav loops, and export video. Use for hands-on control of a live sim session, NOT for training or evaluating a navigation policy (use the habitat-gs-train skill for…

zju3dv/habitat-gs · 80 tokens

vss-generate-video-calibration

Use this skill when running AutoMagicCalib on local MP4s, RTSP, or the bundled sample dataset, or when deploying vss-auto-calibration. Do not use for non-AMC calibration or runtime analytics.

NVIDIA-AI-Blueprints/video-search-and-summarization · 53 tokens

reflectworld

You have access to ReflectWorld, a visual perception and persistent memory system. It gives you eyes and memory for cameras.

addxai/ReflectWorld · 0 tokens

reflectworld-vision-controller

VisionController dynamically adjusts camera sampling and analysis parameters based on perception results. Two policies.

addxai/ReflectWorld · 0 tokens