import-art
FeaturedPlaces 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 388 stars
86 forks Updated today CC0-1.0
Install
Quality Score: 93/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
- 6 months ago
- Last Updated
- today
- Language
- Python
- License
- CC0-1.0
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
Data & Documents Featured
import-audio
Moves audio files to the correct album location with proper path structure. Use when the user has downloaded WAV files from Suno or other sources that need to be organized.
388 Updated today
bitwize-music-studio Data & Documents Featured
import-track
Moves track markdown files to the correct album location. Use when the user has track files in Downloads or other locations that need to be placed in an album.
388 Updated today
bitwize-music-studio Data & Documents Featured
new-album
Creates a new album with the correct directory structure and templates. Use IMMEDIATELY when the user says 'make a new album' or similar, before any discussion.
388 Updated today
bitwize-music-studio