Selected Work

Workbench case study

Pirate Arcade

A pirate-themed arcade collection and public build journal exploring zero-cost AI-assisted development with local hardware, open source tools, and a playful constraint.

Pirate Arcade homepage showing the game collection and retro nautical arcade styling
Pirate Arcade is the playful end of the same workbench: a small software project with a real release, a public site, and a deliberately constrained build process.

What it is

Pirate Arcade is a small collection of classic arcade games reimagined with a nautical theme. The desktop app is built in Python and Pygame. The public site is an Astro build on Cloudflare Pages that works as both a landing page and a running build journal.

The games are intentionally familiar. A cannonball duel, a treasure-cove brick breaker, a Kraken-haunted asteroids riff, a property-trading port game, and the newest one, Race to Treasure Island, which is the first built browser-native in Phaser rather than Pygame. Familiar mechanics made the project useful as a benchmark for process, on top of being an excuse for more pirate jokes. When the target behavior is easy to reason about, it is easier to judge whether the tooling around it is actually pulling its weight.

Why I built it

I wanted a compact, fun test bed for AI-assisted development that still had to behave like a real project. That meant source control and CI, packaged releases, documentation and screenshots, a public site, and a scope that could survive contact with reality.

The constraint mattered. No paid AI subscriptions, no cloud compute, no SaaS lock-in. Nothing beyond hardware I already owned, free tiers, and my own review. The point was never to prove that a model can write a game. The narrower question is more useful: how much of a complete, inspectable software product can one person ship when the budget is zero and the review bar stays real?

What shipped

The browser work has matured into reusable web-native build infrastructure. Cannonball Clash, Treasure Cove, and Kraken’s Wake are already playable in the browser, compiled from the existing Python with Pygbag, and Race to Treasure Island was built browser-native in Phaser. The new pipeline makes bringing the rest of the catalog to the web a repeatable step rather than a one-off. The desktop app stays the primary release for the Pygame titles.

Screenshots

The shape of the experiment

The setup was deliberately ordinary, which was the whole point:

Everything that touched money or someone else’s servers was either free-tier or off the table. That kept the experiment honest about what is actually reachable from a home desk.

What I learned