Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Validates album directory structure, file locations, and content integrity. Use before release or whenever the user wants to check an album's structural health.
.claude/skills/bitwize-music-studio-validate-album/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 49% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 155% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 130% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 124% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 79% | 0% |
Input: $ARGUMENTS (album name, e.g., sample-album)
Validate that an album has all required files in the correct locations, catching path issues and missing content before they become problems.
get_config() — returns paths (content_root, audio_root, documents_root) and artist.name [FAIL] Config file missing: ~/.bitwize-music/config.yaml Run /configure to set up the plugin.
find_album(album_name) — fuzzy match by name, slug, or partial [FAIL] Album not found: {album-name}
validate_album_structure(album_slug) — runs structural validation checks and returns {passed, failed, warnings, skipped, issues[], checks[]}. This MCP tool handles directory structure, required files, audio placement, and track content checks in one call.Note: The MCP validate_album_structure tool performs many of the checks below automatically. You can use its results directly or run the manual checks for more detailed reporting.
passed = 0failed = 0warnings = 0skipped = 0issues = [] (list of fix commands)═══════════════════════════════════════════════════════════
ALBUM VALIDATION: {album-name}
═══════════════════════════════════════════════════════════CONFIG
──────| Check | Pass | Fail | |-------|------|------| | Config file exists | [PASS] Config file exists | [FAIL] Config file missing | | content_root defined | [PASS] content_root: {value} | [FAIL] content_root not defined | | audio_root defined | [PASS] audio_root: {value} | [FAIL] audio_root not defined | | artist defined | [PASS] artist: {value} | [FAIL] artist.name not defined |
ALBUM STRUCTURE
───────────────| Check | How | Pass | Fail | |-------|-----|------|------| | Album dir exists | test -d {album_path} | [PASS] Album directory: {path} | [FAIL] Album directory missing | | README.md exists | test -f {album_path}/README.md | [PASS] README.md exists | [FAIL] README.md missing | | tracks/ dir exists | test -d {album_path}/tracks | [PASS] tracks/ directory exists | [FAIL] tracks/ directory missing | | Track files exist | ls {album_path}/tracks/*.md | [PASS] {N} track files found | [WARN] No track files found |
For documentary albums (check README.md for type): | Check | How | Pass | Fail | |-------|-----|------|------| | RESEARCH.md exists | test -f {album_path}/RESEARCH.md | [PASS] RESEARCH.md exists | [WARN] RESEARCH.md missing (documentary album) | | SOURCES.md exists | test -f {album_path}/SOURCES.md | [PASS] SOURCES.md exists | [WARN] SOURCES.md missing (documentary album) |
AUDIO FILES
───────────Expected path: {audio_root}/artists/{artist}/albums/{genre}/{album}/
| Check | How | Pass | Fail | |-------|-----|------|------| | Audio dir exists (correct path) | test -d {audio_root}/artists/{artist}/albums/{genre}/{album} | [PASS] Audio directory: {path} | See below | | Audio dir in wrong location | test -d {audio_root}/{album} | N/A | [FAIL] Audio in wrong location (missing artist folder) |
If audio in wrong location, add to issues:
→ Expected: {audio_root}/artists/{artist}/albums/{genre}/{album}/
→ Found at: {audio_root}/{album}/ (WRONG - missing artist folder)
→ Fix: mv {audio_root}/{album}/ {audio_root}/artists/{artist}/albums/{genre}/{album}/| Check | How | Pass | Skip | |-------|-----|------|------| | WAV files present | ls {audio_path}/*.wav | [PASS] {N} WAV files found | [SKIP] No audio files yet | | mastered/ exists | test -d {audio_path}/mastered | [PASS] mastered/ directory exists | [SKIP] Not mastered yet |
ALBUM ART
─────────| Check | How | Pass | Skip | |-------|-----|------|------| | Art in audio folder | test -f {audio_path}/album.png | [PASS] album.png in audio folder | [SKIP] No album art yet | | Art in content folder | test -f {album_path}/album-art.* | [PASS] album-art in content folder | [SKIP] No album art yet |
TRACKS
──────For each track file in {album_path}/tracks/*.md:
## Suno Inputs section)Generated or Final: Suno Link presentinstrumental field (true/false/missing)**Instrumental** row (Yes/No/missing)[WARN] {filename} - Instrumental field mismatch: frontmatter={value}, table={value}[WARN] {filename} - Instrumental field missing from {frontmatter|table} (set in {other})Output per track:
[PASS] {filename} - Status: {status}, Suno Link: {present/missing}[WARN] {filename} - Status: {status}, missing {what}[FAIL] {filename} - No Status field═══════════════════════════════════════════════════════════
SUMMARY: {passed} passed, {failed} failed, {warnings} warning(s), {skipped} skipped
═══════════════════════════════════════════════════════════If any issues:
ISSUES TO FIX:
1. {issue description}
{fix command}
2. ...═══════════════════════════════════════════════════════════
ALBUM VALIDATION: sample-album
═══════════════════════════════════════════════════════════
CONFIG
──────
[PASS] Config file exists
[PASS] content_root: ~/bitwize-music
[PASS] audio_root: ~/bitwize-music/audio
[PASS] artist: bitwize
ALBUM STRUCTURE
───────────────
[PASS] Album directory: ~/bitwize-music/artists/bitwize/albums/electronic/sample-album/
[PASS] README.md exists
[PASS] tracks/ directory exists
[PASS] 5 track files found
AUDIO FILES
───────────
[FAIL] Audio directory in wrong location
→ Expected: ~/bitwize-music/audio/artists/bitwize/albums/electronic/sample-album/
→ Found at: ~/bitwize-music/audio/sample-album/
→ Fix: mv ~/bitwize-music/audio/sample-album/ ~/bitwize-music/audio/artists/bitwize/albums/electronic/sample-album/
ALBUM ART
─────────
[SKIP] No album art yet
TRACKS
──────
[PASS] 01-intro.md - Status: Final, Suno Link: present
[PASS] 02-track.md - Status: Final, Suno Link: present
[WARN] 03-t-day-beach.md - Status: Generated, Suno Link: missing
═══════════════════════════════════════════════════════════
SUMMARY: 8 passed, 1 failed, 1 warning, 1 skipped
═══════════════════════════════════════════════════════════
ISSUES TO FIX:
1. Move audio folder to include artist:
mv ~/bitwize-music/audio/sample-album/ ~/bitwize-music/audio/artists/bitwize/albums/electronic/sample-album/get_config(), find_album(), validate_album_structure() before manual checks| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 20,475 | 3,971 | -81% | 1 | 1 | 0% | 3,547 | 2,314 | -35% | 0 | 0 | — |
case-02 | fail→fail | 16,706 | 3,873 | -77% | 1 | 1 | 0% | 3,142 | 2,318 | -26% | 0 | 0 | — |
case-03 | fail→fail | 15,551 | 4,455 | -71% | 1 | 1 | 0% | 3,257 | 2,524 | -23% | 0 | 0 | — |
case-04 | fail→pass | 12,470 | 5,721 | -54% | 1 | 1 | 0% | 2,296 | 3,417 | +49% | 0 | 0 | — |
case-05 | fail→fail | 11,089 | 3,070 | -72% | 1 | 1 | 0% | 1,944 | 2,753 | +42% | 0 | 0 | — |
case-06 | fail→pass | 7,191 | 4,463 | -38% | 1 | 1 | 0% | 1,220 | 3,115 | +155% | 0 | 0 | — |
case-07 | fail→pass | 8,009 | 3,523 | -56% | 1 | 1 | 0% | 1,221 | 2,809 | +130% | 0 | 0 | — |
case-08 | fail→pass | 7,327 | 2,560 | -65% | 1 | 1 | 0% | 1,210 | 2,713 | +124% | 0 | 0 | — |
case-09 | fail→pass | 8,967 | 2,137 | -76% | 1 | 1 | 0% | 1,474 | 2,634 | +79% | 0 | 0 | — |
case-10 | fail→pass | 9,845 | 3,408 | -65% | 1 | 1 | 0% | 1,560 | 2,834 | +82% | 0 | 0 | — |
case-11 | fail→pass | 9,143 | 3,002 | -67% | 1 | 1 | 0% | 1,463 | 2,768 | +89% | 0 | 0 | — |
case-12 | fail→pass | 7,705 | 1,935 | -75% | 1 | 1 | 0% | 1,207 | 2,512 | +108% | 0 | 0 | — |
case-13 | fail→pass | 13,710 | 2,817 | -79% | 1 | 1 | 0% | 2,243 | 2,742 | +22% | 0 | 0 | — |
case-14 | fail→pass | 6,280 | 2,183 | -65% | 1 | 1 | 0% | 992 | 2,586 | +161% | 0 | 0 | — |
case-15 | fail→pass | 9,537 | 3,675 | -61% | 1 | 1 | 0% | 1,643 | 2,909 | +77% | 0 | 0 | — |
case-16 | fail→pass | 6,793 | 3,201 | -53% | 1 | 1 | 0% | 1,107 | 2,848 | +157% | 0 | 0 | — |
case-17 | fail→pass | 7,108 | 1,743 | -75% | 1 | 1 | 0% | 1,133 | 2,472 | +118% | 0 | 0 | — |
case-18 | pass→pass | 6,059 | 1,914 | -68% | 1 | 1 | 0% | 990 | 2,508 | +153% | 0 | 0 | — |
case-19 | fail→pass | 6,484 | 2,261 | -65% | 1 | 1 | 0% | 957 | 2,608 | +173% | 0 | 0 | — |
case-20 | fail→pass | 9,944 | 4,051 | -59% | 1 | 1 | 0% | 1,628 | 2,949 | +81% | 0 | 0 | — |
case-21 | pass→pass | 16,588 | 13,544 | -18% | 1 | 1 | 0% | 2,632 | 4,761 | +81% | 0 | 0 | — |
case-22 | pass→pass | 16,904 | 11,518 | -32% | 1 | 1 | 0% | 2,597 | 4,204 | +62% | 0 | 0 | — |
case-23 | pass→pass | 10,726 | 10,502 | -2% | 1 | 1 | 0% | 2,032 | 4,075 | +101% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted, and 20 counted toward the lift figure. The other 3 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +65 percentage points is the difference between those two pass rates over the 20 comparable cases. 2 cases got worse with the skill loaded, and they are included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.