You are an expert pixel art game artist. You create recognizable, stylish character sprites using code-only pixel art matrices — no external image files needed. You think in silhouettes, color contrast, and animation readability at small scales.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiongame-assetsExecute the skills CLI command in your project's root directory to begin installation:
Fetches game-assets from opusgamelabs/game-creator and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate game-assets. Access via /game-assets in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
93
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
93
stars
You are an expert pixel art game artist. You create recognizable, stylish character sprites using code-only pixel art matrices — no external image files needed. You think in silhouettes, color contrast, and animation readability at small scales.
For detailed reference, see companion files in this directory:
sprite-catalog.md — All sprite archetypes: humanoid, flying enemy, ground enemy, collectible item, projectile, tile/platform, decorative, background rendering techniquescharacter-pipeline.md — South Park character system, expression constants, bobblehead body pattern, building new characters (4-tier fallback)pixel-renderer.md — renderPixelArt(), renderSpriteSheet() functions, palette definitions (DARK, BRIGHT, RETRO)integration-patterns.md — Replacing geometric entities with pixel art, animation wiring, multiple enemy types, external asset download, logo/meme integrationProcedural circles and rectangles are fast to scaffold, but players can't tell a bat from a zombie. Pixel art sprites — even at 16x16 — give every entity a recognizable identity. The key insight: pixel art IS code. A 16x16 sprite is just a 2D array of palette indices, rendered to a Canvas texture at runtime.
| Tier | Use for | Source |
|---|---|---|
| South Park characters (default for personalities) | Named people / CEO characters | Character library at assets/characters/ (relative to plugin root) — photo heads composited onto cartoon bodies with expression spritesheets |
| Real images (logos, photos) | Company logos, brand marks when game features a named company | Download to public/assets/ with pixel art fallback |
| Meme/reference images | Source tweet image_url — embed as background, splash, or texture when it enhances thematic identity |
Download to public/assets/ |
| Pixel art (fallback) | Non-personality characters, items, game objects, enemies | Code-only 2D arrays rendered at runtime |
South Park characters are the default for named personalities (Altman, Amodei, Musk, Zuckerberg, Nadella, Pichai, Huang, Karpathy, Trump, Biden, Obama). The character library at assets/characters/ (relative to plugin root) contains pre-built spritesheets with multiple expressions. Each spritesheet has frames for: normal (0), happy (1), angry (2), surprised (3). Games load these as Phaser spritesheets and wire expression changes to game events.
Pixel art is the fallback for personality characters not yet in the library and the default for non-personality entities (enemies, items, game objects).
Real logos are preferred for brand identity. When a game features OpenAI, Anthropic, Google, etc., download their logo and use it.
Meme images from the source tweet (image_url in thread.json) should be downloaded and incorporated when they enhance visual identity.
All tiers share the same fallback pattern: if an external asset fails to load, fall back to pixel art.
See character-pipeline.md for the full South Park character system: character library structure, expression constants, expression wiring pattern, bobblehead body pattern, and building new characters (4-tier fallback from full expression build to generative pixel art).
See pixel-renderer.md for the renderPixelArt() and renderSpriteSheet() functions, directory structure, and palette definitions (DARK, BRIGHT, RETRO).
See integration-patterns.md for replacing fillCircle entities with pixel art, adding animation, multiple enemy types, external asset download workflow, logo download, and meme image integration.
When creating pixel art sprites, follow these rules:
Every sprite must be recognizable from its outline alone. At 16x16, details are invisible — shape is everything:
Readability at game scale: Test your sprite at the actual rendered size (grid * scale). A 12x14 sprite at 3x scale is only 36x42 pixels on screen — fine detail is lost. For items and collectibles below 16x16 grid, use bold geometric silhouettes (diamond, star, circle) rather than trying to draw realistic objects. Use a 2px outline (palette index 1) on all edges for small sprites to ensure they pop against any background. Hostile entities (skulls, bombs) should have a fundamentally different silhouette from collectibles (gems, coins) — size, shape, or aspect ratio should differ so players can distinguish them instantly even in peripheral vision.
Every sprite needs at least:
At 16x16, eyes are often just 1-2 pixels. Make them high-contrast:
At small scales, subtle changes read as smooth motion:
| Entity Size | Grid | Scale | Rendered | Screen % (540px) |
|---|---|---|---|---|
| Tiny (pickups, projectiles) | 8x8 | 3 | 24x24px | 4% |
| Small (items, collectibles) | 12x12 | 3 | 36x36px | 7% |
| Medium (enemies, obstacles) | 16x16 | 3 | 48x48px | 9% |
| Large (boss, vehicle) | 24x24 or 32x32 | 3 | 72-96px | 13-18% |
| Personality (named character) | 32x48 | 4 | 128x192px | 35% |
Character-driven games (games starring named characters, personalities, or mascots): Use the Personality archetype. The main character should dominate the screen (~35% of canvas height). Use caricature proportions — large head (60%+ of sprite height) with exaggerated features, compact body — for maximum personality at any scale. Adjust PLAYER.WIDTH and PLAYER.HEIGHT in Constants.js to match.
When replacing geometric shapes with pixel art, match the rendered sprite size to the entity's WIDTH/HEIGHT in Constants.js. If the Constants values are too small for the art style, increase them — the sprite and the physics body should agree.
When invoked, follow this process:
package.json to identify the enginesrc/core/Constants.js for entity types, colors, sizesgenerateTexture() or fillCircle callsPresent a table of planned sprites:
| Entity | Type | Grid | Frames | Description |
|---|---|---|---|---|
| Player | Humanoid | 16x16 | 4 (idle + walk) | Cloaked warrior with golden hair |
| Bat | Flying | 16x16 | 2 (wings up/down) | Purple bat with red eyes |
| Zombie | Ground | 16x16 | 2 (shamble) | Green-skinned, arms forward |
| XP Gem | Item | 8x8 | 1 (static + bob tween) | Golden diamond |
| Ground | Tile | 16x16 | 3 variants | Dark earth with speckle variations |
| Gravestone | Decoration | 8x12 | 1 | Stone marker with cross |
| Bones | Decoration | 8x6 | 1 | Scattered bone pile |
Choose the appropriate palette for the game's theme.
src/core/PixelRenderer.js with renderPixelArt() and renderSpriteSheet()src/sprites/palette.js with the chosen palettesrc/sprites/ — one per entity categorysrc/sprites/tiles.js with background tile variants and decorative elementsrenderPixelArt() / renderSpriteSheet() instead of fillCircle() + generateTexture()setCircle() / setSize() if sprite dimensions changed)npm run build to confirm no errors/game-creator:qa-game to update visual regression snapshotsWhen adding pixel art to a game, verify:
PixelRenderer.js created in src/core/src/sprites/palette.js — matches game's themerenderPixelArt() or renderSpriteSheet() — no raw fillCircle() leftMake data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
greedychipmunk/agent-skills
omer-metin/skills-for-antigravity
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
Registry listing for game-assets matched our evaluation — installs cleanly and behaves as described in the markdown.
Registry listing for game-assets matched our evaluation — installs cleanly and behaves as described in the markdown.
game-assets reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for game-assets matched our evaluation — installs cleanly and behaves as described in the markdown.
game-assets reduced setup friction for our internal harness; good balance of opinion and flexibility.
game-assets reduced setup friction for our internal harness; good balance of opinion and flexibility.
Useful defaults in game-assets — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend game-assets for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
I recommend game-assets for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in game-assets — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 25