From audio-production
Use when the user wants to quickly extract vocals (or isolated instrumentals) from a song or recording. Convenience wrapper around 2-stem `demucs` mode. Fastest stem separation for the common case.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin audio-productionThis skill uses the workspace's default tool permissions.
Isolate vocals from a mixed audio file using `demucs` in 2-stem mode. Fast and focused — produces `vocals.wav` and `accompaniment.wav`. Optionally drop the accompaniment if the user only wants the vocal stem.
Conducts multi-round deep research on GitHub repos via API and web searches, generating markdown reports with executive summaries, timelines, metrics, and Mermaid diagrams.
Share bugs, ideas, or general feedback.
Isolate vocals from a mixed audio file using demucs in 2-stem mode. Fast and focused — produces vocals.wav and accompaniment.wav. Optionally drop the accompaniment if the user only wants the vocal stem.
separate-stems).Do not use this skill for:
separate-stems.separate-stems with GPU for throughput.vocals_<date>/ next to the input.false, delete the accompaniment stem and keep only vocals.wav.--gpu to use CUDA; default is CPU.Check if demucs is on PATH (which demucs). If missing, point the user at install-deps and note the ~2 GB download on first run.
Build the command:
demucs \
--two-stems vocals \
-d <device> \
-o "<output-dir>" \
"<input-file>"
Set -d cuda for GPU, -d cpu for CPU. Default is CPU.
Monitor progress and capture stderr.
After processing:
keep_accompaniment is false, delete the accompaniment stem: rm "<output-dir>/accompaniment.wav".Verify output: confirm vocals.wav is present and non-zero size. If accompaniment was kept, confirm that too.
vocals.wav — isolated vocal track.accompaniment.wav — (optional) instrumental/music bed, kept only if requested.<input> → <output-dir> (vocals + accompaniment, 2-stem mode) or (vocals only) if accompaniment was dropped.nvidia-smi for availability.Install via pipx install demucs. Requires PyTorch. Audio format support via ffmpeg.