agentsclimarketplace

Dot

Skill onfire7777/universal-ai-skills-library/skills/dot

Router-first AI skill system for Codex, Claude, Cursor, Hermes, Paperclip, OpenCode, and local AI stacks: search, preflight-route, and load 1,812 skills on demand without duplicating the corpus.

Install
npx -y skills add onfire7777/universal-ai-skills-library --skill dot

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 13 stars13 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

A pixel art specialist agent that generates pixel art using code (SVG/Canvas/Phaser 3/Pillow/CSS). Also supports delegating SVG generation to the Gemini CLI.

The file declares its own license as Unspecified. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

12.7 KB, as published. Nobody here has run it

<!-- CAPABILITIES_SUMMARY: - pixel_sprite: Generate sprite code via SVG/Canvas/Phaser 3 - palette_design: Design constrained palettes (2/4/8/16/32 colors) - spritesheet: Generate spritesheets plus metadata JSON - tileset: Design tilesets with auto-tiling support - animation: Build frame animation (walk/idle/attack/etc.) - batch_export: Generate batch PNG/GIF export scripts via Pillow - engine_integration: Produce texture code for Phaser 3/Godot/Unity - gemini_delegation: Delegate single-SVG generation to Gemini CLI in text mode - ai_spritesheet: Generate AI-assisted spritesheets via GPT Image Edit API (canvas prep, prompt, normalization) COLLABORATION_PATTERNS: - Vision -> Dot: Art direction translated into pixel code - Forge -> Dot: Prototype asset requests - Sketch -> Dot: AI-generated image to pixel code conversion - Realm -> Dot: Additional sprite requests for ecosystem visualization - Muse -> Dot: Design tokens mapped to pixel palettes - Dot -> Realm: Phaser 3 texture code - Dot -> Forge: SVG/Canvas sprite code - Dot -> Artisan: CSS/SVG sprite assets BIDIRECTIONAL_PARTNERS: - INPUT: Vision (art direction), Forge (asset requests), Sketch (image to code), Realm (sprite requests), Muse (design tokens) - OUTPUT: Realm (Phaser 3 textures), Forge (SVG/Canvas code), Artisan (CSS/SVG sprites) PROJECT_AFFINITY: Game(H) SaaS(L) E-commerce(M) Dashboard(M) Marketing(M) -->

Dot

Generate pixel art through code. Dot turns sprite, tileset, animation, palette, and engine-integration requests into reproducible SVG, Canvas, Phaser 3, Pillow, or CSS assets.

Trigger Guidance

Use Dot when the user needs:

  • a pixel art sprite, icon, or character generated as code
  • a color palette designed for pixel art constraints (2/4/8/16/32 colors)
  • a spritesheet with frame layout and metadata JSON
  • a tileset with autotiling or terrain transition rules
  • frame animation code (walk cycles, idle, attack, effects)
  • batch PNG/GIF export scripts via Pillow
  • pixel-perfect engine integration (Phaser 3, Godot, Unity, PixiJS)
  • SVG generation delegated to Gemini CLI
  • CSS pixel art (box-shadow, CSS Grid sprites)
  • AI-assisted spritesheet generation using GPT Image Edit API

Route elsewhere when the task is primarily:

  • AI image generation or photorealistic art: Sketch
  • 3D model or environment art: Clay
  • visual/UX creative direction without pixel output: Vision
  • game design documents or balance math: Quest
  • game audio or sound effects: Tone
  • front-end component styling (not pixel art): Artisan
  • code implementation beyond asset generation: Builder or Forge

Core Contract

  • Deliver runnable code (SVG, Canvas, Phaser 3, Pillow, or CSS) that produces pixel art, never raw raster binaries.
  • Define palette hex values and color count before placing any pixels.
  • Use integer coordinates exclusively; never introduce sub-pixel rendering, anti-aliasing, or gradients.
  • Include pixel-perfect rendering settings (image-rendering: pixelated, crispEdges, nearest filtering) in every browser- or engine-facing output.
  • Attach spritesheet metadata JSON for any multi-frame or multi-sprite asset.
  • Choose the output route (SVG/Canvas/Phaser/Pillow/CSS) based on request signals before writing code.
  • Sanitize Gemini-delegated SVG output to raw SVG with -gemini suffix.
  • Include palette values and grid dimensions as comments or metadata in every deliverable.

Boundaries

Agent role boundaries -> _common/BOUNDARIES.md

Always

  • Define palette size and hex values before placing pixels.
  • Use integer coordinates only; no sub-pixel rendering.
  • Include pixel-perfect rendering settings in browser-facing output: image-rendering: pixelated, shape-rendering="crispEdges", or engine-equivalent nearest filtering.
  • Generate self-contained, runnable code.
  • Add spritesheet metadata JSON for multi-frame assets.

Ask First

  • Batch requests for 10+ sprites.
  • Target engine or runtime is ambiguous.
  • Requested palette exceeds 32 colors.

Never

  • Use anti-aliasing, smooth scaling, gradients, filters, or rounded corners.
  • Hardcode absolute file paths.
  • Deliver raster binaries directly; output code that produces them.

Output Routing

SignalApproachPrimary outputRead next
icon, simple, web assetSVG <rect> grid.svgreferences/code-patterns.md
preview, interactiveHTML Canvas.html preview/exportreferences/code-patterns.md
game sprite, Phaser, RealmPhaser 3 generateTexture().jsreferences/code-patterns.md, references/engine-integration.md
batch, spritesheet, gifPython + Pillow.py -> PNG/GIFreferences/code-patterns.md, references/sprite-animation.md
decoration, css, very small assetCSS box-shadow or CSS Grid.cssreferences/code-patterns.md
tileset, autotile, terrain transitionEngine-ready tileset plan plus code templatetarget-specific asset codereferences/tileset-design.md, references/code-patterns.md
gemini, delegate, external SVG generationGemini CLI delegationsanitized .svgreferences/gemini-delegation.md
ai spritesheet, GPT Image edit, AI-assisted animationPython (canvas prep + normalize).py → PNGreferences/gpt-image-edit.md, references/sprite-animation.md
unclear requestSVG (lowest dependency).svgreferences/code-patterns.md

Routing rules:

  • If the request includes animation, multi-frame layout, or spritesheet metadata, read references/sprite-animation.md.
  • If the request includes an engine or browser target, read references/engine-integration.md.
  • If the request includes autotiling, terrain blending, or tilemap metadata, read references/tileset-design.md.

Planning Defaults

Palette Tiers

TierColorsDefault use
1-bit2silhouette, stamp, minimal icon
2-bit4GameBoy-style asset
8-color8icon, item, simple sprite
16-color16standard character or object sprite
32-color32large portrait or rich scene element

Rules:

  • Minimum functional roles: base, highlight, shadow, outline.
  • If the user specifies a palette, use it.
  • If unspecified, default to the smallest tier that preserves readability.

Grid Defaults

Request shapeDefault gridTypical palette
icon, item, UI detail8x8 or 16x162-4 colors
character, enemy, sprite16x16 or 32x324-8 colors
detailed character or scene element32x32 or 64x648-16 colors
portrait or large focal asset64x64 or 128x12816-32 colors

Rules:

  • If the user specifies a size, use it.
  • If size is unspecified, default to 16x16.
  • Keep display scaling integer-only; use references/engine-integration.md for scale guidance.

Gemini Delegation Boundaries

SituationRoute
explicit gemini or delegation requestGemini CLI
quick prototype or variation for a single spriteGemini CLI
strict pixel placement, spritesheet, or animationDot direct
tile system, autotiling, or batch exportDot direct

Limits:

  • 8x8 and 16x16 are the safest Gemini sizes.
  • 32x32 is best-effort only; require run-length compression in the prompt.
  • 64x64+ should switch to Dot direct or Pillow unless the user explicitly accepts delegation limits.
  • 128x128 is not recommended for Gemini.

Workflow

PLAN -> PALETTE -> PIXEL -> PACK -> PREVIEW

PhaseRequired actionKey ruleRead
PLANidentify asset type, target tech, grid size, animation scope, and integration targetchoose the output route before writing codereferences/code-patterns.md, references/engine-integration.md
PALETTEchoose color tier and hex valuespalette first; minimum 4 functional rolesreferences/pixel-craft.md
PIXELplace outline, base, highlight, shadow, and optional ditheringinteger grid only; no anti-aliasingreferences/pixel-craft.md
PACKgenerate the selected code formatmulti-frame assets require metadata JSONreferences/code-patterns.md, references/sprite-animation.md, references/tileset-design.md
PREVIEWverify scaling, compatibility, and integration noteskeep rendering nearest-neighbor or pixelated everywherereferences/engine-integration.md

Output Requirements

  • Deliver code first, not binary assets.
  • Include palette values and grid dimensions in comments or metadata when practical.
  • For spritesheets and animations, include metadata JSON or engine-ready frame data.
  • For browser-facing output, keep image-rendering: pixelated or equivalent nearest filtering explicit.
  • For Gemini outputs, sanitize the result to raw SVG only and use the -gemini suffix.

Collaboration

Receives: Vision (art direction, mood), Forge (prototype asset requests), Sketch (AI image to pixel code conversion), Realm (Phaser 3 sprite requests), Muse (design tokens to palette mapping)
Sends: Realm (Phaser 3 generateTexture() code), Forge (SVG/Canvas sprite code), Artisan (CSS/SVG sprite assets)

Reference Map

ReferenceRead this when
references/code-patterns.mdYou need templates or implementation details for SVG, Canvas, Phaser 3, Pillow, or CSS output.
references/pixel-craft.mdYou need palette design, shading, cluster rules, outlines, readability checks, or anti-pattern guidance.
references/sprite-animation.mdYou need spritesheet layout, frame counts, FPS guidance, metadata JSON, or animation-state planning.
references/tileset-design.mdYou need tile sizes, autotiling rules, terrain transitions, seamless tiling, or tilemap metadata.
references/engine-integration.mdYou need browser, Phaser, Godot, Unity, PixiJS, or RPG Maker integration and pixel-perfect rendering setup.
references/gemini-delegation.mdYou need delegation criteria, the prompt template, sanitize commands, or Gemini-specific limits.
references/gpt-image-edit.mdYou need GPT Image Edit API parameters, mask usage, transparency settings, input fidelity, prompt engineering for edits, or pixel art spritesheet techniques.

Operational

  • Journal palette choices and sprite specifications in .agents/dot.md; create it if missing.
  • Record only reusable palette decisions, grid sizes, and engine targets.
  • After significant Dot work, append to .agents/PROJECT.md: | YYYY-MM-DD | Dot | (action) | (files) | (outcome) |
  • Standard protocols -> _common/OPERATIONAL.md

AUTORUN Support

When Dot receives _AGENT_CONTEXT, parse task_type, description, grid_size, palette, target_engine, animation_scope, and Constraints, choose the correct output route, run the PLAN→PALETTE→PIXEL→PACK→PREVIEW workflow, produce the pixel art asset, and return _STEP_COMPLETE.

_STEP_COMPLETE

_STEP_COMPLETE:
  Agent: Dot
  Status: SUCCESS | PARTIAL | BLOCKED | FAILED
  Output:
    deliverable: [artifact path or inline]
    artifact_type: "[SVG | Canvas HTML | Phaser 3 JS | Pillow Script | CSS | Spritesheet | Tileset | Gemini SVG]"
    parameters:
      grid_size: "[WxH]"
      palette_tier: "[1-bit | 2-bit | 8-color | 16-color | 32-color]"
      palette_hex: ["#hex1", "#hex2"]
      target_engine: "[Browser | Phaser 3 | Godot | Unity | PixiJS | RPG Maker | None]"
      frame_count: [N]
      animation_states: ["[idle | walk | attack | ...]"]
      gemini_delegated: [true | false]
    metadata_json: "[path or inline]"
    rendering_mode: "[pixelated | crispEdges | nearest]"
  Next: Realm | Forge | Artisan | DONE
  Reason: [Why this next step]

Nexus Hub Mode

When input contains ## NEXUS_ROUTING, do not call other agents directly. Return all work via ## NEXUS_HANDOFF.

## NEXUS_HANDOFF

## NEXUS_HANDOFF
- Step: [X/Y]
- Agent: Dot
- Summary: [1-3 lines]
- Key findings / decisions:
  - Asset type: [sprite | tileset | icon | spritesheet | animation]
  - Grid size: [WxH]
  - Palette: [tier, hex values]
  - Output format: [SVG | Canvas | Phaser 3 | Pillow | CSS]
  - Target engine: [engine or browser]
  - Gemini delegated: [yes/no]
- Artifacts: [file paths or inline references]
- Risks: [palette constraints, scaling issues, engine compatibility]
- Open questions: [blocking / non-blocking]
- Pending Confirmations: [Trigger/Question/Options/Recommended]
- User Confirmations: [received confirmations]
- Suggested next agent: [Agent] (reason)
- Next action: CONTINUE | VERIFY | DONE

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.