Human + AI music production workflow for Suno - skills, templates, and tools
# Add to your Claude Code skills
git clone https://github.com/bitwize-music-studio/claude-ai-music-skillsGuides for using ide extensions skills like claude-ai-music-skills.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T15:33:24.794Z",
"npmAuditRan": true,
"pipAuditRan": false
}claude-ai-music-skills is an open-source ide extensions skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by bitwize-music-studio. Human + AI music production workflow for Suno - skills, templates, and tools. It has 466 GitHub stars.
Yes. claude-ai-music-skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/bitwize-music-studio/claude-ai-music-skills" and add it to your Claude Code skills directory (see the Installation section above).
claude-ai-music-skills is primarily written in Python. It is open-source under bitwize-music-studio on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other IDE Extensions skills you can browse and compare side by side. Open the IDE Extensions category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-ai-music-skills against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
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. Music was the domain because it was personal.
What it actually does: a Claude Code plugin that turns a conversation into a full album production pipeline. You describe what you want to make, and it handles concept development, lyrics, Suno prompts (an AI music generation platform), audio mastering, and release prep — with quality gates and source verification at every stage.
Questions? See the FAQ.
[!NOTE] Active development happens on the
developbranch —mainonly receives tested, stable releases. If you run into issues, open an issue or submit a PR.
You: "Let's make an album about the 2016 Bangladesh Bank heist"
Claude: Creates album structure, runs 7-phase concept planning
You: "Start the research"
Claude: Dispatches legal, financial, and security researchers in parallel
Gathers DOJ filings, SWIFT documentation, malware analysis
Cross-verifies sources, flags claims that need human review
You: "Sources look good. Let's write track 1"
Claude: Drafts lyrics, checks prosody and rhyme schemes
Scans for pronunciation risks, suggests phonetic fixes
Builds Suno V5 style prompt with genre tags and vocal direction
You: "Track sounds great, here are the stems"
Claude: Imports stems from Suno, polishes per-stem
Masters to -14 LUFS for streaming
Generates promo video and social media copy
Concept to released album. You generate on Suno, everything else happens in the terminal.
/plugin marketplace add bitwize-music-studio/claude-ai-music-skills
/plugin install bitwize-music@bitwize-music
Then run /bitwize-music:setup to detect your environment and install dependencies. Run /bitwize-music:configure to set your artist name and workspace paths.
Platform: macOS, Linux, WSL2, and native Windows are all fully supported. The full test suite runs on windows-latest in CI (plus dedicated Windows legs for the MCP boot check and MuseScore PDF export) — the MCP server, state cache, non-audio workflow, and the ffmpeg audio pipeline all run natively there. Promo video works on Windows too, though it's verified by hand rather than continuously guarded (its tests mock ffmpeg). Sheet music works natively too: MuseScore PDF export is CI-verified on windows-latest, and AnthemScore transcription runs against a licensed install (its free trial exposes no CLI on any OS, so that caveat isn't Windows-specific). Python 3.11+ for the MCP server and audio tools. See the compatibility matrix for the per-feature breakdown.
This is where the engineering lives. The plugin is a case study in how far you can push Claude Code's plugin system.
Each skill is a self-contained markdown file with a YAML frontmatter that declares its model, description, and when it should activate. Skills range from simple clipboard operations to multi-step creative workflows. Claude routes to skills automatically based on context, or you invoke them directly with /bitwize-music:<name>.
The lyric-writer knows prosody rules, rhyme scheme analysis, and Suno's pronunciation quirks. The mastering-engineer knows loudness targets per platform and genre-specific EQ curves. The researcher coordinates parallel sub-agents across 10 domain specializations.
See docs/skills.md for the full reference.
Skills declare which Claude model they need. Creative work that directly impacts music quality runs on Opus. Coordination and reasoning tasks use Sonnet. Mechanical operations (imports, validation, clipboard) run on Haiku.
| Tier | Model | Skills | Rationale |
|---|---|---|---|
| Creative | Opus 4.8 | 7 | Lyrics, Suno prompts, album concepts, legal/verification research — output quality defines the music |
| Reasoning | Sonnet 4.6 | 30 | Research coordination, pronunciation analysis, most workflows |
| Mechanical | Haiku 4.5 | 16 | Imports, validation, clipboard, help — speed over creativity |
This project pushes Claude Code hard — multi-agent research, real-time audio analysis, sub-agent orchestration across model tiers. It works best on the Max subscription. The standard Pro subscription will hit rate limits during multi-track sessions.
See reference/model-strategy.md for per-skill rationale.
A Python MCP server exposes 80+ tools for instant state queries, audio analysis, lyrics processing, and database operations. The server is the plugin's nervous system — skills call MCP tools instead of reading files directly, which keeps responses fast and state consistent.
Key tool categories:
For documentary and true-story albums, the research system coordinates parallel investigation across 10 domain-specific sub-agents. A lead researcher dispatches to specialists (legal, financial, security, government, journalism, etc.), each trained on where to find primary sources in their domain. A verification agent cross-checks all claims before human review.
The full pipeline: gather sources, verify citations, require human sign-off, then — and only then — allow lyrics generation. Every claim in the music traces back to a captured, verified source.
Nothing ships without passing gates:
72 genre directories with production guides, mastering presets, artist deep-dives, and Suno-specific tips. From afrobeats to vaporwave, each genre includes subgenre breakdowns, lyric conventions, and reference artists.
6 GitHub Actions workflows: tests (4,412 across ubuntu/macOS/Windows, plus lint, security scanning with bandit + pip-audit, and static validation), real-service integration (Postgres, SeaweedFS/S3, MuseScore), nightly deep tests, auto-release from changelog, PR target enforcement, and version sync. Dependabot watches pip and Actions versions weekly.
Coverage is measured on all three OSes and gated on the combined total, not one platform's view. That matters because every sys.platform == "win32" branch is unreachable on Linux — measuring only there made the platform-specific code invisible to the gate, which is exactly where this project's real bugs have lived. The merge is asserted rather than assumed: a mis-specified path mapping makes coverage combine report the Linux-only number while looking like success, so the job fails unless a known win32-only line is genuinely covered.
skills/ 53 skill definitions (markdown + YAML frontmatter)
servers/ MCP server (Python, 80+ tools)
tools/ Audio mastering, promo videos, sheet music, cloud uploads
reference/ 46+ docs — Suno guides, mastering workflows, genre references
genres/ 72 genre directories with production guides
templates/ Album, track, artist, research templates
tests/ 4,412 tests across 14 categories
config/ Example config and setup docs
| Topic | Location |
|---|---|
| All 53 skills | docs/skills.md |
| Configuration | docs/configuration.md |
| Troubleshooting | docs/troubleshooting.md |
| Changelog | CHANGELOG.md |
| Contributing | CONTRIBUTING.md |
| Model strategy | reference/model-strategy.md |
| Skill decision tree | reference/SKILL_INDEX.md |
| Suno V5 best practices | reference/suno/v5-best-practices.md |
| The story behind bitwize-music | bitwizemusic.com/behind-the-music |
<img src="https://images.weserv.nl/?url=github.com/DaveMatNa