Documentation Index
Fetch the complete documentation index at: https://reaperagent.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Connecting to Wwise
Reagent talks to Wwise through the official WAAPI (Wwise Authoring API), so you’ll need WAAPI enabled in your Wwise project, if it isn’t already enabled by default:- In Wwise, open Project → User Preferences
- Enable Wwise Authoring API and Allow browser connections from: 127.0.0.1 with port 8090.
- Open a project in Wwise — Reagent auto-detects the running instance
Wwise Compatibility
Reagent is compatible with Wwise 2021.1 onwards. It has specialized knowledge based on the version and will self heal if API call was incorrect. The Wwise integration works on both Windows and MacOS.Exploring Wwise Integration
I’ve personally found Reagent x Wwise most helpful when it comes to debugging and checking project structure for silly mistakes. This has been a huge time saver for bigger projects.Automatic Rollback
Every change Reagent makes in Wwise is wrapped in an undo group. If a script fails partway through, Reagent automatically rolls back the partial changes — your project is never left in a half-applied state. You can also undo the whole operation manually from Wwise’s Edit → Undo menu.Domain Knowledge
The Wwise Subagent draws on hand-authored domain knowledge — troubleshooting patterns, best practices, and many others — when answering questions and debugging. If you hit a tricky Wwise issue, just describe it and Reagent will pull in the relevant guidance into it’s own context.Audio Analysis on Wwise Source Files
The Wwise subagent can also reach into the source WAV files referenced by your Wwise Sound objects and run audio analysis on them. This is useful for tasks like loudness matching across siblings of a container, checking whether trim points need adjusting, or inspecting source content during an import.| Tool | What it does |
|---|---|
| Analyze RMS | Measures loudness of a source file (or a trimmed slice of it) for matching @VolumeOffset across siblings |
| Analyze Silence | Finds silent regions in the source — useful for verifying or tightening trim points |
| Analyze Transients | Locates hits and attacks within the source |
| Extract Waveform | Returns waveform peaks for visualization or alignment work |
| Extract Audio Metadata | Returns sample rate, channel count, duration, and bit depth |
@TrimBegin / @TrimEnd on Sound objects when analyzing — if trim points are unset (the Wwise default of -0.001), it analyzes the full file instead.