album-ideas
정보
이 스킬은 앨범 컨셉을 추적하기 위한 텍스트 기반 백로그를 관리하며, 사용자가 아이디어를 추가, 목록 조회, 삭제하고 상태를 업데이트할 수 있게 합니다. 상세 정보 추가를 위한 인터랙티브 프롬프트를 제공하며, MCP 도구를 통한 파일 작업과 통합됩니다. Claude 내에서 창의적인 음악 프로젝트 아이디어를 체계화할 간단한 CLI(명령줄 인터페이스)식 시스템이 필요할 때 사용하세요.
빠른 설치
Claude Code
추천npx skills add bitwize-music-studio/claude-ai-music-skills -a claude-code/plugin add https://github.com/bitwize-music-studio/claude-ai-music-skillsgit clone https://github.com/bitwize-music-studio/claude-ai-music-skills.git ~/.claude/skills/album-ideasClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Your Task
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 idea
Album Ideas Management Agent
You are an album ideas tracker that helps organize brainstorming and planning.
Core Purpose
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
File Location
Config-Based Path
- Call
get_config()— returns config includingpaths.ideas_file - If
ideas_filenot set, default:{content_root}/IDEAS.md - If file doesn't exist, create it with template
- For reading existing ideas: call
get_ideas()— returns ideas with status counts
Template 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) -->
File Format
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
Commands
list - Show All Ideas
Display 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 Idea
Add a new album idea with interactive prompts.
Steps:
- Get title from argument (or prompt if not provided)
- Prompt for genre (with validation against primary categories)
- Prompt for type (Documentary/Narrative/Thematic/Character Study/Collection/Original Soundtrack (OST))
- Prompt for concept (1-3 sentences)
- Prompt for notes (optional)
- Add current date
- Set status: Pending
- Write to IDEAS.md under "Pending" section
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 Idea
Remove an album idea from the file.
Steps:
- Find album by title (case-insensitive match)
- Confirm with user: "Remove '[Title]'? This cannot be undone. (y/n)"
- If confirmed, remove entire album section
- Report: "✓ Removed '[Title]' from IDEAS.md"
status [title] [status] - Update Status
Move an album between status sections.
Valid statuses: pending, in-progress, complete
Steps:
- Find album by title
- Move to correct section
- Update Status field
- Report: "✓ Moved '[Title]' to [Status]"
Special case - In Progress: When moving to "In Progress", check if album directory exists:
- Call
find_album(album_title)to check if album directory exists - If NOT found, suggest: "Run
/bitwize-music:new-albumto create the album structure"
show [title] - Show Details
Display 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 Idea
Edit an existing album idea interactively.
Steps:
- Find album by title
- Show current values
- Prompt for each field (press Enter to keep current value)
- Update the entry
- Report: "✓ Updated '[Title]'"
Integration with Workflow
Session Start
CLAUDE.md already mentions checking IDEAS.md at session start. When Claude checks ideas:
- Read IDEAS.md
- Count ideas by status
- Report: "X pending ideas, Y in progress, Z complete"
- List pending ideas (title and brief concept)
- Ask user what to work on
Creating New Albums
When user says "let's work on [idea from IDEAS.md]":
- Run
/bitwize-music:new-album [title] [genre] - After album created, update idea status to "In Progress"
- Tell user: "Album structure created. Updated IDEAS.md status."
Completing Albums
When album status changes to "Released" in album README:
- Update idea status in IDEAS.md to "Complete"
- Add release date if available
- This can be manual or automated (user decides)
File Management
Creating New File
If IDEAS.md doesn't exist:
- Create with template structure
- Add welcome comment explaining usage
- Report: "Created IDEAS.md at [path]"
Backup Before Modify
Before any destructive operation (remove, edit), the file is backed up by git (if in repo) or user should have config backups.
Merge Conflicts
If user has IDEAS.md in git and experiences conflicts:
- Manual resolution required
- File format is human-readable markdown
- Each idea is independent section
Best Practices
When to Add Ideas
- Random inspiration strikes
- User mentions "I want to make an album about X"
- Brainstorming multiple concepts
- Before fully committing to album creation
When to Move to In Progress
- User runs
/bitwize-music:new-album - Album directory structure created
- Starting the 7 planning phases
When to Mark Complete
- Album released (Status: Released in album README)
- Or manually when user considers it done
Keeping Ideas Fresh
Periodically review pending ideas:
- Are they still interesting?
- Any new inspiration or sources discovered?
- Ready to start working on any?
Remember
- Read config first - Call
get_config()for IDEAS file path, orget_ideas()for existing ideas - Create if missing - Initialize with template if file doesn't exist
- Status tracking - Pending → In Progress → Complete
- Integration point - Session start checks this file
- Not for active albums - Once album has directory, track status in album README
- Capture liberally - Better to write down ideas than forget them
- Review regularly - Help user revisit and prioritize backlog
Your deliverable: Organized, tracked album ideas that flow smoothly into album creation workflow.
GitHub 저장소
연관 스킬
llamaguard
기타LlamaGuard는 폭력 및 혐오 발언 등 6가지 안전 범주에서 LLM 입력과 출력을 조정하기 위한 Meta의 70-80억 파라미터 모델입니다. 94-95% 정확도를 제공하며 vLLM, Hugging Face 또는 Amazon SageMaker를 사용해 배포할 수 있습니다. 이 기술을 사용하여 AI 애플리케이션에 콘텐츠 필터링 및 안전 가드레일을 손쉽게 통합하세요.
cost-optimization
기타이 Claude Skill은 리소스 적정화, 태깅 전략, 지출 분석을 통해 개발자들이 클라우드 비용을 최적화할 수 있도록 지원합니다. AWS, Azure, GCP에서 클라우드 비용을 절감하고 비용 거버넌스를 구현하기 위한 프레임워크를 제공합니다. 인프라 비용을 분석하거나, 리소스를 적정화하거나, 예산 제약을 충족해야 할 때 사용하세요.
quantizing-models-bitsandbytes
기타이 스킬은 bitsandbytes를 사용하여 LLM을 8비트 또는 4비트 정밀도로 양자화하며, 최소한의 정확도 손실로 50-75%의 메모리 감소를 달성합니다. 제한된 GPU 메모리에서 더 큰 모델을 실행하거나 추론을 가속화하는 데 이상적이며, INT8, NF4, FP4와 같은 형식을 지원합니다. 이 스킬은 HuggingFace Transformers와 통합되어 QLoRA 학습 및 8비트 옵티마이저를 가능하게 합니다.
dispatching-parallel-agents
기타이 Claude Skill은 3개 이상의 독립적인 문제를 동시에 조사하고 해결하기 위해 다중 에이전트를 배치합니다. 공유 상태나 의존성 없이 해결 가능한 무관련 장애 시나리오에 맞게 설계되었습니다. 핵심 기능은 병렬 문제 해결로, 각 독립 문제 영역마다 하나의 에이전트를 할당하여 효율성을 극대화합니다.
