SOVANN / Game

Tic-Tac-Toe

1. The Hook & The Concept

6/22/2026Views: 0Launches: 0
  1. The Hook & The Concept

In this one-day sprint, we built a simple but complete Tic Tac Toe web app where a human player plays against an AI opponent. The app runs from a single index.html file and does not need any framework, package manager, build tool, or external asset.

The idea was intentionally small: create a classic game that is easy to understand, quick to test, and perfect for experimenting with AI-assisted development. Tic Tac Toe is familiar to almost everyone, so the focus could stay on the workflow: planning with AI, coding fast, testing behavior, and improving the experience step by step.

The final app is for anyone who wants a lightweight browser game. The human player plays as X, the AI plays as O, and each round ends with a result popup: You Win, You Lost, or **Draws!

From there, the player can choose Resume to keep the current score or New Game** to restart from zero.

The Tech Stack & AI Co-Pilots

  1. The stack was deliberately minimal:

The AI assist was handled by Codex inside ChatGPT. The tasks were split naturally:

The most useful part of AI support was the fast loop: request a feature, implement it, test it, then refine the next interaction.