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;