axiom-avfoundation-ref

Installation
SKILL.md

AVFoundation Audio Reference

Quick Reference

// AUDIO SESSION SETUP
import AVFoundation

try AVAudioSession.sharedInstance().setCategory(
    .playback,                              // or .playAndRecord, .ambient
    mode: .default,                         // or .voiceChat, .measurement
    options: [.mixWithOthers, .allowBluetooth]
)
try AVAudioSession.sharedInstance().setActive(true)
Installs
229
GitHub Stars
975
First Seen
Jan 21, 2026
axiom-avfoundation-ref — charleswiltgen/axiom