Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

discord-graphics-generationDiscord graphics generation 搜索

Agent Skill

用于处理 Discord 服务器、频道、消息、成员和机器人交互。它适合让 Agent 辅助查询社区对话、整理频道内容、发布通知或管理基础协作流程。使用时需要确认 bot 权限、频道可见范围和服务器规则;涉及删除消息、管理成员、批量通知或读取私密频道时,应先获得明确授权并控制操作范围。

总安装

1,824

周安装

76

GitHub Stars

12

下载量

608
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill discord-graphics-generation

简介

用于生成适配 Discord 各场景的专业图形素材。

  • 适合制作服务器图标、横幅、角色标识与活动宣传图。
  • 使用时需遵循尺寸规范(如 512x512、960x540)并优化视觉层次。
  • 安装前请确认权限范围和维护状态,注意可能触发文件生成与网络请求。
  • discord-graphics-generation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Discord Graphics Generation

Generate professional Discord server graphics using each::sense. This skill creates images optimized for Discord's various graphic placements, sizes, and best practices.

Features

  • Server Icons: Square icons for server identity (512x512)
  • Server Banners: Wide banners for server profile (960x540)
  • Role Icons: Small icons for role identification (64x64)
  • Welcome Graphics: Channel headers for welcome areas
  • Rules Graphics: Visual headers for rules channels
  • Announcement Banners: Eye-catching announcement graphics
  • Event Banners: Promotional graphics for server events
  • Bot Avatars: Custom avatars for Discord bots
  • Emoji Packs: Custom server emojis
  • Booster Badges: Recognition graphics for server boosters

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 Discord server icon for a gaming community called Pixel Warriors, featuring a pixel art sword and shield with purple and blue colors"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Discord Graphics Formats & Sizes

Asset TypeSizeAspect RatioUse Case
Server Icon512x5121:1Server identity, appears everywhere
Server Banner960x54016:9Server profile header (Nitro Level 2+)
Role Icon64x641:1Role badges next to usernames
Invite Splash1920x108016:9Server invite background (Nitro Level 1+)
Server Discovery1024x10241:1Server discovery listing
Custom Emoji128x1281:1Server emojis (max 256KB)
Sticker320x3201:1Custom stickers

Use Case Examples

1. Discord Server Icon

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 512x512 Discord server icon for a tech community called CodeHub. Feature a modern code bracket symbol with gradient from cyan to purple, dark background, clean minimal design that reads well at small sizes."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

2. Server Banner

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 960x540 Discord server banner for an anime discussion community. Show a stylish anime-inspired cityscape at night with neon lights, purple and pink color scheme. Leave the center area less busy for the server name overlay."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

3. Role Icons Set

# Admin role icon
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 64x64 Discord role icon for Admin role. Gold crown symbol on dark background, simple and recognizable at small size. Clean vector-style design."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "discord-roles-001"
  }'

# Moderator role icon (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 a 64x64 Discord role icon for Moderator role. Silver shield symbol, same style as the admin icon. Simple and recognizable."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "discord-roles-001"
  }'

# VIP role icon
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 64x64 Discord role icon for VIP members. Purple diamond or star symbol, matching the style of previous role icons."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "discord-roles-001"
  }'

4. Welcome Channel Graphic

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 wide banner graphic for a Discord welcome channel. Friendly and inviting design with soft gradients in blue and purple. Include visual space for welcome text. Aspect ratio 16:9, dimensions 1200x675. Make it warm and community-focused."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

5. Rules Channel Graphic

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 Discord rules channel header graphic. Professional and authoritative design with a scroll or document motif. Dark theme with gold accents. 1200x400 pixels. Include subtle gavel or scales of justice imagery. Clean and readable."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

6. Announcement Graphics

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 Discord announcement banner for a server update. Exciting and attention-grabbing with a megaphone or notification bell motif. Red and orange energy colors with dark background. 1200x600 pixels. Space for announcement text."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

7. Event Banner

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 Discord event banner for a gaming tournament. Esports style with dynamic angles and energy effects. Team colors: red vs blue. 1200x675 pixels. Include space for event name, date, and prize info. Competitive and exciting mood."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

8. Bot Avatar

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 512x512 Discord bot avatar for a music bot called BeatBot. Friendly robot face with headphones, musical notes floating around. Cyan and white color scheme on dark background. Cute but modern design, reads well as small circle."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

9. Emoji Pack Generation

# Generate consistent emoji set
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 128x128 Discord emoji of a happy pepe-style frog giving thumbs up. Simple, clean design with thick outlines for visibility at small sizes. Green frog, expressive eyes."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "emoji-pack-001"
  }'

# Sad emoji
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 128x128 Discord emoji of the same frog character but sad with a single tear. Same art style as before, consistent design."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "emoji-pack-001"
  }'

# Laughing emoji
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 128x128 Discord emoji of the same frog character laughing hard with tears of joy. Consistent style with previous emojis."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "emoji-pack-001"
  }'

10. Server Booster Badge

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 64x64 Discord role icon for Server Boosters. Premium feel with Discord Nitro pink/purple gradient colors. Lightning bolt or rocket symbol to represent boost. Shiny metallic effect, stands out from other role icons."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Best Practices

Server Icons

  • Simplicity: Design should be recognizable at 32x32 pixels
  • Contrast: Use high contrast colors for visibility
  • Centered: Keep main element centered (displays as circle)
  • No text: Avoid text - it won't be readable at small sizes
  • Brand colors: Use consistent brand/community colors

Role Icons

  • 64x64 max: Discord caps role icons at 64x64
  • Simple shapes: Complex details get lost at small sizes
  • Color coding: Use distinct colors for different role levels
  • Consistency: Create a cohesive set with matching styles
  • Transparency: Use transparent backgrounds

Banners & Headers

  • Safe zones: Keep important elements away from edges
  • Text space: Leave room for overlay text
  • Mobile friendly: Test how it looks on mobile
  • File size: Keep under 10MB for banners

Emojis

  • 128x128: Standard Discord emoji size
  • 256KB limit: Keep file size under limit
  • Thick outlines: Helps visibility at small sizes
  • Transparent BG: Use transparency for versatility
  • Expression focus: Emphasize the emotion/action

Prompt Tips for Discord Graphics

When creating Discord graphics, include these details in your prompt:

  1. Exact size: Specify dimensions (512x512, 960x540, 64x64, etc.)
  2. Asset type: Server icon, banner, role icon, emoji, etc.
  3. Theme/Style: Gaming, anime, professional, minimalist, etc.
  4. Colors: Specific colors or let AI choose based on theme
  5. Key elements: Symbols, mascots, or imagery to include
  6. Readability: Mention if it needs to work at small sizes
  7. Text space: Note if you need room for text overlays

Example Prompt Structure

"Create a [size] Discord [asset type] for [community type/name].
Feature [key visual elements] with [color scheme].
Style: [aesthetic description].
[Additional requirements like small-size readability, text space, etc.]"

Mode Selection

Ask your users before generating:

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

ModeBest ForSpeedQuality
maxFinal assets, server branding, public-facing graphicsSlowerHighest
ecoQuick drafts, concept exploration, bulk emoji generationFasterGood

Multi-Turn Creative Iteration

Use session_id to iterate on Discord graphics:

# Initial server icon 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 512x512 Discord server icon for a space exploration gaming community"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "space-server-branding"
  }'

# Iterate 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 the planet more prominent and add some stars in the background. Keep the same color scheme."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "space-server-branding"
  }'

# Create matching banner
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": "Now create a matching 960x540 server banner with the same space theme and color palette"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "space-server-branding"
  }'

Complete Server Branding Set

Generate a cohesive branding package:

# 1. Server icon
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 512x512 Discord server icon for a creative art community called ArtVault. Modern abstract paint splash design, vibrant rainbow colors on dark background."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "artvault-branding",
    "mode": "max"
  }'

# 2. Server banner
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 matching 960x540 server banner. Extend the paint splash theme across a wider canvas. Same colors and style."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "artvault-branding",
    "mode": "max"
  }'

# 3. Role icons
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 3 role icons (64x64 each) for Artist, Moderator, and VIP roles. Use paintbrush for Artist (blue), palette for Mod (orange), and star for VIP (gold). Same art style as the server icon."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "artvault-branding",
    "mode": "max"
  }'

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentAdjust prompt to comply with Discord community guidelines
TimeoutComplex generationSet client timeout to minimum 10 minutes
Image too largeFile size exceeds limitRequest smaller dimensions or simpler design

Related Skills

  • each-sense - Core API documentation
  • social-media-graphics - Social media assets
  • logo-generation - Brand logo creation
  • character-design - Mascot and character creation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.93%
按下载量换算200

Claude

30.04%
按下载量换算183

Cursor

19.17%
按下载量换算117

Gemini CLI

8.75%
按下载量换算53

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills