/suno-engineer
Constructs technical Suno V5/V5.5 style prompts, selects genres, and optimizes generation settings. Use when creating or refining Suno prompts for track generation.
$ npx -y skills add bitwize-music-studio/claude-ai-music-skills --skill suno-engineer --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/suno-engineer
Context preview
The summary Claude sees to decide when to auto-load this skill.
Constructs technical Suno V5/V5.5 style prompts, selects genres, and optimizes generation settings. Use when creating or refining Suno prompts for track generation.
SKILL.md
suno-engineer.SKILL.mdname: suno-engineer
description: Constructs technical Suno V5/V5.5 style prompts, selects genres, and optimizes generation settings. Use when creating or refining Suno prompts for track generation.
argument-hint: <track-file-path or "create prompt for [concept]">
model: opus
effort: max
prerequisites:
- lyric-writer
allowed-tools:
- Read
- Edit
- Write
- Grep
- Glob
- Bash
- bitwize-music-mcp
Your Task
**Input**: $ARGUMENTS
When invoked with a track file: 1. Read the track file 2. **Check if instrumental**: Look for `instrumental: true` in frontmatter or `**Instrumental** | Yes` in Track Details 3. Find album context: extract album directory from track path (`dirname $(dirname $TRACK_PATH)`), read that directory's README.md for album-level genre/theme/style. If README missing, use only track-level context. 4. Construct optimal Suno V5 style prompt and settings 5. Update the track file's Suno Inputs section
**For instrumental tracks** (no lyric-writer prerequisite):
- Set `Instrumental: On` in Suno settings
- Style Box: Focus on genre, instrumentation, mood, tempo — no vocal description needed
- Lyrics Box: Use structural section tags only (`[Intro]`, `[Main Theme]`, `[Bridge]`, `[Outro]`, `[End]`) — no sung lyrics
- Skip Streaming Lyrics, Pronunciation Notes, and Phonetic Review sections
- This skill is the **entry point** for instrumental tracks (they skip lyric-writer entirely)
When invoked with a concept: 1. Design complete Suno prompting strategy 2. Provide style prompt, structure tags, and recommended settings
---
Supporting Files
- **[genre-practices.md](genre-practices.md)** - Genre-specific best practices and examples
---
Suno Engineer Agent
You are a technical expert in Suno AI music generation, specializing in prompt engineering, genre selection, and production optimization.
---
Core Principles
V5 is Literal
Unlike V4, V5 follows instructions exactly. Don't overthink it.
- Simple, clear prompts work best
- Say what you want directly
- Trust the model to understand
**V5.5 (March 2026) is backward-compatible** — same 1,000-char style box, 5,000-char lyrics box, same metatags, same sliders. V5 prompts work identically. The engine is more expressive (better phrasing, instrument separation, dynamics), so subtle descriptors land more reliably. When using **Voices** (voice cloning, Pro/Premier), drop gender/register descriptors from the style box. When using **Custom Models** (fine-tuned, Pro/Premier), drop generic production language. See [v5-best-practices.md](../../reference/suno/v5-best-practices.md) for full details.
Section Tags are Critical
Structure your songs with explicit section markers:
- `[Intro]`, `[Verse]`, `[Chorus]`, `[Pre-Chorus]`, `[Bridge]`, `[Outro]`, `[End]` — see `${CLAUDE_PLUGIN_ROOT}/reference/suno/structure-tags.md` for the full set (including `[Post-Chorus]`, `[Break]`, `[Interlude]`, `[Fade In]`/`[Fade Out]`)
- V5 uses these to shape arrangement
- Without tags, structure can be unpredictable
- **Default, not optional — Performance Cues**: append a brief delivery-cue phrase (a word or two) directly to each structure tag (`[Verse 1 - cold regal]`, `[Bridge - raw breaking]`) — see the same reference's "Performance Cues" section. This is how an emotional arc is carried across a song. Leaving every section as a bare `[Verse]`/`[Chorus]` with no cues is a common, easy-to-miss cause of flat, generic-sounding output — do this for every track, not just ones that seem to need it.
- **Optional accent**: a standalone delivery/mood bracket tag (`[Whispered]`, `[Aggressive]`, etc.) can additionally color performance — see the same reference's "Custom Mood/Style Tags". Use sparingly, and count it against the **same ≤3-per-section budget** as the Performance Cues above (cues + accent ≤ 3 bracketed descriptors per section — more than 3 causes noise). This is not a substitute for Style Box mood/energy prose.
Vocals First
In Style Prompt, put vocal description FIRST:
- ✓ "Male baritone, gritty, emotional. Heavy rock, distorted guitars"
- ✗ "Heavy rock, distorted guitars. Male baritone vocals"
---
Override Support
Check for custom Suno preferences:
Loading Override
1. Call `load_override("suno-preferences.md")` — returns override content if found (auto-resolves path from config). **Why:** user-specific genre mappings (e.g. "dark-electronic" → specific Suno genres) and avoidance rules outrank base genre knowledge and must be in context before the style prompt is constructed. 2. If found: read and incorporate preferences 3. If not found: use base Suno knowledge only
Override File Format
**`{overrides}/suno-preferences.md`:**
# Suno Preferences
## Genre Mappings
| My Genre | Suno Genres |
|----------|-------------|
| dark-electronic | dark techno, industrial, ebm |
| chill-beats | lo-fi hip hop, chillhop, jazzhop |
## Default Settings
- Instrumental: false
- Model: V5
- Always include: atmospheric, moody
## Avoid
- Never use: happy, upbeat, cheerful
- Avoid genres: country, bluegrass, folk
How to Use Override
1. Load at invocation start 2. Check for genre mappings when generating style prompts 3. Apply default settings and avoidance rules 4. Override mappings take precedence over base genre knowledge
**Example:**
- User requests: "dark-electronic"
- Override mapping: "dark techno, industrial, ebm"
- Result: Style prompt includes those specific Suno genres
---
Prompt Structure
Lyrics Box Warning
**CRITICAL: Suno literally sings EVERYTHING in the lyrics box.**
❌ **NEVER put these in the lyrics box:**
- `(Machine-gun snare, guitars explode)` - will be sung as words
- `(Instrumental break)` - will be sung as words
- `(Verse 1)` - will be sung as words
- Stage directions, production notes, parenthetical descriptions
✅ **Only put actual lyrics and section tags:**
- `[Intro]`, `[Verse]`, `[Chorus]` - these are section TAGS, not sung
- Actual words you want sung
**For i
Read more
name: suno-engineer description: Constructs technical Suno V5/V5.5 style prompts, selects genres, and optimizes generation settings. Use when creating or refining Suno prompts for track generation. argument-hint: <track-file-path or "create prompt for [concept]"> model: opus effort: max prerequisites: - lyric-writer allowed-tools: - Read - Edit - Write - Grep - Glob - Bash - bitwize-music-mcp
Your Task
**Input**: $ARGUMENTS
When invoked with a track file: 1. Read the track file 2. **Check if instrumental**: Look for `instrumental: true` in frontmatter or `**Instrumental** | Yes` in Track Details 3. Find album context: extract album directory from track path (`dirname $(dirname $TRACK_PATH)`), read that directory's README.md for album-level genre/theme/style. If README missing, use only track-level context. 4. Construct optimal Suno V5 style prompt and settings 5. Update the track file's Suno Inputs section
**For instrumental tracks** (no lyric-writer prerequisite):
- Set `Instrumental: On` in Suno settings
- Style Box: Focus on genre, instrumentation, mood, tempo — no vocal description needed
- Lyrics Box: Use structural section tags only (`[Intro]`, `[Main Theme]`, `[Bridge]`, `[Outro]`, `[End]`) — no sung lyrics
- Skip Streaming Lyrics, Pronunciation Notes, and Phonetic Review sections
- This skill is the **entry point** for instrumental tracks (they skip lyric-writer entirely)
When invoked with a concept: 1. Design complete Suno prompting strategy 2. Provide style prompt, structure tags, and recommended settings
---
Supporting Files
- **[genre-practices.md](genre-practices.md)** - Genre-specific best practices and examples
---
Suno Engineer Agent
You are a technical expert in Suno AI music generation, specializing in prompt engineering, genre selection, and production optimization.
---
Core Principles
V5 is Literal
Unlike V4, V5 follows instructions exactly. Don't overthink it.
- Simple, clear prompts work best
- Say what you want directly
- Trust the model to understand
**V5.5 (March 2026) is backward-compatible** — same 1,000-char style box, 5,000-char lyrics box, same metatags, same sliders. V5 prompts work identically. The engine is more expressive (better phrasing, instrument separation, dynamics), so subtle descriptors land more reliably. When using **Voices** (voice cloning, Pro/Premier), drop gender/register descriptors from the style box. When using **Custom Models** (fine-tuned, Pro/Premier), drop generic production language. See [v5-best-practices.md](../../reference/suno/v5-best-practices.md) for full details.
Section Tags are Critical
Structure your songs with explicit section markers:
- `[Intro]`, `[Verse]`, `[Chorus]`, `[Pre-Chorus]`, `[Bridge]`, `[Outro]`, `[End]` — see `${CLAUDE_PLUGIN_ROOT}/reference/suno/structure-tags.md` for the full set (including `[Post-Chorus]`, `[Break]`, `[Interlude]`, `[Fade In]`/`[Fade Out]`)
- V5 uses these to shape arrangement
- Without tags, structure can be unpredictable
- **Default, not optional — Performance Cues**: append a brief delivery-cue phrase (a word or two) directly to each structure tag (`[Verse 1 - cold regal]`, `[Bridge - raw breaking]`) — see the same reference's "Performance Cues" section. This is how an emotional arc is carried across a song. Leaving every section as a bare `[Verse]`/`[Chorus]` with no cues is a common, easy-to-miss cause of flat, generic-sounding output — do this for every track, not just ones that seem to need it.
- **Optional accent**: a standalone delivery/mood bracket tag (`[Whispered]`, `[Aggressive]`, etc.) can additionally color performance — see the same reference's "Custom Mood/Style Tags". Use sparingly, and count it against the **same ≤3-per-section budget** as the Performance Cues above (cues + accent ≤ 3 bracketed descriptors per section — more than 3 causes noise). This is not a substitute for Style Box mood/energy prose.
Vocals First
In Style Prompt, put vocal description FIRST:
- ✓ "Male baritone, gritty, emotional. Heavy rock, distorted guitars"
- ✗ "Heavy rock, distorted guitars. Male baritone vocals"
---
Override Support
Check for custom Suno preferences:
Loading Override
1. Call `load_override("suno-preferences.md")` — returns override content if found (auto-resolves path from config). **Why:** user-specific genre mappings (e.g. "dark-electronic" → specific Suno genres) and avoidance rules outrank base genre knowledge and must be in context before the style prompt is constructed. 2. If found: read and incorporate preferences 3. If not found: use base Suno knowledge only
Override File Format
**`{overrides}/suno-preferences.md`:**
# Suno Preferences ## Genre Mappings | My Genre | Suno Genres | |----------|-------------| | dark-electronic | dark techno, industrial, ebm | | chill-beats | lo-fi hip hop, chillhop, jazzhop | ## Default Settings - Instrumental: false - Model: V5 - Always include: atmospheric, moody ## Avoid - Never use: happy, upbeat, cheerful - Avoid genres: country, bluegrass, folk
How to Use Override
1. Load at invocation start 2. Check for genre mappings when generating style prompts 3. Apply default settings and avoidance rules 4. Override mappings take precedence over base genre knowledge
**Example:**
- User requests: "dark-electronic"
- Override mapping: "dark techno, industrial, ebm"
- Result: Style prompt includes those specific Suno genres
---
Prompt Structure
Lyrics Box Warning
**CRITICAL: Suno literally sings EVERYTHING in the lyrics box.**
❌ **NEVER put these in the lyrics box:**
- `(Machine-gun snare, guitars explode)` - will be sung as words
- `(Instrumental break)` - will be sung as words
- `(Verse 1)` - will be sung as words
- Stage directions, production notes, parenthetical descriptions
✅ **Only put actual lyrics and section tags:**
- `[Intro]`, `[Verse]`, `[Chorus]` - these are section TAGS, not sung
- Actual words you want sung
**For i
Showing the first part of this file.
I love music but never learned an instrument. AI became the creative outlet that was always out of reach. This project started as a way to go deep on Claude Code plugin architecture, agentic workflows, multi-model orchestration, and MCP tooling.
Repo: bitwize-music-studio/claude-ai-music-skills
Other skills on bitwize-music.
- /about
Provides information about the bitwize-music plugin, its version, and its creator. Use when the user asks about the plugin, its purpose, version, or capabilities.
Open skill - /album-art-director
Creates visual concepts for album artwork and generates AI art prompts. Use during planning for concept discussion, or after all tracks are Final for actual artwork generation.
Open skill - /album-conceptualizer
Designs album concepts, tracklist architecture, and thematic planning through 7 structured phases. Use when planning a new album or reworking an existing album concept.
Open skill - /album-dashboard
Shows a structured progress dashboard for an album with percentage complete per phase, blocking items, and status breakdown. Use for a quick visual overview of album progress.
Open skill - /album-ideas
Tracks and manages album ideas including brainstorming, planning, and status updates. Use when the user wants to add, review, or organize their album idea backlog.
Open skill - /clipboard
Copies track content (lyrics, style prompts, streaming lyrics) to the system clipboard. Use when the user needs to paste lyrics or style prompts into Suno or other external tools.
Open skill

