hailo-10h-llm-compiler: Skill for Claude Code

.claude/skills/preflight/SKILL.md

preflight is a skill for Claude Code from l-nmch/hailo-10h-llm-compiler. It costs 39 tokens per session (660 once invoked), scanned A, original, MIT.

A repository hygiene check that looks for proprietary files, dates, and exposed internal paths or hostnames before code is committed or published.

In plain words
What is it for?
Checking staged and untracked files, scanning project content for dates, and finding private hostnames, IP addresses, or personal absolute paths.
Why use it?
It helps keep the repository redistributable and prevents private infrastructure details or restricted binaries from being included.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is l-nmch/hailo-10h-llm-compiler's own configuration. It tells Claude Code how to work on hailo-10h-llm-compiler itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything hailo-10h-llm-compiler configures →

Reuse

Borrowing it

Nothing to install: this file belongs to l-nmch/hailo-10h-llm-compiler. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/l-nmch/hailo-10h-llm-compiler/main/.claude/skills/preflight/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/l-nmch/hailo-10h-llm-compiler

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 preflight

README.md
[![agentmods](https://agentmods.dev/badge/skills/l-nmch/hailo-10h-llm-compiler/preflight/github.svg)](https://agentmods.dev/skills/l-nmch/hailo-10h-llm-compiler/preflight)
Your own site
<a href="https://agentmods.dev/skills/l-nmch/hailo-10h-llm-compiler/preflight"><img src="https://agentmods.dev/badge/skills/l-nmch/hailo-10h-llm-compiler/preflight/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 preflight

Your own site · 80×15
<a href="https://agentmods.dev/skills/l-nmch/hailo-10h-llm-compiler/preflight"><img src="https://agentmods.dev/badge/skills/l-nmch/hailo-10h-llm-compiler/preflight.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 660 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00039 $0.00660
Opus 5 $0.00019 $0.00330
Sonnet 5 $0.00008 $0.00132
Haiku 4.5 $0.00004 $0.00066

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

Security

Grade A, and why

preflight 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 11d 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.

.claude/skills/preflight/SKILL.md · 64 lines

How it starts

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

Preflight check

This repo must stay redistributable and evergreen at all times (see CONTRIBUTING.md). Run these checks on the staged/changed files before committing — not just once at repo creation.

1. No proprietary binaries tracked

git ls-files | grep -iE '\.(whl|hef|alls|hn)$|firmware'

Expect empty output. Also check untracked files about to be added:

git status --short

Anything matching those extensions must never be git added, even temporarily.

2. No dates or timelines in content

grep -rniE '\b(20[12][0-9]-[0-9]{2}-[0-9]{2}|january|february|march|april|june|july|september|october|november|december)\b' \
  docs/ README.md CONTRIBUTING.md pipeline/ runtime/ 2>/dev/null

Watch for false positives (e.g. the word "may" as a verb) — read matches, don't just count them. Real dates/changelog language must be rewritten as evergreen prose.

3. No leaked internal infrastructure

grep -rniE 'hpc0|hpc1|10\.5\.0\.1|/home/[a-z]+-[a-z]+' \
  --include='*.md' --include='*.py' --include='*.ipynb' . 2>/dev/null | grep -v '.git/'

Any internal hostname, private IP, or absolute path under a personal $HOME must be genericized (e.g. $DFC_WORKDIR, your-host) before committing. A GitHub username in .github/FUNDING.yml is fine — that's attribution, not a leak.

4. Large-file sanity

git ls-files -z | xargs -0 du -h 2>/dev/null | sort -rh | head -10

Nothing here should be a multi-MB artifact; the pipeline never writes outputs inside the repo tree ($DFC_WORKDIR is external — see CONTRIBUTING.md code style rules).

5. Structural consistency

  • Does the README's "Repository layout" tree still match find . -maxdepth 2?
  • If a new docs/findings/*.md was added, is it linked from docs/findings/index.md?
  • If docs/status.md claims changed, did the underlying stage-by-stage table get updated too?

Read the full file on GitHub · 64 lines

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. 11d ago First seen · 64 lines · 39 tokens per session scan A 29bf8018aa07

Subscribe to this mod's changes

preflight is a skill published in the GitHub repository l-nmch/hailo-10h-llm-compiler (14 stars, last pushed 11d ago), licensed MIT. It adds 39 tokens to every session and 660 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.