Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Finds an album by name and shows detailed status with next steps. Use when the user mentions an album name or wants to continue previous work.
.claude/skills/bitwize-music-studio-resume/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-17 | ✗→✓ | ▲ Improved | 116% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 291% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 192% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 220% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 203% | 0% |
Purpose: Find an album and resume work where you left off.
Usage:
/bitwize-music:resume <album-name>
/bitwize-music:resume my-album
/bitwize-music:resume "demo album"When to use: When user wants to continue working on an existing album.
When this skill is invoked with an album name:
find_album(name) — fuzzy match by name, slug, or partial (case-insensitive)/bitwize-music:new-albumrebuild_state() then retryget_album_progress(album_slug) — returns track counts by status, completion percentage, and detected workflow phaselist_tracks(album_slug) — returns per-track details (status, has_suno_link, sources_verified)Call update_session(album=album_slug, phase=detected_phase) to set the active album and phase.
Based on album and track statuses, identify the workflow phase:
| Album Status | Track Statuses | Current Phase | |--------------|----------------|---------------| | Concept | Most "Not Started" | Planning - Need to fill in album README and create tracks | | Research Complete | Some "Sources Pending" | Verification - Need human verification of sources (documentary albums) | | Sources Verified | All sources verified | Ready to Write - Sources cleared, begin lyrics (documentary albums) | | In Progress | Mixed, some "Not Started" | Writing - Need to complete lyrics (or route instrumental tracks to suno-engineer) | | In Progress | Some "Sources Pending" | Verification - Need human verification of sources | | In Progress | All have lyrics | Ready to Generate - Run Ready to Generate checkpoint | | In Progress | Some "Generated" | Generating - Continue generating on Suno. Check Generation Logs for rejected tracks needing regeneration | | In Progress | All "Generated", none "Final" | Review & Approve - Listen to generated tracks, mark keepers with ✓, regenerate rejected ones | | Complete | All "Final" | Mastering - Ready to master audio | | Released | All "Final" | Released - Album is live |
Note: Non-documentary albums skip Research Complete and Sources Verified — they go directly from Concept → In Progress.
Present a clear status report:
📁 Album: [Album Title]
Location: {content_root}/artists/{artist}/albums/{genre}/{album}/
Status: [Album Status]
📊 Progress:
- Tracks: [X completed / Y total] ([N vocal, M instrumental])
- Not Started: X
- In Progress: Y
- Generated: Z
- Final: N
📍 Current Phase: [Phase Name]
✅ What's Done:
- [List completed items]
⏭️ Next Steps:
1. [Specific action 1]
2. [Specific action 2]
3. [Specific action 3]
Ready to continue? Tell me what you'd like to work on.Pick ONE clear recommendation from the decision tree below. Don't list 5 options — pick the best one, include the skill name, and be specific about which track.
Decision Tree (evaluate top-to-bottom, first match wins):
Instrumental detection: Check each track's frontmatter for instrumental: true or Track Details table for **Instrumental** | Yes. Instrumental tracks skip the lyrics workflow entirely and go straight to /bitwize-music:suno-engineer.
Album Status = "Concept"
→ "Define the album concept. Run /bitwize-music:album-conceptualizer"
Album Status = "Research Complete"
→ Any tracks Sources Pending?
YES → "Sources need verification. Run /bitwize-music:verify-sources [album]"
NO → Any "Not Started" tracks instrumental?
YES → "Create Style Box for instrumental track [name]. Use /bitwize-music:suno-engineer"
NO → "Ready to write! Pick a track and use /bitwize-music:lyric-writer"
Album has tracks with "Not Started"
→ Is the first not-started track instrumental?
YES → "Create Style Box for [track]. Use /bitwize-music:suno-engineer directly (instrumental track)"
NO → "Write lyrics for [first not-started track]. Use /bitwize-music:lyric-writer"
Album has tracks with "In Progress" (lyrics partially written)
→ "Finish lyrics for [first in-progress track]. Use /bitwize-music:lyric-writer"
Album has tracks with "Sources Pending"
→ "Verify sources for [track]. Run /bitwize-music:verify-sources [album]"
All tracks have lyrics (or Style Box for instrumentals), none generated
→ Mixed album (vocal + instrumental)?
YES → "All tracks ready! Run /bitwize-music:pronunciation-specialist on vocal tracks, then /bitwize-music:lyric-reviewer, then /bitwize-music:pre-generation-check to validate all gates (instrumental tracks auto-skip lyrics gates)."
NO → "All lyrics complete! Style prompts should be ready. Run /bitwize-music:pronunciation-specialist to check for pronunciation risks, then /bitwize-music:lyric-reviewer for final QC, then /bitwize-music:pre-generation-check to validate all gates before generating on Suno."
Some tracks generated, some not
→ Any Generated tracks without ✓ in Generation Log Rating?
YES → "Track [name] was generated but not approved. Listen and decide:
- Happy? Mark ✓ in Generation Log and set Status: Final
- Not happy? Log the reason, then:
Style issue → /bitwize-music:suno-engineer to revise Style Box
Lyrics issue → /bitwize-music:lyric-writer to fix, then regenerate
Bad luck → Regenerate on Suno with same settings (it's non-deterministic)"
NO → "Generate [first un-generated track] on Suno. Use /bitwize-music:suno-engineer"
All tracks generated, none Final
→ "All tracks generated! Listen to each track and approve:
- Mark keepers with ✓ in Generation Log Rating column
- Reject and regenerate any that don't meet quality standards
- Once all have ✓, batch-approve:
Use update_track_field(album_slug, track_slug, 'status', 'Final') for each approved track.
Once all Final, album advances to Complete automatically."
All tracks generated, some Final
→ Any Generated (non-Final) tracks without ✓?
YES → "Review track [name] — listen and approve (✓) or regenerate"
NO → "All tracks approved! Batch-approve: update_track_field(album_slug, track_slug, 'status', 'Final') for each.
Then import audio with /bitwize-music:import-audio, then master with /bitwize-music:mastering-engineer"
All tracks Final
→ "All tracks approved! Import audio with /bitwize-music:import-audio, then master with /bitwize-music:mastering-engineer"
Album Status = "Complete"
→ "Album is complete! Release with /bitwize-music:release-director"
Album Status = "Released"
→ "This album is released! Consider /bitwize-music:promo-director for promotional content"
→ Also suggest: "Start a new album? Check /bitwize-music:album-ideas list"Format the recommendation as:
RECOMMENDED NEXT ACTION:
[Clear, specific instruction with skill name and track name]
WHY:
[One sentence explaining why this is the right next step]If invoked without an album name:
get_session() — check last_album from session context, resume that albumlist_albums() to find all in-progress albums/bitwize-music:new-albumPresent a multi-album summary if multiple are in progress:
You have X albums. Here's the most actionable:
PRIORITY 1: [album-name] ([genre])
Status: [status] | Progress: [X/Y tracks]
→ [Recommended action]
Also in progress:
- [album-2] — [brief status]/bitwize-music:resume my-album
📁 Album: My Album
Location: ~/bitwize-music/artists/bitwize/albums/rock/my-album/
Status: In Progress
📊 Progress:
- Tracks: 3 completed / 8 total
- Not Started: 3
- In Progress: 2
- Final: 3
📍 Current Phase: Writing Lyrics
✅ What's Done:
- Tracks 1-3 have final lyrics
- Album concept and tracklist defined
⏭️ Next Steps:
1. Complete lyrics for Track 4 (in progress)
2. Complete lyrics for Track 5 (in progress)
3. Write lyrics for Tracks 6-8
Ready to continue? Tell me which track you'd like to work on./bitwize-music:resume demo-album
📁 Album: Demo Album
Location: ~/bitwize-music/artists/bitwize/albums/electronic/demo-album/
Status: In Progress
📊 Progress:
- Tracks: 8 / 8 total (all lyrics complete)
- Final: 8
📍 Current Phase: Ready to Generate
✅ What's Done:
- All 8 tracks have complete lyrics
- All lyrics phonetically reviewed
- Suno Style and Lyrics boxes filled
⏭️ Next Steps:
1. Run Ready to Generate checkpoint (I'll verify everything)
2. Start generating on Suno
3. Log generation attempts
Shall I run the Ready to Generate checkpoint now?/bitwize-music:resume my-album
❌ Album 'my-album' not found.
Available albums:
- demo-album (electronic) - In Progress
- example-tracks (hip-hop) - Complete
Did you mean one of these? Or use /bitwize-music:new-album to create a new album.find_album, get_album_progress, list_tracks, update_session instead of reading state.json directlyUse Sonnet 4.5 - This is a coordination/reporting task, not creative work.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-17 | fail→pass | 8,179 | 3,443 | -58% | 1 | 1 | 0% | 1,545 | 3,339 | +116% | 0 | 0 | — |
case-01 | fail→fail | 9,122 | 4,889 | -46% | 1 | 1 | 0% | 1,665 | 3,041 | +83% | 0 | 0 | — |
case-02 | fail→fail | 6,526 | 3,680 | -44% | 1 | 1 | 0% | 1,062 | 2,973 | +180% | 0 | 0 | — |
case-03 | fail→fail | 14,502 | 4,106 | -72% | 1 | 1 | 0% | 2,663 | 2,887 | +8% | 0 | 0 | — |
case-04 | pass→pass | 9,196 | 12,829 | +40% | 1 | 1 | 0% | 1,350 | 4,658 | +245% | 0 | 0 | — |
case-05 | pass→fail | 7,319 | 12,225 | +67% | 1 | 1 | 0% | 1,838 | 3,699 | +101% | 0 | 0 | — |
case-06 | pass→fail | 12,544 | 6,637 | -47% | 1 | 1 | 0% | 2,274 | 3,209 | +41% | 0 | 0 | — |
case-07 | fail→pass | 5,106 | 2,977 | -42% | 1 | 1 | 0% | 826 | 3,227 | +291% | 0 | 0 | — |
case-08 | fail→pass | 6,847 | 2,565 | -63% | 1 | 1 | 0% | 1,092 | 3,191 | +192% | 0 | 0 | — |
case-09 | fail→pass | 5,865 | 2,302 | -61% | 1 | 1 | 0% | 961 | 3,072 | +220% | 0 | 0 | — |
case-10 | fail→pass | 7,207 | 4,499 | -38% | 1 | 1 | 0% | 1,148 | 3,475 | +203% | 0 | 0 | — |
case-11 | fail→pass | 13,591 | 4,478 | -67% | 1 | 1 | 0% | 2,203 | 3,489 | +58% | 0 | 0 | — |
case-12 | fail→pass | 8,602 | 5,325 | -38% | 1 | 1 | 0% | 1,378 | 3,649 | +165% | 0 | 0 | — |
case-13 | fail→pass | 12,892 | 4,848 | -62% | 1 | 1 | 0% | 2,075 | 3,567 | +72% | 0 | 0 | — |
case-14 | fail→pass | 10,867 | 2,268 | -79% | 1 | 1 | 0% | 1,692 | 3,102 | +83% | 0 | 0 | — |
case-15 | fail→pass | 10,687 | 2,390 | -78% | 1 | 1 | 0% | 1,772 | 3,075 | +74% | 0 | 0 | — |
case-16 | fail→pass | 11,976 | 3,928 | -67% | 1 | 1 | 0% | 1,915 | 3,197 | +67% | 0 | 0 | — |
case-18 | fail→pass | 3,930 | 9,707 | +147% | 1 | 1 | 0% | 669 | 3,789 | +466% | 0 | 0 | — |
case-19 | fail→pass | 7,368 | 4,614 | -37% | 1 | 1 | 0% | 1,104 | 3,681 | +233% | 0 | 0 | — |
case-20 | fail→pass | 7,839 | 1,977 | -75% | 1 | 1 | 0% | 1,219 | 3,042 | +150% | 0 | 0 | — |
case-21 | fail→pass | 10,462 | 5,531 | -47% | 1 | 1 | 0% | 1,675 | 3,560 | +113% | 0 | 0 | — |
case-22 | fail→pass | 2,823 | 3,223 | +14% | 1 | 1 | 0% | 371 | 3,272 | +782% | 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. 22 cases were attempted, and 17 counted toward the lift figure. The other 5 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 +64 percentage points is the difference between those two pass rates over the 17 comparable cases. 3 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.