Token导航 LogoToken导航TokenDH.com
待分类external-servicegithub未标认证来源可访问clear审计通过

pixel-art-animator像素艺术动画师

Agent Skill

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

总安装

12,757

周安装

522

GitHub Stars

152

下载量

7,266
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:pixel-art-animator(像素艺术动画师)
来源仓库:https://github.com/willibrandon/pixel-plugin
仓库路径:skills/pixel-art-animator
安装命令:
npx skills add https://github.com/willibrandon/pixel-plugin --skill 'Pixel Art Animator'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/willibrandon/pixel-plugin --skill 'Pixel Art Animator'

简介

pixel-art-animator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它支持动画帧序列的创建与导出,提升像素作品表现力。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体调用方式。
  • 安装前建议核实权限范围、维护状态,以及是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Pixel Art Animator

Overview

This Skill handles all animation-related tasks for sprites, including frame management, timing, animation tags (sequences), and linked cels for efficient animation.

When to Use

Use this Skill when the user:

  • Wants to "animate" a sprite or "add animation"
  • Mentions "frames", "keyframes", or "frame rate"
  • Describes motion: "walk cycle", "run cycle", "idle animation", "attack animation"
  • Asks about "animation tags", "loops", or "playback"
  • Wants to create "sprite sheets" for animation (coordinate with exporter Skill)

Trigger Keywords: animate, animation, frames, walk cycle, run, idle, attack, loop, movement, motion

Instructions

1. Understanding Animation Basics

Frame: A single image in an animation sequence. Sprites start with 1 frame.

Frame Duration: How long each frame displays (in milliseconds). Default: 100ms (10 FPS).

Animation Tag: Named sequence of frames (e.g., "walk" frames 1-4, "idle" frames 5-8).

Linked Cel: A cel that shares image data with another cel. Editing one updates all linked cels.

Playback Direction:

  • Forward: Frames play 1 → 2 → 3 → 4, then loop
  • Reverse: Frames play 4 → 3 → 2 → 1, then loop
  • Ping-pong: Frames play 1 → 2 → 3 → 4 → 3 → 2 → 1, then loop

2. Creating Animation Frames

Adding Frames: Use mcp__aseprite__add_frame to create new frames:

  • Frames are numbered starting from 1
  • New frames start as copies of the current frame (or blank)

Common Frame Counts:

  • Idle Animation: 2-4 frames (subtle movement)
  • Walk Cycle: 4-8 frames (legs alternate)
  • Run Cycle: 6-8 frames (faster, exaggerated)
  • Attack Animation: 3-6 frames (windup, strike, recovery)
  • Jump: 4-6 frames (crouch, ascend, peak, descend, land)

Duplicating Frames: Use mcp__aseprite__duplicate_frame to copy existing frames:

  • Useful for creating variations
  • Starting point for similar frames

Deleting Frames: Use mcp__aseprite__delete_frame to remove frames:

  • Cannot delete the last remaining frame
  • Frames are renumbered after deletion

3. Setting Frame Timing

Frame Duration: Use mcp__aseprite__set_frame_duration:

  • Duration in milliseconds (ms)
  • 100ms = 10 FPS
  • 50ms = 20 FPS
  • 33ms ≈ 30 FPS
  • 16ms ≈ 60 FPS

Common Timing Patterns:

Even Timing: All frames same duration. Simple and predictable.

  • Walk cycle: all frames 100ms (smooth 10 FPS)

Variable Timing: Different durations for emphasis.

  • Idle: slow frames (150ms) for breathing effect
  • Attack: fast strike (30ms), slower recovery (100ms)

Hold Frames: Longer duration for dramatic effect.

  • Jump peak: 200ms (hang time)
  • Impact: 50ms (quick flash)

4. Creating Animation Tags

Purpose: Organize frames into named sequences.

Use mcp__aseprite__create_tag:

  • Name: "walk", "idle", "attack", etc.
  • From Frame: starting frame (1-indexed)
  • To Frame: ending frame (inclusive)
  • Direction: "forward", "reverse", or "ping-pong"

Example Tags:

  • Tag "idle": frames 1-2, ping-pong direction
  • Tag "walk": frames 3-6, forward direction
  • Tag "attack": frames 7-10, forward direction

Benefits:

  • Export specific animations separately
  • Organize complex sprite sheets
  • Game engines can reference tags

5. Using Linked Cels

Purpose: Share image data across frames to save memory and maintain consistency.

Use mcp__aseprite__link_cel:

  • Useful when frame content doesn't change
  • Example: background layer stays same across animation
  • Editing one linked cel updates all

When to Use:

  • Static background elements
  • Character face in walk cycle (if body animates separately)
  • Repeated frames in animation

Workflow:

  1. Create frames with content
  2. Link cels that should share data
  3. Edit once, updates everywhere

6. Animation Workflows

Workflow 1: Walk Cycle (4 frames)

  1. Create base sprite (or use existing)
  2. Add 3 more frames (total 4)
  3. Edit each frame for walk positions:

- Frame 1: Left foot forward - Frame 2: Contact (both feet touching) - Frame 3: Right foot forward - Frame 4: Contact (both feet touching)

  1. Set all frames to 100ms duration
  2. Create tag "walk": frames 1-4, forward direction

Workflow 2: Idle Animation (2 frames)

  1. Create base sprite
  2. Add 1 more frame (total 2)
  3. Slight variations:

- Frame 1: Normal stance - Frame 2: Subtle movement (breathing, blinking)

  1. Set frames to 500ms duration (slow, subtle)
  2. Create tag "idle": frames 1-2, ping-pong direction

Workflow 3: Complex Multi-Animation Sprite

  1. Create base sprite
  2. Add enough frames for all animations:

- Idle: 2 frames - Walk: 4 frames - Jump: 4 frames - Total: 10 frames

  1. Arrange frames sequentially
  2. Create separate tags:

- Tag "idle": frames 1-2 - Tag "walk": frames 3-6 - Tag "jump": frames 7-10

  1. Set appropriate frame durations per animation

Examples

Example 1: Simple 2-Frame Idle

User Request:

"Add a simple idle animation to this sprite"

Approach:

  1. Add 1 frame (now have frame 1 and 2)
  2. On frame 2, make subtle change (move pixels up/down 1-2 pixels)
  3. Set both frames to 500ms duration
  4. Create tag "idle": frames 1-2, ping-pong direction
  5. Result: gentle back-and-forth idle motion

Example 2: 4-Frame Walk Cycle

User Request:

"Create a walk cycle animation for this character"

Approach:

  1. Add 3 frames (now have 1, 2, 3, 4)
  2. Edit each frame for walk poses
  3. Set all frames to 100ms duration
  4. Create tag "walk": frames 1-4, forward direction
  5. Result: looping walk animation at 10 FPS

Example 3: Variable Timing Attack

User Request:

"Add an attack animation with a fast strike"

Approach:

  1. Add 5 frames (total 6 frames, assuming frame 1 exists)
  2. Frame sequence:

- Frame 2: Windup (slow) - Frame 3: Prepare (slow) - Frame 4: Strike (fast) - Frame 5: Follow-through (medium) - Frame 6: Recovery (slow)

  1. Set durations:

- Frames 2-3: 150ms (slow windup) - Frame 4: 30ms (fast strike) - Frame 5: 80ms (medium follow-through) - Frame 6: 120ms (slow recovery)

  1. Create tag "attack": frames 2-6, forward direction

Example 4: Linked Background

User Request:

"Animate the character but keep the background static"

Approach:

  1. Assume 2 layers: "Background", "Character"
  2. Add frames for animation
  3. Edit "Character" layer on each frame for animation
  4. Link all cels on "Background" layer:

- Link frame 2's background to frame 1 - Link frame 3's background to frame 1 - Link frame 4's background to frame 1

  1. Background stays identical, character animates

Technical Details

Frame Numbering

  • Frames are 1-indexed (first frame is frame 1)
  • Adding frame at position N inserts at that position
  • Deleting frame N renumbers subsequent frames

Frame Duration Limits

  • Minimum: 1ms (not recommended, too fast)
  • Maximum: 65535ms (65.5 seconds)
  • Practical range: 16ms (60 FPS) to 500ms (2 FPS)

Animation Tag Limits

  • No hard limit on number of tags
  • Tags can overlap frames
  • Tag names should be unique and descriptive

Linked Cel Behavior

  • Editing one linked cel updates all linked instances
  • Unlinking creates independent copy
  • Useful for memory optimization in large animations

Performance

  • Adding frame: <20ms
  • Duplicating frame: <30ms
  • Setting frame duration: <10ms
  • Creating tag: <15ms
  • Linking cel: <25ms

Common Patterns

Pattern: Breathing Idle

2 frames, ping-pong, slow timing (400-500ms)

  • Frame 1: Normal
  • Frame 2: Slight vertical shift (1-2 pixels)

Pattern: Basic Walk

4 frames, forward, even timing (100ms)

  • Frame 1: Left foot forward, right foot back
  • Frame 2: Both feet together (contact)
  • Frame 3: Right foot forward, left foot back
  • Frame 4: Both feet together (contact)

Pattern: Run Cycle

6-8 frames, forward, faster timing (60-80ms)

  • More exaggerated poses than walk
  • Longer strides
  • Leaning forward

Pattern: Jump Sequence

5-6 frames, forward, variable timing

  • Frame 1: Crouch (100ms)
  • Frame 2: Launch (50ms)
  • Frame 3: Ascend (80ms)
  • Frame 4: Peak (200ms) - hang time
  • Frame 5: Descend (80ms)
  • Frame 6: Land (100ms)

Integration with Other Skills

  • Start with pixel-art-creator to create base sprite before animating
  • Use pixel-art-professional for polish (shading, antialiasing) after animation
  • Hand off to pixel-art-exporter when user wants to export spritesheet or GIF

Error Handling

Cannot delete last frame:

  • Sprites must have at least 1 frame
  • Inform user if they try to delete last frame

Invalid frame numbers:

  • Frame numbers must be 1 to N (where N is total frames)
  • Check bounds before operations

Tag frame range errors:

  • "From" frame must be ≤ "To" frame
  • Both must be valid frame numbers

Success Indicators

You've successfully used this Skill when:

  • Frames added/modified correctly
  • Frame durations set appropriately for desired FPS
  • Animation tags created with correct ranges
  • User understands animation will loop or play as specified
  • Animation is ready for export or further refinement

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

windsurf

52.19%
按下载量换算3,792

Cursor

28.33%
按下载量换算2,058

Codex

12.11%
按下载量换算880

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills