Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

album-cover-generation专辑封面生成

Agent Skill

album-cover-generation 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,764

周安装

75

GitHub Stars

12

下载量

618
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:album-cover-generation(专辑封面生成)
来源仓库:https://github.com/eachlabs/skills
仓库路径:skills/album-cover-generation
安装命令:
npx skills add https://github.com/eachlabs/skills --skill album-cover-generation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill album-cover-generation

简介

album-cover-generation 使用 each::sense 引擎生成专业级专辑封面,支持单曲、EP 和全专格式。

  • 涵盖主流音乐风格(嘻哈、电子、古典等),输出 3000x3000 px 标准尺寸和 Spotify Canvas 动画。
  • 支持多轮迭代和关键词细化,确保最终作品符合流媒体平台和实体印刷要求。
  • 安装方式:github,命令为 npx skills add https://github.com/eachlabs/skills --skill album-cover-generation。
  • 注意:每次生成需指定专辑名称、艺术家和风格关键词,否则返回默认模板。

SKILL.md

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

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

FormatAspect RatioRecommended SizeUse Case
Album Cover1:13000x3000 pxStandard for all platforms
Single Artwork1:13000x3000 pxSingle releases
EP Cover1:13000x3000 pxExtended play releases
Spotify Canvas9:161080x1920 pxAnimated vertical video
Vinyl Cover1:13000x3000 pxPhysical vinyl packaging
CD Booklet1:13000x3000 pxPhysical CD packaging

Use Case Examples

1. Hip-Hop/Rap Album Cover

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

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

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

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

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

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

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

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

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)

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 upward, psychedelic and hypnotic movement. Vibrant colors (orange, pink, purple) blending smoothly. Seamless loop for continuous playback on Spotify."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Best Practices

Design Principles

  • Thumbnail Clarity: Design must be recognizable at small sizes (300x300 thumbnails)
  • Text Placement: Leave 10-15% margin for artist name and album title
  • Color Contrast: Use high contrast to stand out in streaming platform grids
  • Genre Authenticity: Match visual style to the music genre expectations
  • Consistency: Maintain visual identity across single and album releases

Technical Requirements

  • Resolution: Always request 3000x3000 for maximum quality
  • Aspect Ratio: Standard album covers must be 1:1 square
  • Safe Zones: Keep critical elements away from edges (may be cropped on some platforms)
  • File Delivery: Output URLs provide high-resolution PNG/JPG files

Platform Considerations

  • Spotify: Requires 1:1 square, recommends 3000x3000
  • Apple Music: Requires 1:1 square, supports up to 4000x4000
  • YouTube Music: Requires 1:1 square
  • Bandcamp: Supports various ratios but 1:1 recommended
  • Spotify Canvas: Requires 9:16 vertical video, 3-8 seconds, loops seamlessly

Prompt Tips for Album Covers

When creating album artwork, include these details in your prompt:

  1. Genre: Specify the music genre for appropriate visual style
  2. Album/Song Title: Include the title for thematic inspiration
  3. Mood: Dark, uplifting, nostalgic, energetic, melancholic, etc.
  4. Color Palette: Specific colors or color scheme preferences
  5. Visual Elements: Key imagery, symbols, or scenes
  6. Style Reference: Mention similar artists or album art styles
  7. Text Space: Request space for title and artist name placement

Example Prompt Structure

"Create a [size] [genre] album cover for [title].
[Visual description] with [mood/atmosphere].
[Color scheme]. [Style reference].
[Additional requirements like text space, effects, etc.]"

Mode Selection

Ask your users before generating:

"Do you want fast & cheap, or high quality?"

ModeBest ForSpeedQuality
maxFinal release artwork, commercial releasesSlowerHighest
ecoQuick concepts, draft exploration, A/B testingFasterGood

Multi-Turn Creative Iteration

Use session_id to iterate on album artwork:

# Initial concept
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 an ambient electronic album. Minimal, atmospheric, space theme."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "album-project-001"
  }'

# Refine based on feedback
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": "Make it darker with more contrast. Add subtle star field in the background and a gradient from deep blue to black."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "album-project-001"
  }'

# Request variations
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 2 more variations with different color schemes - one in purple tones and one in warm orange/red sunset colors."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "album-project-001"
  }'

Cohesive Release Strategy

Generate matching artwork for album, singles, and promotional materials:

# Main album cover
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 \"Fragments\" by an indie band. Shattered mirror aesthetic with warm golden light fragments. Artistic and abstract."}],

    "model": "eachsense/beta",
    "stream": true,
    "session_id": "fragments-album-campaign"
  }'

# Single artwork (same session for consistency)
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 single artwork for the lead single from the same album. Use the same visual language but focus on a single large fragment. Maintain the color palette."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "fragments-album-campaign"
  }'

# Spotify Canvas
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 Spotify Canvas video using the same shattered mirror aesthetic. Slow motion fragments floating and rotating, 6 seconds, seamless loop."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "fragments-album-campaign"
  }'

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentAdjust prompt to comply with content guidelines
TimeoutComplex generationSet client timeout to minimum 10 minutes

Related Skills

  • each-sense - Core API documentation
  • product-photo-generation - Product photography for merchandise
  • social-media-content - Social media promotional graphics

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.48%
按下载量换算219

Claude

31.68%
按下载量换算196

Cursor

18.59%
按下载量换算115

Gemini CLI

10.08%
按下载量换算62

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills