What problem does it solve?
This Skill orchestrates a deterministic BeatLab pipeline to validate, render, and export beat data from beat.json, removing guesswork from reproducible beat production.
Core Features & Use Cases
- Deterministic validation and normalization of pianoSequence and drumSequence data.
- ASCII grid rendering for quick visual verification.
- MIDI and WAV export for DAW workflows, with optional MP3 via ffmpeg.
- Useful in development, testing, and CI to reproduce beat artifacts from a single source file.
Quick Start
Use the BeatLab pipeline to validate, visualize, and export beat artifacts from beat.json:
- uv run python .claude/skills/beatlab-pipeline/scripts/validate.py <beat.json> --inplace
- uv run python .claude/skills/beatlab-pipeline/scripts/render_grid.py <beat.json>
- uv run python .claude/skills/beatlab-pipeline/scripts/export_midi.py <beat.json> <out.mid>
- uv run python .claude/skills/beatlab-pipeline/scripts/render_wav.py <beat.json> <out.wav>
- ffmpeg -y -i <out.wav> <out.mp3>