This directory contains slash commands that users invoke directly in Claude Code.
Creates new pixel art sprites with configurable sizes and color palettes.
/plugin marketplace add willibrandon/pixel-plugin/plugin install pixel-plugin@pixel-pluginThis directory contains slash commands that users invoke directly in Claude Code.
Create a new pixel art sprite with optional size and palette presets.
Usage: /pixel-new [size] [palette]
Size presets:
icon - 32x32small - 48x48medium - 64x64 (default)large - 128x128tile - 16x16gameboy - 160x144nes - 256x240Palette presets:
retro - 16-color generic palettenes - 54-color NES palettegameboy - 4-color Game Boy palettec64 - 16-color Commodore 64 palettecga - 4-color CGA palettesnes - 256-color SNES paletteExamples:
/pixel-new
/pixel-new icon
/pixel-new 128x128 nes
/pixel-new gameboy gameboy
Manage sprite color palettes.
Usage: /pixel-palette <action> [args]
Actions:
set <preset> - Apply a preset paletteoptimize <colors> - Reduce palette to N colorsshow - Display current paletteexport <file> - Save palette to fileExamples:
/pixel-palette set nes
/pixel-palette optimize 16
/pixel-palette show
/pixel-palette export my-palette.pal
Export sprite to various formats.
Usage: /pixel-export <format> [file] [options]
Formats:
png - Single frame PNGgif - Animated GIFsheet - Spritesheetjson - Metadata fileOptions:
scale=N - Pixel-perfect scaling (1, 2, 4, 8)fps=N - Frame rate for GIFlayout=type - Spritesheet layout (horizontal, vertical, grid, packed)format=type - JSON format (aseprite, unity, godot, phaser)Examples:
/pixel-export png sprite.png
/pixel-export gif animation.gif fps=12
/pixel-export sheet characters.png layout=grid
/pixel-export png icon.png scale=4
Configure the Aseprite MCP server.
Usage: /pixel-setup [path]
Auto-detects Aseprite installation or accepts manual path.
Platform paths:
/Applications/Aseprite.app/Contents/MacOS/aseprite/usr/bin/asepriteC:\Program Files\Aseprite\Aseprite.exeExamples:
/pixel-setup
/pixel-setup /usr/local/bin/aseprite
Display help information.
Usage: /pixel-help [topic]
Topics:
palettes - Available color palettesexport - Export formats and optionsanimation - Animation featuresshortcuts - Common workflowsExamples:
/pixel-help
/pixel-help palettes
/pixel-help export
Each command is a markdown file with YAML frontmatter:
---
description: Brief description shown in /help
argument-hint: [arg1] [arg2]
allowed-tools: Tool1, Tool2, mcp__aseprite__*
---
Commands use $ARGUMENTS to access user input and can execute MCP tools to interact with Aseprite.
Commands use these pixel-mcp tools:
mcp__aseprite__create_canvas - Create new spritesmcp__aseprite__set_palette - Set color palettesmcp__aseprite__export_sprite - Export to filesmcp__aseprite__get_sprite_info - Query sprite propertiesSee the pixel-mcp documentation for the full list of available tools.