claude-collider: Skill for Claude Code

.claude/skills/record-tape/SKILL.md

record-tape is a skill for Claude Code from jeremyruppel/claude-collider. It costs 26 tokens per session (1,330 once invoked), scanned A, original, MIT.

A method for saving a live SuperCollider music session as a pair of replayable files: executable code and written notes. SuperCollider is software for creating and performing sound with code.

In plain words
What is it for?
Inspecting the current tempo, patterns, instruments, effects routing, and active sounds, then saving the result as a .scd file and a matching .md file in the tapes/ directory.
Why use it?
It preserves the current musical idea so it can be understood, replayed, changed, or remixed in a later session. The notes describe the music without requiring someone to read all the code.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is jeremyruppel/claude-collider's own configuration. It tells Claude Code how to work on claude-collider itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-collider configures →

Reuse

Borrowing it

Nothing to install: this file belongs to jeremyruppel/claude-collider. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/jeremyruppel/claude-collider/main/.claude/skills/record-tape/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jeremyruppel/claude-collider

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for record-tape

README.md
[![agentmods](https://agentmods.dev/badge/skills/jeremyruppel/claude-collider/record-tape/github.svg)](https://agentmods.dev/skills/jeremyruppel/claude-collider/record-tape)
Your own site
<a href="https://agentmods.dev/skills/jeremyruppel/claude-collider/record-tape"><img src="https://agentmods.dev/badge/skills/jeremyruppel/claude-collider/record-tape/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for record-tape

Your own site · 80×15
<a href="https://agentmods.dev/skills/jeremyruppel/claude-collider/record-tape"><img src="https://agentmods.dev/badge/skills/jeremyruppel/claude-collider/record-tape.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,330 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00026 $0.01330
Opus 5 $0.00013 $0.00665
Sonnet 5 $0.00005 $0.00266
Haiku 4.5 $0.00003 $0.00133

Measured 11d ago against content hash a9b459145c29, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

record-tape scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/record-tape/SKILL.md · 152 lines

How it starts

The opening of the file, as written. The whole thing — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Record Tape

This skill captures the current live coding session as a tape — a replayable pair of files that preserve the musical idea.

What is a tape?

A tape is two files in tapes/:

  • <name>.scd — Executable SuperCollider code. The source of truth.
  • <name>.md — Documentation for Claude. Describes the musical content so future sessions can understand, modify, or remix the tape without parsing SC code.

Recording process

Step 1: Gather session state

Use the MCP tools to capture what's currently playing:

  1. cc_status (action: status) — Get tempo, playing Pdefs/Ndefs, active synths
  2. cc_status (action: routing) — Get effects routing, sidechain configuration
  3. cc_execute to inspect individual Pdefs/Ndefs if needed (e.g., Pdef(\kick).source.postcs)

Ask the user for:

  • Name for the tape (used as filename, kebab-case)
  • Genre/vibe description (one sentence)
  • Key (e.g., Dm, Ebm, or atonal)
  • Chord progression if tonal (chords + cycle length)
  • Any notes about the session they want preserved

Step 2: Write the .scd file

Write tapes/<name>.scd following this structure:

// <Title> - <one-line description> at <BPM> BPM in <key>
// <Chord progression if applicable>

// 1. Clear and set tempo
~cc.clear;
~cc.tempo(<bpm>);

// 2. <Element name> - <musical role>
Pdef(\<name>, Pbind(
    ...
)).play(quant: 4);

// ... more elements ...

// N. Effects
~cc.fx.load(\<effect>);
~cc.fx.set(\<slot>, <params>);
~cc.fx.route(\<source>, \<slot>);

// N+1. Sidechain
~cc.fx.sidechain(\<name>, <threshold>, <ratio>, <attack>, <release>);
~cc.fx.route(\<source>, \<name>);
~cc.fx.routeTrigger(\<trigger>, \<name>, true);

Rules for .scd files:

  • Always start with ~cc.clear and ~cc.tempo
  • Number each block with a comment: // 1., // 2., etc.
  • Use play(quant: 4) on Pdefs for aligned playback
  • Repo samples OK — samples from the samples/ directory (committed to the repo) can be loaded and used. System-specific sample paths are still not allowed.
  • NO MIDI setup — playback-time decision
  • NO hardware output routing (routeToOutput) — system-specific
  • NO server boot/reboot commands — handled by playback
  • NO absolute file paths
  • Drums always need \freq, 48
  • Use \instrument, \cc_<synthname> — never dynamically construct the prefix
  • Prefer \degree + \scale + \root + \octave for tonal parts (more readable than raw midinote)
  • Group: drums first, then bass, then melodic/harmonic, then effects, then sidechain

Read the full file on GitHub · 152 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 152 lines · 26 tokens per session scan A a9b459145c29

Subscribe to this mod's changes

record-tape is a skill published in the GitHub repository jeremyruppel/claude-collider (53 stars, last pushed 1mo ago), licensed MIT. It adds 26 tokens to every session and 1,330 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens