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…
Creates a new album with the correct directory structure and templates. Use IMMEDIATELY when the user says 'make a new album' or similar, before any discussion.
$ npx -y skills add bitwize-music-studio/claude-ai-music-skills --skill new-album --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/new-albumContext preview
The summary Claude sees to decide when to auto-load this skill.
Creates a new album with the correct directory structure and templates. Use IMMEDIATELY when the user says 'make a new album' or similar, before any discussion.
name: new-album description: Creates a new album with the correct directory structure and templates. Use IMMEDIATELY when the user says 'make a new album' or similar, before any discussion. argument-hint: <album-name> <genre> model: haiku allowed-tools: - Read - Bash - Write - bitwize-music-mcp
**Input**: $ARGUMENTS
Create a new album directory structure with all required files and templates.
---
You create the complete album directory structure based on config.
Expected formats:
Examples:
Valid genres: Any genre that has a directory under `${CLAUDE_PLUGIN_ROOT}/genres/`. Use the slug form (lowercase, hyphenated) — e.g. `deep-house`, `crust-punk`, `k-pop`, `hip-hop`.
To check if a genre is valid, verify `${CLAUDE_PLUGIN_ROOT}/genres/{genre}/README.md` exists.
**Parsing logic:** 1. If 3 arguments and second is `documentary`: album = arg1, genre = arg3, documentary = true 2. If 2 arguments: album = arg1, genre = arg2, documentary = false 3. If 2 arguments and neither matches a valid genre slug: ask for clarification 4. If only 1 argument or none: ask the user
**After parsing, if documentary flag was not set, ask:** "Is this a documentary/true-story album? (This adds research and sources templates.)"
If arguments are missing, ask:
Usage: /new-album <album-name> <genre>
/new-album <album-name> documentary <genre>
Example: /new-album sample-album electronic
/new-album the-heist documentary hip-hop
/new-album night-drive deep-house
Genre must match a directory under genres/ (use slug form: deep-house, crust-punk, etc.)Call `create_album_structure(album_slug, genre, documentary)` — creates the complete directory structure with templates in one call.
**Note**: Audio and documents directories are NOT created (those are created when needed by import-audio/import-art).
Report:
Created album: {album-name}
Location: {album_path}
Files created:
- README.md (album template)
- tracks/ (empty, ready for track files)
- promo/ (social media copy templates)
Next steps:
Option 1 - Interactive (Recommended):
Run /bitwize-music:album-conceptualizer to design your album concept
through the 7 Planning Phases.
Option 2 - Manual:
1. Edit README.md with your album concept
2. Create tracks with /import-track or manually in tracks/
Tip: For OST/soundtrack albums with a mix of vocal and instrumental
tracks, the album-conceptualizer will ask about the vocal/instrumental
split per track. Set `instrumental: true` in track frontmatter for
instrumental tracks — they skip the lyrics workflow and go directly
to /bitwize-music:suno-engineer.**Config file missing:**
Error: Config not found at ~/.bitwize-music/config.yaml Run /configure to set up.
**Invalid genre:**
Error: Invalid genre "{genre}"
No genre directory found at genres/{genre}/. Use a valid genre slug (e.g. hip-hop, deep-house, grindcore).
Check genres/INDEX.md for the full list.**Album already exists (any genre — slugs are globally unique):**
Error: Album slug '{album-name}' already exists under genre '{existing-genre}': {existing_path}
Album slugs are unique across all genres — choose a different name, or
rename the existing album with /bitwize-music:rename.**Templates not found:**
Error: Templates not found. Is the plugin installed correctly?
Expected at: ${CLAUDE_PLUGIN_ROOT}/templates/---
/new-album sample-album electronic
Config has:
paths: content_root: ~/bitwize-music artist: name: bitwize
Result:
Created album: sample-album
Location: ~/bitwize-music/artists/bitwize/albums/electronic/sample-album/
Files created:
- README.md (album template)
- tracks/ (empty, ready for track files)
Next steps:
Option 1 - Interactive (Recommended):
Run /bitwize-music:album-conceptualizer to design your album concept
through the 7 Planning Phases.
Option 2 - Manual:
1. Edit README.md with your album concept
2. Create tracks with /import-track or manually in tracks/---
If user mentions this is a documentary or true-story album:
/new-album the-heist documentary hip-hop
The `create_album_structure(album_slug, genre, documentary=true)` call automatically creates RESEARCH.md and SOURCES.md from templates.
Report:
Created album: the-heist (documentary) Location: ~/bitwize-music/artists/bitwize/albums/hip-hop/the-heist/ Files created: - README.md (album template) - RESEARCH.md (research template) - SOURCES.md (sources template) - tracks/ (empty, ready for track files)
---
**Wrong:**
# Manual mkdir, config reading, template copying cat ~/.bitwize-music/config.yaml mkdir -p ~/music-projects/artists/bitwize/albums/... cp templates/album.md ...
**Right:**
# Single MCP call handles everything create_album_structure(album_slug, genre, documentary)
The MCP tool reads config, resolves paths, creates directories, and copies templates automatically.
Any genre with a directory under
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
Provides information about the bitwize-music plugin, its version, and its creator. Use when the user asks about the plugin, its purpose, version, or…
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…
Designs album concepts, tracklist architecture, and thematic planning through 7 structured phases. Use when planning a new album or reworking an existing album…
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…
Tracks and manages album ideas including brainstorming, planning, and status updates. Use when the user wants to add, review, or organize their album idea…
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…