Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计提醒

anime-avatar-generation动漫头像生成

Agent Skill

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

总安装

4,895

周安装

206

GitHub Stars

12

下载量

1,714
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill anime-avatar-generation

简介

基于 each::sense 引擎生成动漫风格头像与角色形象,支持多种艺术流派转换。

  • 适用于社交媒体头像定制、虚拟形象创建及二次元内容生产场景。
  • 支持照片转动漫、吉卜力风格、赛博朋克色调与超萌 Chibi 等多种输出模式。
  • 通过 GitHub 安装获取 API 调用规范,需遵守各风格模型的商用授权条款。
  • 建议上传清晰正面照以获得最佳面部特征还原效果,避免遮挡五官或佩戴夸张饰品。

SKILL.md

Anime Avatar Generation

Generate stunning anime-style avatars and characters using each::sense. This skill transforms photos into anime art, creates original anime characters, and produces various anime styles from Ghibli to cyberpunk.

Features

  • Photo to Anime: Transform real photos into anime-style artwork
  • Ghibli Style: Studio Ghibli-inspired soft, whimsical characters
  • Manga Style: Black and white or toned manga character art
  • Cyberpunk Anime: Neon-lit futuristic anime aesthetics
  • Chibi Avatars: Cute, super-deformed character styles
  • Profile Pictures: Optimized anime avatars for social media
  • Full Body Characters: Complete character designs with outfits
  • Character Sheets: Multiple angles for consistent character reference

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 an anime avatar of a young woman with long blue hair and golden eyes, soft lighting, studio quality"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Anime Style Reference

StyleDescriptionBest For
GhibliSoft colors, whimsical, hand-drawn feelWarm, nostalgic portraits
MangaBlack/white, dynamic lines, expressiveComic-style characters
CyberpunkNeon colors, futuristic, tech elementsEdgy profile pictures
ChibiSuper-deformed, cute, big head/small bodyMascots, emotes
ShonenBold, action-oriented, dramaticMale characters, heroes
ShojoSoft, romantic, sparkly effectsFemale characters, idols
SeinenRealistic proportions, mature styleProfessional avatars

Use Case Examples

1. Photo to Anime Conversion

Transform a real photo into anime-style 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": "Convert this photo to anime style. Keep the facial features recognizable but transform it into a beautiful anime portrait with vibrant colors and soft shading."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/my-photo.jpg"]
  }'

2. Ghibli Style Avatar

Create a Studio Ghibli-inspired character portrait.

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 Studio Ghibli style portrait of a young girl with short brown hair, wearing a simple blue dress. Soft watercolor aesthetic, gentle expression, surrounded by nature with small forest spirits in the background. Hayao Miyazaki inspired art style."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

3. Manga Style Character

Generate a black and white manga-style character.

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 manga-style character portrait in black and white. A confident male protagonist with spiky black hair, sharp eyes, wearing a school uniform. Dynamic pose, dramatic shading with screentones, shonen manga aesthetic."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

4. Cyberpunk Anime Style

Create a futuristic neon-lit anime character.

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 cyberpunk anime character. A hacker girl with short neon pink hair with cyan highlights, cybernetic eye implants, wearing a leather jacket with glowing circuit patterns. Dark urban background with neon signs, rain, and holographic advertisements. Ghost in the Shell meets Akira aesthetic."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

5. Chibi Style Avatar

Generate a cute super-deformed character.

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 chibi anime avatar. A cute girl with big sparkly purple eyes, long wavy pink hair with star clips, wearing a magical girl outfit with ribbons and bows. Super deformed proportions with big head and small body, kawaii expression, pastel color palette, simple clean background."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

6. Anime Profile Picture

Create an optimized avatar for social media profiles.

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 1:1 square anime profile picture. A mysterious character with silver hair covering one eye, heterochromia (one blue eye, one red eye), wearing a high-collar black coat. Dramatic lighting from the side, dark elegant background. The composition should work well as a small avatar icon."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

7. Full Body Anime Character

Design a complete character with outfit and pose.

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 full body anime character design. A female warrior with long red hair in a ponytail, green eyes, wearing ornate silver armor with a flowing cape. She holds a glowing magical sword. Dynamic standing pose, fantasy setting with castle in the background. High detail anime illustration style."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

8. Anime Couple/Group

Generate multiple characters in one scene.

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 an anime illustration of a couple. A tall guy with messy black hair and glasses wearing a casual hoodie, and a shorter girl with twin-tail blonde hair wearing a sundress. They are standing together at a summer festival, holding hands, with fireworks in the night sky behind them. Romantic shojo anime style."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

9. Anime with Specific Hair/Eye Colors

Create a character with precise color specifications.

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 an anime character with very specific colors: gradient hair that transitions from deep purple at the roots to lavender at the tips, bright amber eyes with a subtle golden glow, pale skin with a slight blush. The character should have an elegant hairstyle with braids and loose strands. Portrait shot, soft dreamy lighting, flower petals floating around."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

10. Anime Character Sheet (Multiple Angles)

Generate a reference sheet with multiple views 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 an anime character reference sheet with multiple angles. The character is a young male mage with medium-length teal hair and bright orange eyes, wearing a wizard robe with gold trim. Show front view, side view (profile), 3/4 view, and back view on a clean white background. Include close-up details of the face and any accessories. Professional character design sheet format."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Mode Selection

Ask your users before generating:

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

ModeBest ForSpeedQuality
maxFinal avatars, profile pictures, character designsSlowerHighest
ecoQuick drafts, exploring styles, iterationFasterGood

Multi-Turn Character Refinement

Use session_id to iterate on character designs:

# Initial character 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 an anime character - a mysterious ninja with dark clothing"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "ninja-character-design"
  }'

# 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": "I like it but make the character female, add a red scarf, and give her white hair"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "ninja-character-design"
  }'

# Request style variation
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 the same character but in chibi style"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "ninja-character-design"
  }'

Style Consistency Across Multiple Characters

Create multiple characters with consistent art style:

# First character
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 an anime hero character - a young man with spiky orange hair and determined expression, wearing a battle-worn jacket"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "anime-team-project"
  }'

# Second character (same session for style 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": "Now create his rival - a calm, cool character with slicked-back blue hair, wearing a formal coat. Keep the same art style as the previous character."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "anime-team-project"
  }'

Best Practices

Character Description Tips

  • Hair: Specify color, length, style (spiky, wavy, straight, twin-tails, ponytail)
  • Eyes: Describe color, shape, and expression (sharp, soft, sparkly)
  • Clothing: Detail the outfit style, colors, and any accessories
  • Expression: Define the mood (happy, mysterious, fierce, gentle)
  • Pose: Describe the body position and any gestures

Style Specification

  • Reference specific anime/manga for style guidance
  • Mention lighting preferences (soft, dramatic, backlit)
  • Specify background complexity (simple, detailed, gradient)
  • Include color palette preferences (pastel, vibrant, dark)

Technical Considerations

  • For profile pictures, request 1:1 aspect ratio
  • For character sheets, request landscape orientation
  • For full body, ensure the composition includes head to feet
  • For detailed faces, request close-up portrait composition

Prompt Tips for Anime Avatars

When creating anime characters, include these details:

  1. Character Gender/Age: Young girl, adult man, teenage boy, etc.
  2. Hair Details: Color, length, style, accessories (ribbons, clips)
  3. Eye Details: Color, shape, expression, any special features
  4. Outfit: Clothing type, style, colors, accessories
  5. Pose/Composition: Portrait, full body, action pose, etc.
  6. Art Style: Ghibli, manga, cyberpunk, chibi, etc.
  7. Mood/Atmosphere: Cheerful, mysterious, dramatic, romantic
  8. Background: Simple, detailed, specific setting

Example Prompt Structure

"Create a [style] anime [character type] with [hair details] and [eye details].
They are wearing [outfit description].
[Pose/composition]. [Background/setting].
[Mood/atmosphere] feeling. [Additional details]."

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentAdjust prompt to comply with content policies
TimeoutComplex generationSet client timeout to minimum 10 minutes
Inconsistent characterSession not maintainedUse same session_id for related requests

Related Skills

  • each-sense - Core API documentation
  • photo-to-illustration - General illustration styles
  • character-design - Non-anime character creation
  • profile-picture-generation - General avatar creation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.91%
按下载量换算598

Claude

28.95%
按下载量换算496

Cursor

17.89%
按下载量换算307

Gemini CLI

10.26%
按下载量换算176

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/eachlabs/skills --skill anime-avatar-generation 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills