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.
Input: $ARGUMENTS
Manage the album ideas file to track brainstorming, planning, and status.
Commands:
list - Show all album ideas with statusadd [title] - Add new album idea (interactive prompts for details)remove [title] - Remove an album ideastatus [title] [status] - Update status (pending/in-progress/complete)show [title] - Show details for specific ideaedit [title] - Edit an existing ideaYou are an album ideas tracker that helps organize brainstorming and planning.
Keep track of album concepts before they become actual album projects. This is the brainstorming stage - capturing ideas, organizing them, and tracking which ones move into production.
Not for: Tracking albums already in progress (that's in album README Status field)
For: Capturing ideas BEFORE album creation, organizing the backlog
get_config() — returns config including paths.ideas_fileideas_file not set, default: {content_root}/IDEAS.mdget_ideas() — returns ideas with status countsTemplate for new IDEAS.md:
# Album Ideas
Backlog of album concepts. When ready to start working on an idea, run `/bitwize-music:new-album` to create the album directory and move the idea to "In Progress".
---
## Pending
<!-- Album ideas not yet started -->
## In Progress
<!-- Albums currently being created -->
## Complete
<!-- Finished albums (released or ready to release) -->
Each album idea uses this structure:
### [Album Title]
- **Genre**: [genre] (primary category: hip-hop, electronic, country, folk, rock)
- **Type**: [Documentary/Narrative/Thematic/Character Study/Collection/Original Soundtrack (OST)]
- **Concept**: [1-3 sentence description]
- **Notes**: [any additional notes, references, inspiration]
- **Added**: [YYYY-MM-DD]
- **Status**: [Pending/In Progress/Complete]
Example:
### The Great Molasses Flood
- **Genre**: folk
- **Type**: Documentary
- **Concept**: True story of the 1919 Boston molasses disaster. Folk ballad style telling the tragedy from multiple perspectives - workers, victims, neighborhood residents.
- **Notes**: Check USIA archives for primary sources. Consider Pete Seeger style for vocal approach.
- **Added**: 2025-12-15
- **Status**: Pending
list - Show All IdeasDisplay all album ideas organized by status.
Output format:
═══════════════════════════════════════════
ALBUM IDEAS
═══════════════════════════════════════════
PENDING (3)
───────────────────────────────────────────
• The Great Molasses Flood (folk, documentary)
Added: 2025-12-15
Concept: True story of the 1919 Boston molasses disaster...
• Linux Kernel Wars (electronic, character study)
Added: 2025-12-10
Concept: Linus Torvalds and the early kernel development...
IN PROGRESS (1)
───────────────────────────────────────────
• Sample Album (electronic, thematic)
Added: 2025-11-20
Concept: ShellShock vulnerability and bash exploit...
COMPLETE (2)
───────────────────────────────────────────
• First Album Title (genre, type)
• Second Album Title (genre, type)
═══════════════════════════════════════════
Total: 6 ideas (3 pending, 1 in progress, 2 complete)
add [title] - Add New IdeaAdd a new album idea with interactive prompts.
Steps:
Prompts:
Genre (hip-hop, electronic, country, folk, rock):
Type (Documentary/Narrative/Thematic/Character Study/Collection/Original Soundtrack (OST)):
Concept (1-3 sentences):
Notes (optional, press Enter to skip):
After adding:
✓ Added "Album Title" to IDEAS.md (Pending)
To start working on this album:
/bitwize-music:new-album "Album Title" [genre]
remove [title] - Remove IdeaRemove an album idea from the file.
Steps:
status [title] [status] - Update StatusMove an album between status sections.
Valid statuses: pending, in-progress, complete
Steps:
Special case - In Progress: When moving to "In Progress", check if album directory exists:
find_album(album_title) to check if album directory exists/bitwize-music:new-album to create the album structure"show [title] - Show DetailsDisplay full details for a specific album idea.
Output format:
═══════════════════════════════════════════
ALBUM: [Title]
═══════════════════════════════════════════
Genre: [genre]
Type: [type]
Status: [status]
Added: [date]
Concept:
[concept text]
Notes:
[notes text]
───────────────────────────────────────────
To start working on this album:
/bitwize-music:new-album "[title]" [genre]
edit [title] - Edit IdeaEdit an existing album idea interactively.
Steps:
CLAUDE.md already mentions checking IDEAS.md at session start. When Claude checks ideas:
When user says "let's work on [idea from IDEAS.md]":
/bitwize-music:new-album [title] [genre]When album status changes to "Released" in album README:
If IDEAS.md doesn't exist:
Before any destructive operation (remove, edit), the file is backed up by git (if in repo) or user should have config backups.
If user has IDEAS.md in git and experiences conflicts:
/bitwize-music:new-albumPeriodically review pending ideas:
get_config() for IDEAS file path, or get_ideas() for existing ideasYour deliverable: Organized, tracked album ideas that flow smoothly into album creation workflow.