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.
npx skills add fxd0h/Axelera-Voyager-Local-Assistant --skill voyager-new-appgit clone --depth 1 https://github.com/fxd0h/Axelera-Voyager-Local-AssistantWrote 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/fxd0h/axelera-voyager-local-assistant/voyager-new-app)<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.
<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>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.00098 | $0.02423 |
| Opus 5 | $0.00049 | $0.01211 |
| Sonnet 5 | $0.00020 | $0.00485 |
| Haiku 4.5 | $0.00010 | $0.00242 |
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.
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()
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.
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.
- 12d ago First seen · 341 lines · 98 tokens per session scan A eaa4edd3bf11
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.
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.
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…
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.
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.
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.
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.