← Reddit

Built a game with Claude. Two things that made it work, and one that didn't.

Reddit · JsonPun · July 29, 2026
A developer created Wanderfolk, a browser roguelike built with Claude, planning the full roadmap upfront and implementing features in structured 30-minute chunks to maintain focus. While automated code review effectively caught code quality issues like magic numbers and convention drift, it failed to detect gameplay bugs that only emerged during actual play, such as becoming stuck in a car mode with no exit mechanism.

Detailed Analysis

A developer's Reddit post detailing the creation of Wanderfolk, a free browser-based roguelike built with Claude Code, offers a granular case study in how AI coding agents are reshaping the practical workflow of small-scale game development. The game itself is modest in scope — four character classes, real-time combat, companion recruitment, gear drops, and shrine-based progression — but the notable part of the post isn't the game, it's the process. The developer describes their role as "direction and testing" while Claude Code handled implementation, a division of labor that has become increasingly common among hobbyist and indie developers using Claude as a primary coding partner rather than a supplementary tool.

The most substantive insight from the post concerns project management rather than code generation. The developer found that giving Claude the full scope of the game upfront caused it to lose direction, while a two-stage approach worked better: first collaboratively building a comprehensive feature roadmap with Claude, then executing that roadmap in roughly 30-minute increments, with Claude proposing the next task from the agreed list and the human selecting which to pursue. This mirrors a broader pattern observed across agentic coding workflows — that large language models perform more reliably when given a stable, pre-negotiated plan and scoped, bounded tasks rather than open-ended instructions to "build a whole game." It also implicitly highlights a current limitation of tools like Claude Code: they still benefit from a human anchoring point to prevent scope drift, even when the model itself is capable of ambitious planning. The developer's stated interest in automating or parallelizing the "pick-and-build" loop suggests where the next wave of agentic tooling is headed — reducing the human's role from active selector to overseer of concurrently running task streams.

The second lesson, about automated code review, is arguably the more conceptually interesting finding. The developer ran an automated reviewer on every GitHub push and found it effective at catching a specific class of problem: Claude inventing inconsistent conventions and scattering unexplained "magic numbers" through gameplay code — the kind of entropy that accumulates silently in AI-generated codebases and eventually makes them unmaintainable even for the AI itself. But the reviewer was structurally blind to a different category of failure: broken player experience that doesn't violate any coding standard. The now-famous example — a car power-up with no exit state, permanently locking the player in "car mode" — illustrates this precisely. Every function involved was clean and internally correct; the bug was a missing state transition invisible to any tool that isn't actually playing the game with a goal in mind. The developer attributes this gap to not having supplied the reviewer with the original ticket or intent, suggesting that static or automated review tools are fundamentally limited without context about *what* the code is supposed to accomplish for a user, not just whether it's well-formed.

Taken together, these two lessons speak to a maturing understanding of where Claude Code excels and where it still requires scaffolding: it's strong at rapid, directed implementation and at maintaining code hygiene when explicitly asked to review for it, but weak at inferring implicit product intent or catching experiential bugs that only surface through actual use. This tracks with broader industry discourse around agentic AI coding tools in 2025-2026 — the consensus emerging from practitioners is that the bottleneck has shifted from "can the AI write code" to "how do humans structure planning, task decomposition, and review so that AI-generated systems remain coherent, testable, and actually fun or usable." Posts like this one function as informal case studies that shape best practices across the growing community of people using Claude Code for creative and technical side projects, reinforcing that effective human-AI collaboration in software development is less about prompting skill and more about workflow design — roadmapping, chunking, and knowing which categories of bugs require a human playtester rather than a linter.

Article image Read original article →