mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-09-17 18:21:33 +00:00
Update project planning and implement game-end components: tweak .gitignore entries, bump planning state progress, and add extensive Phase 04 artifacts (plans, summary, research, validation) plus Phase 05 initial plan. Deliverables include index.html overlay for game-over UI and modifications to src/game/Game.ts and src/models/Tile.ts to support win / no-moves detection and restart hooks; also add GameStateManager / NoMovesDetector integration notes and tests scaffolding in planning docs. Purpose: prepare and record implementation details for win/lose detection, game-over overlay, input blocking, reset/restart flow, and board-generation recovery.
55 lines
611 B
Plaintext
55 lines
611 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Editor directories and IDEs
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local settings
|
|
settings.local.json
|
|
|
|
# Test coverage
|
|
coverage/
|
|
|
|
# Shell configs (should not be in repo)
|
|
.bash_profile
|
|
.bashrc
|
|
.profile
|
|
.zprofile
|
|
.zshrc
|
|
|
|
# Git configs
|
|
.gitconfig
|
|
|
|
# SSH/MCP configs
|
|
.mcp.json
|
|
|
|
# Git artifacts (not to be tracked)
|
|
HEAD
|
|
config
|
|
hooks
|
|
objects
|
|
refs
|
|
|
|
# Ripgrep config
|
|
.ripgreprc
|
|
|
|
# Git submodules
|
|
.gitmodules
|
|
|
|
# Claude skills (local development)
|
|
.claude/skills
|