Leaderboard/Media/agent-sprite-forge
Last commit on July 12, 2026·Created on April 23, 2026

0x0funky/agent-sprite-forge

A system for generating production-oriented 2D game maps and environmental assets.
Combined rank
#99
across all skills
In Media
#5
category rank
Stars
4.1k
+1.6% in last 7d
Forks
402
+1.8% in last 7d
Watchers
11
0.0% in last 7d
Traction scoreGitHub stars can be faked, so popularity alone can be misleading. Traction Score looks for broader signs of recent attention, adoption, and active maintenance.
TL;DR

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.

WHO IT'S FOR
Indie game developers
generating 2D sprites and animated GIFs
Game level designers
creating production-oriented 2D game maps
2D game artists
prototyping assets and animation cycles
AI automation builders
integrating asset generation into AI workflows
Repository contents

3 skill files

Compatible AgentsThe repository documents support for these agents. The skills may also work with other agents that can load SKILL.md files, but they may need some setup or small changes.

Use this skill collection

Follow the documented setup, then try a first task.

I’m using

Codex on Windows PowerShell

Installs: Agent Sprite Forge skills bundle copied from .\skills; video2dsprite is not mapped because it is unsupported on Codex · Codex

Before you start
  • Python available through the `python` command

Platform: Windows PowerShell

  1. 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\"
  2. After installation, start a new Codex session so the skills are reloaded.

skills/generate2dmap/SKILL.md · Checked Sep 18, 2026skills/generate2dsprite/SKILL.md · Checked Sep 18, 2026skills/video2dsprite/SKILL.md · Checked Sep 18, 2026README.ja.md · Checked Sep 18, 2026

Give it something to do.

Author’s example

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.
skills/generate2dsprite/SKILL.md · Checked Sep 18, 2026README.ja.md · Checked Sep 18, 2026
Suggested first task

Plan a small playable monster-taming route

Uses generate2dmap

  • Replace <PROJECT_PATH> with the local game-project path.
  • Provide the engine target, camera requirements, and approximate map scale if the existing project does not establish them.
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.
skills/generate2dmap/SKILL.md · Checked Sep 18, 2026