一键导入
rename
Renames an album or track, updating slugs, titles, and all mirrored paths. Use when the user wants to rename an album or track.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Renames an album or track, updating slugs, titles, and all mirrored paths. Use when the user wants to rename an album or track.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Runs automated tests to validate plugin integrity across 14 categories. Use before creating PRs, after making changes to skills or templates, or to verify plugin health.
Shows available skills, common workflows, and quick reference for the plugin. Use when the user asks for help, what skills are available, or how to do something.
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.
Create new genre documentation files for the bitwize-music genre library. Use when the user wants to add a genre, says "/genre-creator", "neues Genre erstellen", "Genre hinzufuegen", "add genre", or asks to create genre documentation. Takes a genre name as argument.
Polishes raw Suno audio by processing per-stem WAVs (vocals, backing_vocals, drums, bass, guitar, keyboard, strings, brass, woodwinds, percussion, synth, other) with targeted cleanup, EQ, and compression, then remixing into a polished stereo WAV ready for mastering. Use after audio import and before mastering.
Validates all pre-generation gates before sending tracks to Suno. Checks sources verified, lyrics reviewed, pronunciation resolved, explicit flag set, style prompt complete, and artist names cleared. Use before generating tracks on Suno or when the user says "pre-gen check" or "ready to generate".
| name | rename |
| description | Renames an album or track, updating slugs, titles, and all mirrored paths. Use when the user wants to rename an album or track. |
| argument-hint | <album|track> <current-name> <new-name> |
| model | haiku |
| allowed-tools | ["Read","Bash","bitwize-music-mcp"] |
Input: $ARGUMENTS
Rename an album or track using the MCP rename tools.
You rename albums or tracks, updating slugs, display titles, and all mirrored directory paths (content, audio, documents).
Expected format: <type> <current-name> <new-name>
Examples:
album old-album-name new-album-nametrack my-album 01-old-track 01-new-trackIf arguments are missing or unclear, show usage:
Usage:
/rename album <current-slug> <new-slug>
/rename track <album-slug> <current-track-slug> <new-track-slug>
Examples:
/rename album my-old-album my-new-album
/rename track my-album 01-old-name 01-new-name
Call get_config() to verify configuration is loaded. The MCP rename tools resolve paths internally, but config must be valid.
Before renaming, confirm the action:
For albums:
Rename album 'old-name' -> 'new-name'?
This will:
- Move content directory
- Move audio directory (if exists)
- Move documents directory (if exists)
- Update README.md title
- Update state cache
For tracks:
Rename track 'old-name' -> 'new-name' in album 'album-name'?
This will:
- Rename track file
- Update title in metadata table
- Update state cache
Note: Audio files are NOT renamed (they have Suno-generated names).
Wait for user confirmation before proceeding.
For albums: Use the rename_album MCP tool with:
old_slug: Current album slugnew_slug: New album slugnew_title: (optional) Custom display titleFor tracks: Use the rename_track MCP tool with:
album_slug: Album containing the trackold_track_slug: Current track slugnew_track_slug: New track slugnew_title: (optional) Custom display titleSuccess:
Renamed album 'old-name' -> 'new-name'
Content directory: moved
Audio directory: moved (or: no audio directory found)
Documents directory: moved (or: no documents directory found)
Tracks updated: N
For tracks:
Renamed track 'old-name' -> 'new-name' in album 'album-name'
Old path: /path/to/old-file.md
New path: /path/to/new-file.md
Title updated to: "New Name"
Album/track not found:
Error: Album 'name' not found.
Available albums: album-1, album-2, album-3
New name already exists:
Error: Album 'new-name' already exists.
Choose a different name.
Partial failure (album rename):
Warning: Content directory renamed successfully, but:
- Audio directory rename failed: [error]
- Documents directory rename failed: [error]
The content directory has been moved. Use rebuild_state to refresh the cache,
then manually move any remaining directories.