Create a 3×3 earth-titan idle sprite
Uses generate2dsprite
- No additional input is required; the prompt supplies the subject, action, and sheet layout.
Use $generate2dsprite to create a 3x3 idle for an ultimate earth titan.

This skill enables the creation and revision of 2D game environments, ranging from tactical arenas and RPG maps to side-scroller parallax scenes. It allows developers to define specific art directions, collision models, and engine export targets to ensure assets are functional within a game runtime.
By integrating image generation with structural requirements, it streamlines the production of tilemaps, layered raster maps, and walkable area definitions for indie game development.
Follow the documented setup, then try a first task.
Installs: Agent Sprite Forge skills bundle copied from .\skills; video2dsprite is not mapped because it is unsupported on Codex · Codex
Platform: Windows PowerShell
In a Windows PowerShell terminal, clone the repository, enter it, install its Python requirements, and copy the skills bundle into the Codex skills directory.
git clone https://github.com/0x0funky/agent-sprite-forge.git cd .\agent-sprite-forge python -m pip install -r .\requirements.txt New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.codex\skills" | Out-Null Copy-Item -Recurse -Force ` ".\skills\*" ` "$env:USERPROFILE\.codex\skills\"
After installation, start a new Codex session so the skills are reloaded.
Installs: Agent Sprite Forge skills bundle copied from ./skills; video2dsprite is not mapped because it is unsupported on Codex · Codex
Platform: macOS or Linux
In a terminal, clone the repository, enter it, install its Python requirements, and copy the skills bundle into the Codex skills directory.
git clone https://github.com/0x0funky/agent-sprite-forge.git cd ./agent-sprite-forge python3 -m pip install -r ./requirements.txt mkdir -p ~/.codex/skills cp -R ./skills/* ~/.codex/skills/
After installation, start a new Codex session so the skills are reloaded.
Installs: Agent Sprite Forge skills bundle copied into both the Codex and Grok Build skills directories; video2dsprite is for Grok Build only · Codex, Grok Build
Platform: Windows PowerShell
In a Windows PowerShell terminal, clone the repository, enter it, install its Python requirements, and copy the complete skills bundle into both the Codex and Grok Build skills directories.
git clone https://github.com/0x0funky/agent-sprite-forge.git cd .\agent-sprite-forge python -m pip install -r .\requirements.txt # Codex New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.codex\skills" | Out-Null Copy-Item -Recurse -Force ".\skills\*" "$env:USERPROFILE\.codex\skills\" # Grok Build (required for $video2dsprite video generation) New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.grok\skills" | Out-Null Copy-Item -Recurse -Force ".\skills\*" "$env:USERPROFILE\.grok\skills\"
After installation, start a new Codex session so the copied Codex skills are reloaded.
Uses generate2dsprite
Use $generate2dsprite to create a 3x3 idle for an ultimate earth titan.
Uses generate2dmap
Use $generate2dmap to plan the smallest playable map bundle for a top-down monster-taming route in <PROJECT_PATH>. Use tile_mode and include collision, encounter zones, exits, and NPC spawn markers. Begin with the map plan and expected deliverables.
Uses video2dsprite
On Grok Build, use $video2dsprite to turn <BASE_STILL_PATH> into a side-view, 6-second in-place run animation. Export an 8-frame strip and GIF using 128px cells, feet anchoring, and the required magenta chroma background, then report any quality-control issues.