voyager-new-app

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

A skill for creating or modifying standalone Python applications that use the Voyager SDK’s InferenceStream API on Axelera AI Metis hardware.

In plain words
What is it for?
Use it to build applications around an existing validated pipeline, including REST APIs, multi-stream processing, alerts, monitoring, or custom user interfaces.
Why use it?
It separates application logic such as monitoring, analytics, APIs, alerts, and custom interfaces from the initial pipeline setup and validation.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to build applications around an existing validated pipeline, including REST APIs, multi-stream processing, alerts, monitoring, or custom user interfaces.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-new-app"><img src="https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-new-app.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,423 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.00098 $0.02423
Opus 5 $0.00049 $0.01211
Sonnet 5 $0.00020 $0.00485
Haiku 4.5 $0.00010 $0.00242

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

Security

Grade A, and why

voyager-new-app 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-new-app/SKILL.md · 341 lines

How it starts

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

Create New Application

Create a Python application for Axelera AI hardware using Voyager SDK InferenceStream

Use This Skill When / Not When

  • Use when: the user wants a standalone Python app (REST API, alerts, custom UI, multi-stream business logic) around a validated pipeline.
  • Not when: they need the initial end-to-end runnable pipeline -- route to voyager-launch and run it first.
  • Not when: they only want YAML -- route to voyager-new-pipeline.

Instructions

Create an application with the specified requirements: $ARGUMENTS

If the request is primarily for a complete validated video/demo result, browser popup, or user-facing output viewer, use voyager-launch first. Its launch harness creates and opens viewer/index.html after Metis validation.

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: Application Requirements Analysis

  • Parse application type from arguments
  • If not specified, ask for:
    • Application purpose (monitoring, analytics, demo, production)
    • Model/pipeline to use
    • Input sources (cameras, video files, streams)
    • Output requirements (display, file, API, custom processing)
    • Business logic requirements

Step 2: Application Template Selection

Based on requirements, choose appropriate template:

  • Simple Demo: Basic display with inference results
  • Analytics: Data collection and metrics
  • Monitoring: Multi-stream with alerts
  • Custom Processing: Full control over inference results
  • REST API: HTTP endpoint for inference

Step 3: Basic Application Structure

Create application file with this structure:

#!/usr/bin/env python
# Copyright <year>
# Application: <description>

from axelera.app import config, create_inference_stream, display

# Configuration
MODEL = "<model-name>"
SOURCES = ["<source1>", "<source2>"]

# Create inference stream
stream = create_inference_stream(
    network=MODEL,
    sources=SOURCES,
)

def process_frame(frame_result):
    """Process a single inference result."""
    image = frame_result.image
    meta = frame_result.meta
    stream_id = frame_result.stream_id

    # Add custom processing here
    pass

def main(window, stream):
    """Main inference loop."""
    for frame_result in stream:
        process_frame(frame_result)
        window.show(frame_result.image, frame_result.meta, frame_result.stream_id)

        if window.is_closed:
            break

# Run application
with display.App(renderer=True) as app:
    wnd = app.create_window("Application Title", (1280, 720))
    app.start_thread(main, (wnd, stream), name='InferenceThread')
    app.run()

stream.stop()

Read the full file on GitHub · 341 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 · 341 lines · 98 tokens per session scan A eaa4edd3bf11

Subscribe to this mod's changes

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

agx-arm-codegen

Generate executable Python scripts to control NERO/Piper robotic arms via pyAgxArm SDK based on natural language descriptions. When the user describes a robotic arm motion, this skill guides code generation with correct API usage, safety checks, and motion completion polling.

Clawland-AI/Clawarm · 57 tokens

cardputer-buddy

Iterate on the Cardputer-Adv MicroPython app bundle (Claude Buddy, Snake, Hello) after the device is already provisioned via m5-onboard. Use when the user wants to add a new app, push a single changed .py without re-flashing, watch device serial logs, or run a one-shot REPL command. Trigger on "add an app", "push to…

anthropics/claude-plugins-official · 109 tokens

holoscan-install-wheel

Install Holoscan SDK Python wheel via pip into a venv. Use for Python installs; not for native C++/apt or Conda installs.

NVIDIA/skills · 37 tokens

HA Integration Dev

Home Assistant custom integration development in Python. Covers customcomponents, DataUpdateCoordinator, configflow, OAuth2, conversation agent, HACS publishing, device registry, entity platforms, services, repair issues, diagnostics, Bluetooth integrations, and multi-coordinator patterns.

tonylofgren/aurora-smart-home · 55 tokens

triton-ascend

A guide to writing Triton kernels for Ascend NPUs. Triton is a Python-based language for describing parallel operations that run in blocks across the device.

mindspore-ai/akg · 28 tokens

triton-ascend-case-index-put

An optimization pattern for indexed assignment, which writes values into positions chosen by index arrays. It loads index data into fast on-chip memory so a loop can reuse it.

mindspore-ai/akg · 73 tokens