ux-user-flow

Installation
SKILL.md

UX User Flow Skill

Navigation architecture and user journey patterns for single-page game applications. This skill covers routing, state-driven UI, and progressive disclosure.

State-Based Routing

Game State Machine

const GAME_STATES = {
  loading: 'game-loading',
  playing: 'game-playing',
  paused: 'game-paused',
  complete: 'game-complete',
  menu: 'game-menu'
};

class GameRouter {
  #state = GAME_STATES.loading;
Related skills

More from matthewharwood/fantasy-phonics

Installs
5
GitHub Stars
1
First Seen
Jan 28, 2026