Borrowing it
Nothing to install: this file belongs to hailo-ai/hailo_model_zoo. 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/hailo-ai/hailo_model_zoo/master/.claude/skills/hailo-compile/SKILL.mdgit clone --depth 1 https://github.com/hailo-ai/hailo_model_zooWrote 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/hailo-ai/hailo_model_zoo/hailo-compile)<a href="https://agentmods.dev/skills/hailo-ai/hailo_model_zoo/hailo-compile"><img src="https://agentmods.dev/badge/skills/hailo-ai/hailo_model_zoo/hailo-compile/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/hailo-ai/hailo_model_zoo/hailo-compile"><img src="https://agentmods.dev/badge/skills/hailo-ai/hailo_model_zoo/hailo-compile.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00055 | $0.01307 |
| Opus 5 | $0.00028 | $0.00654 |
| Sonnet 5 | $0.00011 | $0.00261 |
| Haiku 4.5 | $0.00006 | $0.00131 |
Grade A, and why
hailo-compile 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 7d 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 — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Hailo Compile
Third stage of the DFC flow: take the quantized <model_name>_optimized.har from /hailo-optimize and produce a <model_name>.hef that runs on the Hailo accelerator.
This skill is shipped with the Hailo Model Zoo. It assumes the DFC wheel (hailo_sdk_client) is installed in the active virtualenv.
Inputs
| Arg | Required | Notes |
|---|---|---|
<optimized.har> |
yes | Output of /hailo-optimize. |
[hw_arch] |
no | Read from the HAR if possible; otherwise default hailo10h. |
Workflow
1. Resolve inputs
- Verify
<optimized.har>exists. model_name= HAR filename stem (strip a trailing_optimizedif present).hw_archis read from the HAR; if unavailable, ask the user (or default tohailo10h).
2. Run compile
from hailo_sdk_client import ClientRunner
runner = ClientRunner(har="<optimized.har>")
hef = runner.compile()
with open("<model_name>.hef", "wb") as f:
f.write(hef)
runner.save_har("<model_name>_compiled_model.har")
The compiled HAR carries the metadata the profiler and hailo har extract consume. The _compiled_model.har suffix matches the DFC tutorial (DFC_3_Compilation_Tutorial.ipynb) and the compilation.rst documentation — downstream tooling expects this convention.
3. Verify
- Confirm
<model_name>.hefexists and report its size and location. - Inspect the HEF metadata with
hailortcli parse-hef <model_name>.hef(requires HailoRT installed). - Per-layer profiler (static) —
hailo profiler <model_name>_compiled_model.harproduces a static per-layer report. Note: for multi-context models (most large models), this report does not include performance / FPS numbers without runtime data. - Profiler with runtime data (full FPS / utilization) — the documented two-step flow for accurate performance on multi-context models:
hailortcli run2 -m raw measure-fw-actions --output-path runtime.json set-net <model_name>.hef hailo profiler <model_name>_compiled_model.har --runtime-data runtime.json --out-path runtime_profiler.html - Smoke test on the device —
hailortcli run2 set-net <model_name>.hefruns inference with random inputs as a quick sanity check (verify the exact form withhailortcli run --help—run2always requires-m <mode>).
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.
- 7d ago First seen · 87 lines · 55 tokens per session scan A 31426e014a65
hailo-compile is a skill published in the GitHub repository hailo-ai/hailo_model_zoo (708 stars, last pushed 8d ago), licensed MIT. It adds 55 tokens to every session and 1,307 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-09-03.
Other skills, from other repositories
voyager-launch
Complete one-shot Voyager SDK launcher for Axelera AI Metis pipelines and demos. Use when the user asks to build, create, launch, run, verify, package, open a browser result viewer, or show results for a complete AI vision pipeline from a natural-language request (including when they want to debug or evaluate a…
voyager-list-models
List and search models in the Voyager SDK model zoo for Axelera AI hardware. Use when the user wants to find available models by task, framework, or dataset.
voyager-new-pipeline
Create a YAML pipeline configuration for Axelera AI hardware using the Voyager SDK. Use when the user wants to design detection, classification, segmentation, pose, cascade, or parallel pipelines and explicitly wants YAML-only design. Do not use to build, run, or validate a runnable pipeline; prefer voyager-launch for…
voyager-add-model
Add a custom model to the Voyager SDK model zoo for Axelera AI hardware. Use when the user wants to integrate a new PyTorch, ONNX, timm, or Ultralytics model.
voyager-deploy
Compile and deploy a model pipeline for Axelera AI hardware using the Voyager SDK, especially custom or non-prebuilt models. Use when the user explicitly asks for compilation, quantization, or calibration, or wants to deploy or optimize a model for Axelera APU. For prebuilt model-zoo networks or complete runnable…
voyager-run
Execute inference.py for an already-selected Voyager SDK model or pipeline on Axelera AI Metis hardware with an explicit source such as video, image, USB, RTSP, dataset, or fakevideo. Use when the user provides or already has the model/pipeline and wants only a run/test/stream command. Do not create, package…