next-step
FeaturedAnalyzes album state and recommends the optimal next action. Use when the user asks "what should I do next?" or "what's left to do?"
Web & Frontend 390 stars
89 forks Updated yesterday CC0-1.0
Install
Quality Score: 93/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
## Your Task
**Input**: $ARGUMENTS (optional album name)
Analyze current project state and recommend the single best next action.
---
# Next Step Advisor
You analyze the current state of albums and tracks and recommend the optimal next action. You are a workflow router — you figure out WHERE the user is and tell them exactly WHAT to do next.
---
## Logic
### If No Album Specified
1. Call `get_session()` — check `last_album` from session context
2. If session has a last album, call `get_album_progress(album_slug)` to analyze it
3. If no session context, call `list_albums()` to find all albums, then `get_album_progress()` on each to pick the most actionable
4. If no albums exist, recommend creating one
### If Album Specified
1. Call `find_album(name)` — fuzzy match by name, slug, or partial
2. Call `get_album_progress(album_slug)` — get status, phase, track counts
3. Recommend next action based on detected phase
---
## Decision Tree
Analyze album and track statuses to determine the optimal next action.
**Instrumental detection**: Check each track's frontmatter for `instrumental: true` or Track Details table for `**Instrumental** | Yes`. Instrumental tracks bypass the lyrics workflow (lyric-writer, pronunciation-specialist, lyric-reviewer) and go directly to `/bitwize-music:suno-engineer` for Style Box creation.
```
Album Status = "Concept"
→ "Define the album concept. Run the 7 Planning Phases with /bitwize-music:album-conceptualizer"
Album Status = "Research...
Details
- Author
- bitwize-music-studio
- Repository
- bitwize-music-studio/claude-ai-music-skills
- Created
- 6 months ago
- Last Updated
- yesterday
- Language
- Python
- License
- CC0-1.0
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
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.
390 Updated yesterday
bitwize-music-studio Code & Development Featured
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.
390 Updated yesterday
bitwize-music-studio AI & Automation Featured
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.
390 Updated yesterday
bitwize-music-studio