Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

game-assets-team游戏资产团队

Agent Skill

game-assets-team 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,922

周安装

123

GitHub Stars

公开资料未说明

下载量

1,023
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:game-assets-team(游戏资产团队)
来源仓库:https://github.com/ccalebcarter/purria-skills
仓库路径:skills/game-assets-team
安装命令:
npx skills add ccalebcarter/purria-skills --skill "game-assets-team"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add ccalebcarter/purria-skills --skill "game-assets-team"

简介

game-assets-team 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • github 安装方式,npx skills add ccalebcarter/purria-skills --skill "game-assets-team"。
  • 适用于研究检索类任务,支持主流 AI 宿主环境。
  • 安装前建议确认权限范围、维护状态。

SKILL.md

name
game-assets-team
description
Complete game asset design, creation, implementation, and optimization team. Use when creating visual assets, art direction, sprites, UI elements, icons, textures, animations specs, audio design, or any game visuals. Covers AI image generation (Gemini), asset pipelines, optimization for web/mobile, style guides, and performance tuning. Triggers on requests for game art, icons, backgrounds, character designs, UI assets, promotional materials, or asset troubleshooting.

Game Assets Team

A virtual SME team for game asset design, creation, implementation, and optimization. Specialized for scalable web/mobile games with low-poly crystalline aesthetics.

Team Roles & Expertise

RoleResponsibilities
Art DirectorVisual style, consistency, brand identity
Concept ArtistInitial designs, mood boards, style exploration
UI/UX DesignerInterface elements, iconography, HUD components
Technical ArtistOptimization, formats, performance, pipelines
Motion DesignerAnimation specs, transitions, micro-interactions
Audio DesignerSound direction, SFX specs, music briefs

Asset Creation Workflow

1. AI Image Generation (Primary Tool)

Use the gemini-image-generator skill for rapid asset creation:

# From the gemini-image-generator scripts directory:
python generate.py --prompt "[DETAILED PROMPT]" --output [filename].png

Prompt Engineering for Game Assets:

Structure: [Subject] + [Style] + [Composition] + [Technical] + [Mood]

Example for Farming in Purria Simulins:
"cute low-poly geometric bee game character, faceted crystalline wings,
big adorable eyes, bold yellow and gold with subtle gradients,
3/4 angle view, transparent background, phase 2 evolution,
developing features, partial crystalline wings"

2. Asset Categories & Specs

CategoryFormatsSizesNotes
UI IconsPNG-24, SVG64x64, 128x128Transparent BG, 2px padding
SpritesPNG-24, WebPPower of 2Sprite sheets preferred
BackgroundsWebP, AVIF1920x1080, 2560x1440Layered for parallax
SimulinsPNG-24128/192/256px by phase3 evolution phases
CardsPNG-24, SVG180x252 (2.5:3.5)Print-ready at 300dpi
ParticlesPNG-2432x32, 64x64Additive blend ready

3. Style Guide: Farming in Purria

Visual Pillars:

  1. Low-Poly Geometric - Faceted shapes, clean edges, visible polygons
  2. Crystalline Accents - Translucent gem-like wings, prismatic reflections
  3. Kawaii Charm - Big expressive eyes, cute proportions, personality
  4. Bold Colors - Vibrant palettes with subtle gradients

Color Palette (Simulins):

Spider:      #8B5CF6 (Purple)     #A78BFA (Light Purple)
Bee:         #F59E0B (Amber)      #FBBF24 (Yellow)
Ladybug:    #EF4444 (Red)        #1F2937 (Black)
Butterfly:  #EC4899 (Pink)       #8B5CF6 (Purple)
Grasshopper: #22C55E (Green)      #84CC16 (Lime)
Mole:        #92400E (Brown)      #D97706 (Orange)

Typography:

  • Headers: Rounded, friendly sans-serif
  • Body: Clean readability
  • Numbers: Roboto Mono (Tabular for scores/currency)

Optimization Standards

Web/Mobile Performance

Asset TypeMax SizeFormat PriorityLazy Load
Hero Images200KBAVIF > WebP > PNGNo
UI Sprites100KBWebP > PNGNo
Backgrounds300KBAVIF > WebPYes
Icons10KB eachSVG > WebPNo
Animations500KBLottie > GIFYes

Sprite Sheet Guidelines

Layout: Grid-based, power-of-2 dimensions
Padding: 2px between frames (prevents bleeding)
Naming: [simulin]_phase[1-3].[ext]
Atlas: Generate JSON metadata for programmatic access

Responsive Asset Strategy

/assets
  /1x  (base - mobile)
  /2x  (retina - tablet/desktop)
  /3x  (high-DPI - optional)

Use <picture> element or CSS image-set() for delivery.

Implementation Patterns

React Integration

// Optimized image component pattern
const GameAsset = ({ src, alt, priority = false }) => (
  <img
    src={src}
    alt={alt}
    loading={priority ? "eager" : "lazy"}
    decoding="async"
    className="crisp" // for low-poly art
  />
);

CSS for Game Assets

/* Crisp rendering for low-poly assets */
.crisp {
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

/* Smooth scaling for gradients */
.smooth {
  image-rendering: smooth;
  image-rendering: high-quality;
}

/* Sprite animation */
.sprite-animate {
  animation: sprite-play 0.8s steps(8) infinite;
}

Troubleshooting Guide

IssueCauseSolution
Blurry assetsWrong resolutionUse 2x assets, check devicePixelRatio
Color banding8-bit limitationUse PNG-24, add subtle dithering
Jagged edgesNo anti-aliasingEnable AA in source, or use SVG
Large file sizeUnoptimizedRun through squoosh.app, use WebP
Animation stutterToo many framesReduce to 12-24fps, use CSS transforms
Inconsistent styleNo style guideReference art-direction.md, use AI consistently

Quality Checklist

Before shipping any asset:

  • [ ] Correct dimensions and format
  • [ ] Optimized file size (within limits above)
  • [ ] Transparent background where needed
  • [ ] Consistent with low-poly crystalline style
  • [ ] Tested on 1x and 2x displays
  • [ ] Named according to convention
  • [ ] Metadata/atlas generated if sprite

Reference Documents

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

28.03%
按下载量换算287

Antigravity

23.22%
按下载量换算238

Gemini CLI

17.83%
按下载量换算182

Codex

12.01%
按下载量换算123

OpenCode

7.08%
按下载量换算72

Cursor

3.67%
按下载量换算38

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills