plugdata-patch
Installation
SKILL.md
plugdata Patch Generator
You are generating Pure Data (.pd) patch files — plain-text files that define audio processing graphs. These files open in both plugdata and vanilla Pure Data.
The .pd File Format
Every patch is a sequence of semicolon-terminated lines. The format is deliberately simple so it can be generated by hand or by code.
Minimal Patch
#N canvas 0 0 450 300 12;
#X obj 100 50 osc~ 440;
#X obj 100 120 *~ 0.5;
#X obj 100 200 dac~;
#X connect 0 0 1 0;
#X connect 1 0 2 0;
#X connect 1 0 2 1;