voyager-add-model

voyager-add-model is a skill for Claude Code from fxd0h/Axelera-Voyager-Local-Assistant. It costs 45 tokens per session (1,372 once invoked), scanned A, original, MIT.

A guide for adding a custom machine-learning model to the Voyager SDK model collection for Axelera AI hardware. It covers models from PyTorch, ONNX, timm, and Ultralytics, with conversion guidance for TensorFlow models.

In plain words
What is it for?
Use it to identify a model's source format and metadata, connect it to a Voyager project and task, and add its SDK configuration for deployment on Axelera hardware.
Why use it?
It helps map a model's input, output, task, and format into the SDK's expected configuration. This reduces guesswork when integrating a model the SDK does not already include.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to identify a model's source format and metadata, connect it to a Voyager project and task, and add its SDK configuration for deployment on Axelera hardware.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-add-model"><img src="https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-add-model.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,372 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.00045 $0.01372
Opus 5 $0.00023 $0.00686
Sonnet 5 $0.00009 $0.00274
Haiku 4.5 $0.00005 $0.00137

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

Security

Grade A, and why

voyager-add-model 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-add-model/SKILL.md · 158 lines

How it starts

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

Add Custom Model

Add a custom model to the Voyager SDK model zoo for Axelera AI hardware

Instructions

Add the specified model: $ARGUMENTS

Step 0: Data Source & Environment Selection

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

Step 0.5: Axelera Voyager Project & Task Integration

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

Step 1: Model Source Identification

Determine model source format:

  • PyTorch: .pt, .pth files or torchvision/timm model name
  • ONNX: .onnx file
  • TensorFlow: Convert to ONNX first
  • Custom: Define custom model class

Step 2: Model Requirements Analysis

Gather model information:

  • Input shape (batch, channels, height, width)
  • Input format (RGB/BGR, NCHW/NHWC)
  • Normalization parameters (mean, std)
  • Output format and shape
  • Model task (detection, classification, etc.)

Step 3: SDK-Native YAML Integration

Do not author a freehand YAML schema. Start from the nearest existing SDK YAML under ax_models/zoo/, ax_models/reference/, pipeline-template/, or docs/tutorials/custom-weights.md, then change only fields backed by the model metadata and the Grounding Ledger.

Required SDK YAML fields normally include:

  • axelera-model-format, name, description
  • pipeline tasks with SDK operators such as letterbox, torch-totensor, and decodeyolo only when verified in the source YAML or docs/reference/pipeline/yaml-operators.md
  • models entries with SDK classes such as AxONNXModel, AxTorchvisionResNet, or a types.Model/TorchModel subclass
  • class_path, weight_path, optional weight_url and weight_md5
  • task_category, input_tensor_layout, input_tensor_shape, input_color_format, dataset
  • datasets entries using SDK data adapters such as ObjDataAdapter, TorchvisionDataAdapter, KptDataAdapter, or SegDataAdapter

For ONNX models, prefer class: AxONNXModel and class_path: $AXELERA_FRAMEWORK/ax_models/base_onnx.py unless a closer model-zoo YAML proves a different class is required. For Ultralytics YOLO, copy an existing YOLO model-zoo YAML and update weight_path, num_classes, dataset, and decoder parameters only when the source model metadata proves those values. For torchvision/timm-style classifiers, copy a torchvision classifier YAML and preserve its pipeline-template/torch-imagenet.yaml pattern unless SDK evidence supports another template.

Read the full file on GitHub · 158 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 · 158 lines · 45 tokens per session scan A c644f62c15ab

Subscribe to this mod's changes

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

yolo-export

Use when exporting or deploying Ultralytics YOLO models in Platform or code — the Platform Export tab and yolo export/model.export() for ONNX, TensorRT, CoreML, Core AI, OpenVINO, LiteRT, NCNN, ExecuTorch, and NPUs (RKNN, QNN, Hailo, Ascend, IMX, Axelera, DeepX), FP16/INT8 quantization, benchmarking, and non-Python…

ultralytics/skills · 117 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

spark-environment-setup

Set up a working ML training/inference environment on NVIDIA DGX Spark (GB10, aarch64, CUDA 13). Use when installing PyTorch/Unsloth/TRL/vLLM on DGX Spark, hitting libcudart or wheel-ABI errors on aarch64, or choosing between NGC containers and bare pip installs.

wshobson/agents · 76 tokens

spark-training-gotchas

Preflight and diagnose the ten known failure modes for ML training on NVIDIA DGX Spark. Use when a training run on DGX Spark fails to start, OOMs below the 128GB limit, slows down mid-run, or before any multi-hour training job on GB10.

wshobson/agents · 63 tokens

llama-cpp

Runs LLM inference on CPU, Apple Silicon, and consumer GPUs without NVIDIA hardware. Use for edge deployment, M1/M2/M3 Macs, AMD/Intel GPUs, or when CUDA is unavailable. Supports GGUF quantization (1.5-8 bit) for reduced memory and 4-10× speedup vs PyTorch on CPU.

davila7/claude-code-templates · 76 tokens