원클릭으로
play-tape
Play a tape file by loading its patterns, effects, and arrangement from the tapes/ directory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Play a tape file by loading its patterns, effects, and arrangement from the tapes/ directory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Record the current live session as a tape (md + scd file pair) in the tapes/ directory.
Music theory and songwriting reference for composing better patterns, melodies, bass lines, and chord voicings in SuperCollider.
Use when live coding music with SuperCollider via ClaudeCollider MCP server.
Compose an arrangement for a tape — plan which elements enter and exit over time, then generate a playable CCArrangement.
| name | play-tape |
| description | Play a tape file by loading its patterns, effects, and arrangement from the tapes/ directory. |
This skill plays a tape — loading its patterns, effects, and routing in the correct order.
When the user says play @tapes/<name>.scd or asks you to play a tape.
.scd file to understand all the Pdef/Ndef definitions, effects, and sidechains.tapes/<name>-arrangement.scd.Always ask:
.play to each Pdef/Ndef)If no arrangement file exists, offer to create one with /arrange-tape as an alternative.
~cc.clear;
~cc.tempo(<bpm>);
CRITICAL: Do NOT call .play on any Pdef or Ndef yet. Load all pattern definitions first.
Execute all Pdef(\name, Pbind(...)) and Ndef(\name, {...}) definitions exactly as written in the tape — they define the patterns but do not start them.
Execute all ~cc.fx.load(...), ~cc.fx.set(...), ~cc.fx.route(...), ~cc.fx.connect(...), ~cc.fx.sidechain(...), and ~cc.fx.routeTrigger(...) calls from the tape.
If the user chose Jam:
Play all Pdefs and Ndefs at once by calling .play on each one.
If the user chose Arrangement:
Execute the CCArrangement([...]).play code from the arrangement file.
If the user wants to sync external gear, enable MIDI clock before playing:
~cc.midi.connect("My Device", \out);
CCMIDIClock.enable(~cc.midi.output);
CCArrangement automatically sends MIDI clock start/stop/ticks when enabled. No extra steps needed during playback.
.play to patterns when playing an arrangement — the arrangement handles start/stop timing.