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 instructions/ivalsaraj/nonoise-mac/agents-mdgit clone --depth 1 https://github.com/ivalsaraj/NoNoise-MacWhat 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.11917 | $0.11917 |
| Opus 5 | $0.05958 | $0.05958 |
| Sonnet 5 | $0.02383 | $0.02383 |
| Haiku 4.5 | $0.01192 | $0.01192 |
Grade B, and why
NoNoise-Mac AGENTS.md 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 2d 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.
The virtual mic has its own scripts: `./build-driver.sh`, `sudo ./install-driver.sh`, How it starts
The opening of the file, as written. The whole thing — 340 lines — stays where its author put it; the contents beside it link to each section on GitHub.
NoNoise Mac — Agent Operating Guide
This file is the entry point for any AI agent (or human) working in this repo. Read it first, then the linked knowledge base before touching audio code.
What this is
NoNoise Mac is a macOS (Apple Silicon) menu-bar app that removes background noise and room reverb from your microphone in real time, 100% on-device, using DeepFilterNet3 on CoreML + Metal / Accelerate. It routes the cleaned voice through a virtual audio cable so any app (Zoom, Meet, Discord, OBS, …) receives studio-clean audio.
ICP / Who We Build For
- macOS Apple-Silicon users on calls, podcasts, livestreams, and screen recordings who need clean voice without cloud processing or a subscription.
- Privacy-conscious users — no audio ever leaves the machine.
- Creators who want light studio polish (EQ + leveling) without opening a DAW.
- Not for: Windows/Linux, Intel Macs, or multi-channel music mastering.
Architecture map
Sources/Core— engine, no UI:AudioModel— CoreAudio/AVFoundation capture + playback, ring buffer, render callback, preset/knob state + persistence.AudioProcessing/DeepFilterNetDSP— STFT → DeepFilterNet feature pipeline → CoreML call → ISTFT → wet/dry blend.AudioProcessing/DeepFilterNet3_Streaming— generated CoreML model wrapper.AudioProcessing/VoiceChain+Biquad+Dynamics— post-DSP "voice polish" (high-pass → shelves → compressor → limiter) plus the optional Broadcast Voice clarity stages (presence peaking bell → subtractiveDeEsser) and optional Mouth Noise finisher stages (subtractiveDePlosive→ broadband-gateDeClick). Driven byClarityLevel+MouthNoiseLevel, each is gated independently of the noise preset.AudioProcessing/IncomingCleanupEngine— a SECOND, independent capture→clean→play pipeline ("clean the other side"), macOS 14.4+. Captures all system audio except NoNoise via a Core Audio process tap (no BlackHole/loopback), runs its OWNDeepFilterNetDSPinstance (DFN only — noVoiceChain), and re-renders the cleaned audio to the current default output (auto-following device changes; tapped originals muted). NOT anAudioModel(no mic coupling, no auto-route to the NoNoise Mic sink). Held byAudioModelas an OPTIONAL (storedAnyObject?, gated type) created ONLY while enabled. The tap IOProc →AVAudioSourceNodeare bridged by the lock-freeTapAudioRing/CTapRingSPSC ring. See "Incoming / guest cleanup" below.AudioProcessing/TapAudioRing+Sources/CTapRing(tap_ring.{c,h}) — a lock-free C11-atomics single-producer/single-consumer float FIFO bridging the two realtime threads of the tap-based incoming path. Mirrors the driver's testednn_ringacquire/release discipline.AudioProcessing/IncomingTapLogic— pure, headless-tested decisions for the incoming path (own-process-object validity, re-pin-vs-rebuild) + theIncomingCleanupStatusenum the UI binds to.AudioProcessing/RingBuffer,SpecHistoryRingBuffer,AudioUtils— buffers + helpers.VoicePreset— preset → DSP params + voice-chain settings (single source of truth).CLIArguments+AudioDenoiseOptions— shared CLI parser (live device,--action,--denoise).AudioFileDenoiser— offline file decode → mono 48 kHz →DeepFilterNetDSP→ optionalVoiceChain→ write WAV/CAF/etc. Waits onDeepFilterNetDSP.waitUntilReady()before processing; writes to a temp sibling then moves on success.
Sources/App— SwiftUI menu-bar app:NoNoiseMacApp,ContentView(popover),SettingsView, andLaunchAtLoginManager(macOS Service Management adapter).Sources/CLI—NoNoiseMacCLI: live device pipeline, one-shot--actionURL dispatch, and--denoiseoffline file mode (audio containers only — no MP4/video remux in v1).Resources—DeepFilterNet3_Streaming.mlmodelc,AppIcon.icns,NoNoiseMacLogo.png,Info.plist,NoNoiseMac.entitlements.Tests/NoNoiseMacTests— pure DSP / preset / voice-chain unit tests (run headless).
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.
- 2d ago First seen · 340 lines · 11,917 tokens per session scan B 87d9b6d65025
NoNoise-Mac AGENTS.md is an instructions file published in the GitHub repository ivalsaraj/NoNoise-Mac (12 stars, last pushed 1mo ago), licensed MIT. It adds 11,917 tokens to every session, about $0.0596 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 instructions, from other repositories
jive-vocals AGENTS.md
AGENTS.md instructions for linuxmatters/jive-vocals, covering agents.md, project overview, setup commands, build and test commands and architecture.
jive-vocals CLAUDE.md
Claude Code instructions for linuxmatters/jive-vocals, a project described as: Raw microphone recordings into broadcast-ready audio in one command. No configuration, and no surprises 🗣️.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.