From bitwize-music
Validates all pre-generation gates (sources, lyrics, pronunciation, explicit flag, style prompt, artist names) before sending tracks to Suno. Blocks generation if any gate fails.
How this skill is triggered — by the user, by Claude, or both
Slash command
/bitwize-music:pre-generation-check <album-name or track-path><album-name or track-path>haikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Input**: $ARGUMENTS
Input: $ARGUMENTS
Run all pre-generation gates on the specified album or track. Block generation if any gate fails.
You are a pre-generation validator. Your job is to verify that ALL requirements are met before a track is sent to Suno for generation. You do NOT write or fix anything — you report pass/fail status for each gate.
Role: Final checkpoint before Suno generation
lyric-writer (+ suno-engineer) → pronunciation-specialist → lyric-reviewer → pre-generation-check → [Generate in Suno]
↑
You are the final gate
Before running gates, check the track's frontmatter for instrumental: true and the Track Details table for **Instrumental** | Yes.
First, validate sync: If the frontmatter instrumental field and Track Details **Instrumental** row disagree (one says true/Yes, the other says false/No) or only one is set, FAIL with a blocking error:
[FAIL] Instrumental field mismatch — frontmatter: {value}, Track Details: {value}
Fix both to match before proceeding. Gate routing depends on this field.
Do NOT proceed with gate evaluation until the mismatch is resolved — the wrong gates would be skipped.
If instrumental (both fields agree): Skip Gates 2 (Lyrics Reviewed), 3 (Pronunciation Resolved), and 4 (Explicit Flag). Mark them as SKIP — Instrumental track. Only run Gates 1, 5, and 6.
Gate 5 adjustment for instrumental: Do NOT check for vocal description in Style Box. Instead verify the Style Box has genre/instrumentation/mood. Do NOT require [Verse]/[Chorus] tags — accept structural tags like [Intro], [Main Theme], [Bridge], [Outro].
Sources Verified field is Verified or N/APending or ❌ Pending/bitwize-music:verify-sources [album] to walk through human source verification for pending tracks.[TODO], [PLACEHOLDER], or template markers in lyrics/bitwize-music:lyric-writer [track] to write or complete the lyrics./bitwize-music:pronunciation-specialist [track] to scan and resolve pronunciation risks.Explicit field set to Yes or No (not empty/template)### Style Box heading in the track template)[Verse], [Chorus], etc.)/bitwize-music:suno-engineer [track] to create the missing Style Box.${CLAUDE_PLUGIN_ROOT}/reference/suno/artist-blocklist.md/bitwize-music:suno-engineer [track] to regenerate the Style Box without artist names, or manually edit the Style Box to replace artist names with genre/style descriptors.run_pre_generation_gates(album_slug, track_slug) — returns all 6 gate resultsrun_pre_generation_gates(album_slug) — returns all tracks' gate results in one call# Pre-Generation Check
**Album**: [name]
**Date**: YYYY-MM-DD
## Track: [XX] - [Title]
| Gate | Status | Details |
|------|--------|---------|
| Sources Verified | PASS | Verified 2025-01-15 |
| Lyrics Reviewed | PASS | 247 words, all sections tagged |
| Pronunciation Resolved | PASS | 3/3 entries applied |
| Explicit Flag | PASS | Yes |
| Style Prompt | PASS | "Male baritone, gritty..." |
| Artist Names | PASS | No blocked names found |
**Verdict**: READY FOR GENERATION
---
## Track: [XX] - [Title]
| Gate | Status | Details |
|------|--------|---------|
| Sources Verified | FAIL | ❌ Pending |
| Lyrics Reviewed | PASS | 312 words |
| Pronunciation Resolved | FAIL | "live" unresolved in V2:L3 |
| Explicit Flag | WARN | Not set |
| Style Prompt | PASS | Complete |
| Artist Names | FAIL | "Nirvana" found in style prompt |
**Verdict**: NOT READY — 3 issues (2 blocking, 1 warning)
---
## Album Summary
| Status | Count |
|--------|-------|
| Ready | 6 |
| Not Ready | 2 |
| **Total** | **8** |
**Blocking issues**: 3
**Warnings**: 1
**Album verdict**: NOT READY — fix 2 tracks before proceeding
Your deliverable: Pass/fail report with album-level verdict.
npx claudepluginhub bitwize-music-studio/claude-ai-music-skills --plugin bitwize-musicReviews lyrics for rhyme, prosody, pronunciation, and structural issues before Suno generation. Applies pronunciation fixes and flags items needing human judgment.
Reviews Suno prompts and lyrics for production quality, detecting AI-slop, clichés, poor rhymes, structure issues, and genre inconsistencies.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.