iPlug2 / setup-deps
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/setup-deps && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3337" && unzip -o skill.zip -d .claude/skills/setup-deps && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/setup-deps/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Download iPlug2 dependencies including plugin format SDKs (VST3, CLAP, WAM) and optional Skia graphics backend libraries
0 views
0 installs
Skill Content
--- name: setup-deps description: Download iPlug2 dependencies including plugin format SDKs (VST3, CLAP, WAM) and optional Skia graphics backend libraries --- # Setup iPlug2 Dependencies Use this skill when the user needs to download SDKs or prebuilt libraries for iPlug2. ## Workflow 1. **Ask what the user needs:** - Plugin format SDKs (VST3, CLAP, WAM) - required for most plugin formats - Skia prebuilt libs - required if using Skia IGraphics backend - iOS libs - only if targeting iOS 2. **Download plugin SDKs** (if requested): ```bash cd ./Dependencies/IPlug/ ./download-iplug-sdks.sh ``` 3. **Download Skia libs** (if requested): ```bash cd ./Dependencies/ ./download-prebuilt-libs.sh ``` For iOS (macOS only): ```bash ./download-prebuilt-libs.sh ios ``` 4. **Inform the user about manual SDKs:** - VST2 SDK: No longer publicly available, not recommended for new projects - AAX SDK: Must be downloaded manually from Avid's developer portal ## Notes - AUv2/AUv3 require no additional SDKs (macOS-only formats) - Standalone apps require no additional SDKs - Always return to repo root after running scripts