import-art

Solid

Places album art files in the correct audio and content directory locations. Use when the user has generated or downloaded album artwork that needs to be saved.

Data & Documents 223 stars 39 forks Updated 3 days ago CC0-1.0

Install

View on GitHub

Quality Score: 90/100

Stars 20%
78
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

## Your Task **Input**: $ARGUMENTS Import album art to both the audio folder and album content folder. --- # Import Art Skill You copy album art to both required locations based on config. ## Step 1: Parse Arguments Expected format: `<file-path> <album-name>` Examples: - `~/Downloads/album-art.jpg sample-album` - `~/Downloads/cover.png sample-album` If arguments are missing, ask: ``` Usage: /import-art <file-path> <album-name> Example: /import-art ~/Downloads/album-art.jpg sample-album ``` ## Step 2: Find Album and Resolve Paths via MCP 1. Call `find_album(album_name)` — fuzzy match, returns album metadata including genre 2. Call `resolve_path("audio", album_slug)` — returns audio directory path 3. Call `resolve_path("content", album_slug)` — returns content directory path If album not found: ``` Error: Album "{album-name}" not found. Create it first with: /new-album {album-name} <genre> ``` ## Step 3: Construct Target Paths **TWO destinations required** (paths from MCP `resolve_path` calls): 1. **Audio folder** (for platforms/mastering): `{audio_path}/album.png` 2. **Content folder** (for documentation): `{content_path}/album-art.{ext}` **CRITICAL**: `resolve_path` includes the artist folder automatically. ## Step 4: Create Directories and Copy Files ```bash # Create audio directory (includes artist folder!) mkdir -p {audio_root}/artists/{artist}/albums/{genre}/{album} # Copy to audio folder as album.png cp "{source_file}" "{audio_root}/artists/{artist}/a...

Details

Author
bitwize-music-studio
Repository
bitwize-music-studio/claude-ai-music-skills
Created
4 months ago
Last Updated
3 days ago
Language
Python
License
CC0-1.0

Similar Skills

Semantically similar based on skill content — not just same category