aseprite-mcp: Skill for OpenCode

.opencode/skills/senior-pixel-artist/SKILL.md

senior-pixel-artist is a skill for OpenCode from ilhamdoanggg/aseprite-mcp. It costs 37 tokens per session (6,072 once invoked), scanned A, original, MIT.

Instructions for creating detailed pixel-art animations with Aseprite, including multi-phase character actions and sequences of more than 30 frames.

In plain words
What is it for?
Use them to create character animations such as walking, attacking, jumping, casting spells, transforming, or reacting to damage.
Why use it?
They provide a planned workflow and timing guidance for organizing complex animated sprites.

Skill for OpenCode

Written for OpenCode: installed under .opencode/.

This is ilhamdoanggg/aseprite-mcp's own configuration. It tells OpenCode how to work on aseprite-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything aseprite-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ilhamdoanggg/aseprite-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ilhamdoanggg/aseprite-mcp/main/.opencode/skills/senior-pixel-artist/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ilhamdoanggg/aseprite-mcp

Made for: OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for senior-pixel-artist

README.md
[![agentmods](https://agentmods.dev/badge/skills/ilhamdoanggg/aseprite-mcp/senior-pixel-artist/github.svg)](https://agentmods.dev/skills/ilhamdoanggg/aseprite-mcp/senior-pixel-artist)
Your own site
<a href="https://agentmods.dev/skills/ilhamdoanggg/aseprite-mcp/senior-pixel-artist"><img src="https://agentmods.dev/badge/skills/ilhamdoanggg/aseprite-mcp/senior-pixel-artist/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for senior-pixel-artist

Your own site · 80×15
<a href="https://agentmods.dev/skills/ilhamdoanggg/aseprite-mcp/senior-pixel-artist"><img src="https://agentmods.dev/badge/skills/ilhamdoanggg/aseprite-mcp/senior-pixel-artist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,072 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.06072
Opus 5 $0.00018 $0.03036
Sonnet 5 $0.00007 $0.01214
Haiku 4.5 $0.00004 $0.00607

Measured 12d ago against content hash ea35296ec2d7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

senior-pixel-artist scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.opencode/skills/senior-pixel-artist/SKILL.md · 633 lines

How it starts

The opening of the file, as written. The whole thing — 633 lines — stays where its author put it; the contents beside it link to each section on GitHub.

senior-pixel-artist

You have expert-level access to aseprite-mcp for creating complex, frame-rich animations. This skill covers techniques for 30+ frame sequences, multi-phase actions, and cinematic pixel art.

Frame budget planning

For animations exceeding 30 frames, plan the frame budget before drawing:

Sequence Frames Duration Total time
Idle loop 6–12 180ms 1.1–2.2s
Walk cycle 8–12 80ms 0.6–1.0s
Run cycle 6–8 60ms 0.36–0.48s
Attack combo (3 hits) 15–24 80ms 1.2–1.9s
Jump arc 8–12 100ms 0.8–1.2s
Death 10–20 120ms 1.2–2.4s
Spell cast 12–18 100ms 1.2–1.8s
Hurt stagger 6–10 100ms 0.6–1.0s
Block/parry 4–8 80ms 0.3–0.6s
Transformation 20–40 100ms 2.0–4.0s
Environmental (flowing water) 8–16 150ms 1.2–2.4s
Cinematic intro 30–60 150ms 4.5–9.0s

Total for a complete character: 100–160 frames across all states.

Workflow for 30+ frame animations

1. Create the base sprite with all frames

// Example: 40-frame character
create_sprite(file: "hero.aseprite", width: 32, height: 32)
// Then add_frame 39 times
for (let i = 2; i <= 40; i++) {
  // add_frame()
}

2. Draw keyframes first (every 5th–8th frame)

Draw the extreme poses first, then fill in-between frames:

Frame 1: idle_stand
Frame 8: idle_breathe_up
Frame 15: idle_shift_weight
Frame 22: idle_breathe_down
Frame 29: idle_bounce
Frame 36: idle_return
Frame 40: reset_to_frame_1

3. Fill in-betweens

For each section between keyframes, draw interpolation frames with incremental position shifts (2–3px per frame for movement, 1px for subtle animations).

4. Batch set durations

Set frame durations in batches after all frames are drawn (avoid opening/saving for each frame individually).

Multi-phase animation patterns

Attack combo (3 hits, ~20 frames)

Frames 1–4:   Wind up (lean back, weapon raised)
Frames 5–8:   Strike 1 (forward swing, 5px weapon arc per frame)
Frames 9–10:  Recovery (return to neutral)
Frames 11–13: Wind up 2 (different angle)
Frames 14–16: Strike 2 (diagonal swing)
Frames 17–18: Recovery
Frames 19–20: Strike 3 (heavy overhead slam, 2x frames for impact)

Read the full file on GitHub · 633 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 633 lines · 37 tokens per session scan A ea35296ec2d7

Subscribe to this mod's changes

senior-pixel-artist is a skill published in the GitHub repository ilhamdoanggg/aseprite-mcp (0 stars, last pushed 3mo ago), licensed MIT. It adds 37 tokens to every session and 6,072 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

gameobject-component-destroy

Destroy one or more Components from a target GameObject. Missing (null) components are skipped — they cannot be destroyed. Use 'gameobject-find' and 'gameobject-component-get' to identify the components first.

IvanMurzak/Unity-MCP · 49 tokens

unity-version-split

Split a C# file into Unity 6.5+ and pre-Unity 6.5 variants. Use when a file needs different implementations for different Unity versions due to API changes (e.g., EntityId vs int, GetEntityId vs GetInstanceID).

IvanMurzak/Unity-MCP · 59 tokens

godot-signals-groups

Build event-driven, decoupled Godot 4.7 gameplay with signals and node groups: declare and emit custom signals, connect with Callables (incl. bind/one-shot), and broadcast to many nodes via groups and callgroup. Use when wiring node communication in a Godot project, replacing tight references with signals…

gamedev-skills/awesome-gamedev-agent-skills · 95 tokens

motion

How an agent turns a character mesh into a usable animated FBX — and how to judge whether the result is shippable.

OpenDCAI/GameFactory-3A · 0 tokens

unity-addressables

Manage Addressables groups, entries, profiles and content builds (com.unity.addressables, reflection-based).

Besty0728/Unity-Skills · 25 tokens

threejs-exposure-color-grading

Build a measured exposure and grading path in Three.js. Use for a 64x36 encoded luminance meter, asynchronous readback, weighted log-average exposure, asymmetric adaptation, single tone-map ownership, and a generated 32-cube post-tone-map LUT.

scottstts/Threejs-Awesome-Graphics-Agent-Skills · 60 tokens