A r/aigamedev post from Jakal7 (John Kinyanjui) introduces Sprite Studio, an MIT-licensed desktop app that uses a locally installed Codex CLI to create and animate 2D game assets. The design bet: image models alone cannot keep a character consistent across animation frames, so the pipeline runs through a code agent with a harness constraint.

How it works:

  • Generates characters, creatures, props, and effects, then previews animated sprite loops
  • Keeps character, style, proportions, and equipment consistent across frames via an internal “sprite harness”
  • Organizes assets and AI conversations into worktrees for isolation
  • Adjusts animation timing and inspects individual frames
  • Includes a playground to test movement before export
  • Exports sprite sheets; ChatGPT-backed today, with more providers (including open-weight models) planned

The interesting pattern is treating frame consistency as a pipeline problem, not a prompting problem. Instead of hoping a raw image model keeps a six-legged creature coherent across frames, the app constrains generation through the code agent and a harness that checks each frame against the original. Community reception was warm — the main friction reported was local build complexity, not the workflow itself.

A useful reference point for anyone building AI-assisted 2D asset pipelines, and a concrete argument that agentic tooling plus constraints beats direct image generation for animation work.