Claude
Skills
Sign in
Back

album-cover-generation

Included with Lifetime
$97 forever

Generate professional music album covers using each::sense AI. Create artwork for hip-hop, rock, pop, electronic, jazz, classical, indie albums, singles, EPs, and Spotify canvas visuals.

General

What this skill does


# Album Cover Generation

Generate stunning, professional album artwork using each::sense. This skill creates high-quality visuals for music releases across all genres, optimized for streaming platforms, digital distribution, and physical media.

## Features

- **Full Album Covers**: Standard 3000x3000 px artwork for all platforms
- **Singles Artwork**: Eye-catching visuals for single releases
- **EP Covers**: Cohesive artwork for extended plays
- **Spotify Canvas**: Vertical animated visuals for streaming
- **Genre-Specific Styles**: Hip-hop, rock, pop, electronic, jazz, classical, indie
- **Multi-Turn Iteration**: Refine artwork through conversation
- **Consistent Branding**: Maintain artist visual identity across releases

## Quick Start

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 3000x3000 album cover for a hip-hop album called \"Midnight Dreams\". Dark city skyline at night, neon lights reflecting on wet streets, cinematic and moody atmosphere."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

## Album Cover Formats & Sizes

| Format | Aspect Ratio | Recommended Size | Use Case |
|--------|--------------|------------------|----------|
| Album Cover | 1:1 | 3000x3000 px | Standard for all platforms |
| Single Artwork | 1:1 | 3000x3000 px | Single releases |
| EP Cover | 1:1 | 3000x3000 px | Extended play releases |
| Spotify Canvas | 9:16 | 1080x1920 px | Animated vertical video |
| Vinyl Cover | 1:1 | 3000x3000 px | Physical vinyl packaging |
| CD Booklet | 1:1 | 3000x3000 px | Physical CD packaging |

## Use Case Examples

### 1. Hip-Hop/Rap Album Cover

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 3000x3000 hip-hop album cover for \"Street Chronicles\". Urban environment with graffiti walls, gold chains aesthetic, dark moody lighting with purple and gold accents. Leave space at bottom for artist name and album title. Gritty, authentic street vibe."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 2. Rock/Metal Album Cover

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 3000x3000 heavy metal album cover for \"Eternal Flames\". Epic dark fantasy scene with a burning skull, lightning storms, gothic cathedral ruins in the background. High contrast, dramatic red and black color scheme. Classic metal album art style like Iron Maiden or Metallica."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 3. Pop Album Cover

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 3000x3000 pop album cover for \"Sunshine State\". Bright, colorful aesthetic with pastel gradients (pink, blue, yellow). Abstract geometric shapes, playful and energetic mood. Modern, clean design that appeals to Gen-Z. Think Dua Lipa or Ariana Grande album vibes."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 4. Electronic/EDM Album Cover

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 3000x3000 electronic music album cover for \"Neon Pulse\". Futuristic cyberpunk cityscape, glowing neon lights in cyan and magenta, digital glitch effects, synthwave aesthetic. Dark background with vibrant light trails. High-tech, immersive club atmosphere."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 5. Jazz Album Cover

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 3000x3000 jazz album cover for \"Blue Notes After Dark\". Classic Blue Note Records inspired design. Abstract illustration of a saxophone player silhouette, smoky jazz club atmosphere. Two-tone color palette (deep blue and cream). Minimalist, sophisticated, vintage 1960s jazz aesthetic."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 6. Classical Album Cover

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 3000x3000 classical music album cover for \"Symphonic Visions\". Elegant and timeless design featuring a grand concert hall interior with golden chandeliers, velvet curtains. Soft, warm lighting. Refined and prestigious aesthetic suitable for an orchestra recording. Deutsche Grammophon style."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 7. Indie/Alternative Album Cover

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 3000x3000 indie album cover for \"Suburban Daydreams\". Nostalgic, dreamy aesthetic with faded film photography look. Empty suburban street at golden hour, lo-fi grainy texture. Melancholic but beautiful mood. Think Bon Iver, Phoebe Bridgers, or The National album art style."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 8. Single Artwork

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 3000x3000 single artwork for a song called \"Heartbeat\". Minimalist design with a stylized anatomical heart in neon red against a pure black background. Simple, bold, and immediately recognizable. Modern and striking for streaming thumbnail visibility."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 9. EP Cover

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 3000x3000 EP cover for a 5-track R&B EP called \"Velvet Nights\". Luxurious, sensual aesthetic with deep purple velvet textures, soft ambient lighting, rose petals. Intimate and romantic mood. High-end, premium feel for an R&B/soul artist."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 10. Spotify Canvas (Vertical Animated)

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 9:16 vertical video for Spotify Canvas, 8 seconds long. Looping animation of abstract colorful paint swirls flowing upwa
Files: 2
Size: 24.7 KB
Complexity: 42/100
Category: General

Related in General