Convert upscaled pixel art images back to clean, sharp pixel art. Detects grid size, extracts true pixel colors, and outputs crisp results. Supports icon mode (remove background, crop, center) and scene mode (preserve full image).
Scanned 5/27/2026
Install via CLI
openskills install DreamC0der-AI/pixel-snap---
name: pixel-snap
description: "Convert upscaled pixel art images back to clean, sharp pixel art. Detects grid size, extracts true pixel colors, and outputs crisp results. Supports icon mode (remove background, crop, center) and scene mode (preserve full image)."
disable-model-invocation: true
argument-hint: "[input-file] [options]"
---
# Pixel Art Snap
Convert upscaled/blurry pixel art images back to clean, sharp pixel art.
## Script Location
The script is at: `${CLAUDE_SKILL_DIR}/pixel-art-snap.js`
It requires the `sharp` npm package. If not installed, run:
```
cd ${CLAUDE_SKILL_DIR} && npm install sharp
```
## Usage
Run the script with:
```
node ${CLAUDE_SKILL_DIR}/pixel-art-snap.js [input] [output] [options]
```
### Arguments from user
The user's arguments: $ARGUMENTS
### Options
- `--mode=auto|icon|scene` — Post-processing mode (default: auto-detect)
- `icon`: remove white background, crop, center on square, scale
- `scene`: keep full image, scale with nearest-neighbor
- `--size=1024` — Target output size in pixels (default: 1024)
- `--grid=N` — Force grid size in pixels (skip auto-detection)
- `--threshold=240` — White background threshold (default: 240)
### Workflow
1. Parse the user's arguments to determine input file and options
2. If no input file is specified, ask the user for one
3. Run the script with the appropriate arguments
4. Report the results (grid size detected, mode used, output path)
5. If the user wants to preview the result, read the output image file
### Examples
```bash
# Basic usage
node ${CLAUDE_SKILL_DIR}/pixel-art-snap.js ~/images/sprite.png
# Specify output and size
node ${CLAUDE_SKILL_DIR}/pixel-art-snap.js input.png output.png --size=512
# Force icon mode with custom grid
node ${CLAUDE_SKILL_DIR}/pixel-art-snap.js sprite.png --mode=icon --grid=16
```
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...