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 agentmods add skills/iplug3/audio-plugin-dev-skills/validate-audiounitnpx skills add iPlug3/audio-plugin-dev-skills --skill validate-audiounitgit clone --depth 1 https://github.com/iPlug3/audio-plugin-dev-skillsWrote 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/iplug3/audio-plugin-dev-skills/validate-audiounit)<a href="https://agentmods.dev/skills/iplug3/audio-plugin-dev-skills/validate-audiounit"><img src="https://agentmods.dev/badge/skills/iplug3/audio-plugin-dev-skills/validate-audiounit.svg" alt="Measured on agentmods" 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 | $0.00095 | $0.02137 |
| Opus 5 | $0.00048 | $0.01069 |
| Sonnet 5 | $0.00019 | $0.00427 |
| Haiku 4.5 | $0.00010 | $0.00214 |
Grade B, and why
validate-audiounit scanned grade B with 1 finding 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 5d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
sudo auval -real-time-safety -v aufx <subtype> <manufacturer> How it starts
The opening of the file, as written. The whole thing — 251 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AudioUnit Validation (auval)
Plugin Install Locations
AudioUnits must be registered with the system for auval to find them — it does not accept a file path.
AUv2 (.component)
| Location | Scope |
|---|---|
~/Library/Audio/Plug-Ins/Components/ |
Current user only |
/Library/Audio/Plug-Ins/Components/ |
All users (requires admin) |
After installing or rebuilding, force a rescan: killall -9 AudioComponentRegistrar
AUv3 (.appex)
AUv3 AudioUnits are app extensions (.appex) embedded inside a host .app bundle (e.g., MyApp.app/Contents/PlugIns/MyAU.appex). The host app must be run at least once to register the extension with the system via pluginkit.
# Check if an AUv3 is registered (match by bundle ID)
pluginkit -m -v -p <bundle-id>
# List all registered AudioUnit extensions
pluginkit -m -v -A
# Manually register an appex
pluginkit -a <path-to-appex>
# Unregister an appex
pluginkit -r <path-to-appex>
# Dump full extension info for debugging
pluginkit -e -v -i <bundle-id>
After rebuilding, re-run the host app or use pluginkit -a to re-register the updated extension.
Instructions
- Register the plugin with the system:
- AUv2: Install the
.componentin a standard Components location (see above) - AUv3: Run the host
.appat least once, or manually register withpluginkit -a <path-to-appex>
- AUv2: Install the
- Identify the plugin's AU type (
aufx,aumu, etc.), four-character subtype, and manufacturer code - Force a rescan if the plugin was just built:
killall -9 AudioComponentRegistrar - Run:
auval -v <type> <subtype> <manufacturer>— this works the same for both AUv2 and AUv3 once registered - Check the final line —
* * * * * * * *means all tests passed - If tests fail, see Common Issues below
Basic Usage
# Validate an effect (aufx)
auval -v aufx <subtype> <manufacturer>
# Validate an instrument (aumu)
auval -v aumu <subtype> <manufacturer>
# Validate a MIDI-controlled effect (aumf)
auval -v aumf <subtype> <manufacturer>
# Validate a MIDI processor (aumi)
auval -v aumi <subtype> <manufacturer>
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.
- 5d ago First seen · 251 lines · 95 tokens per session scan B c7604683005a
validate-audiounit is a skill published in the GitHub repository iPlug3/audio-plugin-dev-skills (90 stars, last pushed 6mo ago), licensed MIT. It adds 95 tokens to every session and 2,137 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
create-custom-grader
Use when converting an existing benchmark, rubric, verifier, task YAML/JSON, or domain check into SkillEvaluator BYOG/BYOT custom evaluation.
simple
Summarize short user notes into clear action items.
agent-ready-cloudflare
Audit and improve website readiness for AI agents using the Cloudflare "Is It Agent Ready?" scanner (isitagentready.com). Covers scanning via API, interpreting results, generating implementation prompts, and fixing every check. Use when the user mentions "agent ready", "isitagentready", "AI agent scan", "agent…
aidlc-master
Runs the AWS AI-DLC (AI-Driven Development Life Cycle) methodology end to end: an adaptive three-phase workflow (Inception → Construction → Operations) with human approval gates, a full audit trail, and all artifacts in aidlc-docs/. Use when the user says "Using AI-DLC", "AI-DLC", "AIDLC", "aidlc-master", or asks for…
slop-eval
Objectively evaluate a UI/web design against the pols.dev anti-slop design law: detect catalogued slop tells with cited evidence, score 8 weighted axes (color, type, components, layout, motion, execution, signature, cohesion), and emit a Slop Report with a 0–100 Slop Index and grade. Use when the user asks to…
astro-sites-manager
Comprehensive skill for building, migrating, and maintaining Astro v7 projects. Covers best practices from the official AGENTS.md, the v6→v7 migration path, validation of breaking/deprecated patterns, AI-enhanced dev server usage (background mode, JSON logging), advanced routing with src/fetch.ts, route caching…