create-game

Scaffold browser-based board games with HTML, CSS, and JavaScript templates.

Updated Feb 2, 2026
One-click install
npx skills add https://github.com/tegnike/ai-agent-game-streamer --skill create-game
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: create-game
Source: https://github.com/tegnike/ai-agent-game-streamer/tree/main/.agents/skills/create-board-game
Command: npx skills add https://github.com/tegnike/ai-agent-game-streamer --skill create-game

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a ready-to-use framework to design and implement browser-based board games using HTML, CSS, and JavaScript, helping developers quickly prototype new titles with AI opponents.

Core Features & Use Cases

  • Template-based game scaffolds for common board games (Othello, Gomoku, Chess, Go, etc.)
  • Standardized file structure with index.html, script.js, and style.css for rapid customization
  • AI opponent hooks and basic gameplay loop to iterate on game logic

Quick Start

Copy and adapt the templates in templates/ to create a new game under games/<game-name>/, implement game logic in script.js, UI in index.html, and styling in style.css, then run a local server to test.

Frequently Asked Questions about create-game

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a browser-based board game using HTML, CSS, and JavaScript?

You can scaffold browser-based board games by copying templates into a standardized directory structure with index.html, script.js, and style.css, then implementing game logic in JavaScript and styling with CSS.

Can I embed an AI opponent in a JavaScript board game?

Yes, you can embed an AI opponent in a JavaScript board game by using provided AI opponent hooks within the gameplay loop. These hooks allow you to integrate and iterate on computer-controlled logic alongside standard game mechanics.

What is the standard project layout for HTML5 game development?

The standard project layout for browser-based game development organizes files into a games/<name>/ directory containing index.html for UI, script.js for logic, and style.css for styling to ensure rapid customization and consistent structure.

Does this board game template support games like Chess, Go, and Othello?

Yes, the board game templates support common grid-based games like Othello, Gomoku, Chess, and Go. You select the appropriate template, adapt the UI and styling, and implement the specific game logic in JavaScript.

How do I quickly prototype a new board game with AI opponents?

You quickly prototype a new board game by copying provided templates into a new directory, adapting the HTML and CSS for the UI, implementing the gameplay loop in JavaScript, and integrating AI logic through the provided hooks.