test-playable-web-games

Tests playable browser games end to end with deterministic fixtures and real browser evidence.

5.7k|685|Updated Feb 3, 2026
One-click install
npx skills add https://github.com/MengTo/Skills --skill test-playable-web-games
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test-playable-web-games
Source: https://github.com/MengTo/Skills/tree/main/agent-skills/game-development/test-playable-web-games
Command: npx skills add https://github.com/MengTo/Skills --skill test-playable-web-games

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

A green build does not prove a game is actually playable. This Skill closes the gap between passing builds and real gameplay quality by combining deterministic test fixtures with short real browser playthroughs, so regressions in controls, saves, and UI feedback are caught before release.

Core Features & Use Cases

  • Test Matrix Planning: Maps the full player journey from launch and new game through combat, rewards, saves, pause, settings, and completion, with device variants for desktop, touch portrait, touch landscape, and reduced motion.
  • Deterministic Review States: Uses seedable fixtures, debug routes, and query parameters to jump directly to boss phases, inventory loadouts, save migrations, low health, and error states instead of grinding through the campaign.
  • Evidence-Based Reporting: Records reproduction steps, expected versus actual results, severity, viewport, and console or performance findings, separating new regressions from pre-existing baseline issues.
  • Use Case: Before shipping a WebGL platformer update, run the skill to verify keyboard and touch controls, confirm save/continue works across sessions, check the console for errors on a live scene, and produce an actionable QA report.

Quick Start

Use the test-playable-web-games skill to run an end-to-end playtest of my browser game and report any gameplay regressions with reproduction steps.

Frequently Asked Questions about test-playable-web-games

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

FAQPage Schema
How do I test a playable web game end to end?

Start by mapping the player journey into a test matrix covering launch, controls, core actions, saves, and completion. Then combine deterministic fixtures for key states with short real browser playthroughs, recording reproduction steps and expected versus actual results for every issue found.

How to test browser games on mobile and touch devices?

Add device variants to your test matrix for touch portrait, touch landscape, and reduced motion alongside desktop keyboard and mouse. Verify control response and UI feedback on each viewport, since touch targets and layout behavior often differ from desktop.

Why is a passing build not enough for game QA?

A green build only proves the code compiles and unit checks pass, not that the game is playable. Gameplay issues like broken controls, failed save migrations, or missing UI feedback only surface during real playthroughs with screen-visible verification.

What are deterministic fixtures in game testing?

Deterministic fixtures are seedable states, debug routes, or query parameters that jump directly to specific game conditions like a boss phase, low health, or a save migration. They let testers verify important transitions without grinding through the entire campaign.

Can this skill replace manual game playtesting?

No, it complements manual playtesting rather than replacing it. Deterministic tests cover repeatable transitions efficiently, but short real playthroughs remain necessary to confirm the actual player experience, visual feedback, and console health on live scenes.