# Conway's Game of Life

An interactive implementation of Conway's Game of Life using HTML5 Canvas.

## What it does

This skill generates a fully interactive cellular automaton simulator:

- **Click** cells to toggle them alive/dead
- **Start/Pause** the simulation with the play button
- **Step** through one generation at a time
- **Random** seed fills the grid with a random pattern
- **Clear** resets the grid
- Configurable grid size and simulation speed
- Wrapping edges (toroidal grid)

## Rules

1. Any live cell with 2 or 3 neighbors survives
2. Any dead cell with exactly 3 neighbors becomes alive
3. All other cells die or stay dead

## Usage

```
Provide this skill to an AI agent to generate an interactive Game of Life.
The agent should create the HTML file and open it in a browser.
```
