validate-audiounit

validate-audiounit is a skill for Claude Code, Codex from iPlug3/audio-plugin-dev-skills. It costs 95 tokens per session (2,137 once invoked), scanned B, original, MIT.

A validation procedure for Apple AudioUnit audio plug-ins, including AUv2 component bundles and AUv3 app extensions. AudioUnit is Apple's plug-in format for music and audio software.

In plain words
What is it for?
Use it to validate .component or .appex plug-ins, inspect registration, and troubleshoot AudioUnit compatibility.
Why use it?
It checks whether a plug-in is registered correctly and compatible with Apple's validation tool, including registration issues that can hide the plug-in.

Skill for Claude CodeCodex

Part of the audio-plugin-validators plugin — 6 skills shipped together

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.

agentmods
npx agentmods add skills/iplug3/audio-plugin-dev-skills/validate-audiounit
Any agent
npx skills add iPlug3/audio-plugin-dev-skills --skill validate-audiounit
Clone the repo
git clone --depth 1 https://github.com/iPlug3/audio-plugin-dev-skills

Made for: Claude Code, Codex.

Or install audio-plugin-validators, the plugin that ships this one along with the rest of its 6 skills.

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 validate-audiounit

README.md
[![agentmods](https://agentmods.dev/badge/skills/iplug3/audio-plugin-dev-skills/validate-audiounit.svg)](https://agentmods.dev/skills/iplug3/audio-plugin-dev-skills/validate-audiounit)
Your own site
<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>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,137 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
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 $0.00095 $0.02137
Opus 5 $0.00048 $0.01069
Sonnet 5 $0.00019 $0.00427
Haiku 4.5 $0.00010 $0.00214

Measured 5d ago against content hash c7604683005a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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>
plugins/audio-plugin-validators/skills/validate-audiounit/SKILL.md · 251 lines

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

  1. Register the plugin with the system:
    • AUv2: Install the .component in a standard Components location (see above)
    • AUv3: Run the host .app at least once, or manually register with pluginkit -a <path-to-appex>
  2. Identify the plugin's AU type (aufx, aumu, etc.), four-character subtype, and manufacturer code
  3. Force a rescan if the plugin was just built: killall -9 AudioComponentRegistrar
  4. Run: auval -v <type> <subtype> <manufacturer> — this works the same for both AUv2 and AUv3 once registered
  5. Check the final line — * * * * * * * * means all tests passed
  6. 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>

Read the full file on GitHub · 251 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. 5d ago First seen · 251 lines · 95 tokens per session scan B c7604683005a

Subscribe to this mod's changes

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.

Related

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.

NVIDIA/SkillEvaluator · 35 tokens

simple

Summarize short user notes into clear action items.

NVIDIA/SkillEvaluator · 13 tokens

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…

fabricioctelles/skills · 158 tokens

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…

fabricioctelles/skills · 243 tokens

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…

fabricioctelles/skills · 142 tokens

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…

fabricioctelles/skills · 230 tokens