Claude-skill-registry beatlab-pipeline

Deterministic BeatLab pipeline utilities (validate, render grid, export MIDI/WAV). Use for running scripts instead of reasoning about validation/rendering.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/beatlab-pipeline" ~/.claude/skills/majiayu000-claude-skill-registry-beatlab-pipeline && rm -rf "$T"
manifest: skills/data/beatlab-pipeline/SKILL.md
source content

BeatLab Pipeline

Prefer running these scripts (do NOT read them into context):

Validate (and normalize) a beat JSON

uv run python .claude/skills/beatlab-pipeline/scripts/validate.py <beat.json> --inplace

Render 16-step ASCII grid

uv run python .claude/skills/beatlab-pipeline/scripts/render_grid.py <beat.json>

Export MIDI

uv run python .claude/skills/beatlab-pipeline/scripts/export_midi.py <beat.json> <out.mid>

Render WAV

uv run python .claude/skills/beatlab-pipeline/scripts/render_wav.py <beat.json> <out.wav>

Optional MP3 (if ffmpeg exists)

ffmpeg -y -i <out.wav> <out.mp3>