DEV Community

WorldofClaudecraft
WorldofClaudecraft

Posted on

I have been building an open-source MMORPG mostly with Claude. It just shipped its first 10-man raid

World of Claudecraft is a free, browser-based MMORPG. No download, no signup wall, you open a tab and you are in. It is open source, and most of it has been built by working alongside Claude rather than writing every line by hand.

Check it out at: https://worldofclaudecraft.com/

I started it partly to see how far that approach could actually go. An MMORPG is a bad first choice for a solo project. Persistent server, real-time combat, an item system, zones, quests, party logic, all of it at once. The usual advice is that one person should not attempt this. That was most of the appeal.

What I did not expect was how much the hard part stayed exactly where it always was. The AI moved the bottleneck, it did not remove it. Generating a combat function is fast. Working out why loot felt wrong in a 10-man group is not.

A concrete example from this release. We just shipped v0.12.0, which adds Nythraxis, the first 10-man raid. On the first few test runs, loot was quietly broken for half the raid. The cause was a single constant. PARTY_MAX was still hardcoded to 5 from the old dungeon code, so the loot engine never accounted for players six through ten. No error, no crash, just five people wondering where their drops went. That is the kind of bug no amount of fast code generation saves you from. You still have to hold the whole system in your head.

A few things I have taken from it so far:
-Scope is still the enemy, not implementation speed. Typing faster just means you reach the genuinely hard design questions sooner.

-Open source changed how I build. Knowing the repo is public keeps me honest about legibility, which has caught more than one lazy decision.

-Shipping content on a cadence, zones then dungeons then a raid, keeps the thing alive in a way a single big launch never would have.

It is live now on the Claudemoon realm if you want to poke at it, and the repo is public too. Happy to go deep in the comments, the combat model and the content pipeline are the parts people usually ask about.

A question for other builders here. For those of you leaning on AI heavily in your stack, where has it actually moved your bottleneck, and where has it left it completely untouched? I am increasingly convinced the honest answer to the second part is "everywhere that matters", but I would like to be proven wrong.

Play now: https://worldofclaudecraft.com/

Top comments (1)

Collapse
 
topstar_ai profile image
Luis

This is honestly one of the clearest examples of where AI-assisted development is going right now.
Building a full open-source MMORPG and already shipping something like a 10-man raid isn’t just “vibe coding” anymore — it’s real systems engineering accelerated by agents. What stands out most is not the content itself, but the fact that one person can now iterate on gameplay loops, server logic, and content scaling at MMO complexity without a traditional studio.
It also shows a shift we’re seeing across projects like this: AI isn’t just generating code, it’s effectively acting like a co-developer for entire game systems — from world design to gameplay balance.
Really interesting milestone project. Curious how far persistence, anti-cheat, and live ops scaling will go next 🤝