Two prototype games for learning American Sign Language fingerspelling.
Tap-to-match card games that build from handshapes to full signed sentences.
An arcade maze game — steer Pac‑Man to eat handshape letters in spelling order.
Both games are built with Claude Code, an AI assistant that edits code from plain-English instructions in your terminal. Here is the whole path from a fresh Windows machine to your own change running in a browser.
For Windows 10 (1809 or newer) and Windows 11, 64-bit. Every command below goes in PowerShell — press Win, type PowerShell, hit Enter.
Two free tools the project needs. Install both, then close and reopen PowerShell so it picks them up.
Check both worked:
git --version
node --versionEach should print a version number. If one says “not recognized”, reopen PowerShell, and reinstall if it still fails.
One line — it installs for your user account only, no admin rights needed:
irm https://claude.ai/install.ps1 | iexThen confirm it landed:
claude --versionSet-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUserclaude doctor from %USERPROFILE%\.local\bin.
Start Claude Code and it opens your browser to sign in:
claude
The terminal prints Login successful when you are done. Type /exit to
leave for now.
This puts the code in a folder called ASL_app inside your user folder:
cd ~
git clone https://github.com/TacoTruckGames/ASL_app.git
cd ASL_appGit will pop open a browser to connect your GitHub account the first time.
Install its dependencies once, then start it:
cd webapp
npm install
npm run web
npm install takes a few minutes the first time. When it finishes,
npm run web prints a local address — usually
http://localhost:8081. Open it and you should see the five levels.
Leave this window running; press Ctrl+C to stop it later.
Open a second PowerShell window so the app keeps running, go to the project, and start Claude Code:
cd ~\ASL_app
claudeNow just ask, in plain English:
Add a new word VAN with a van emoji to the Level 3 word list
Claude Code finds the right file (webapp/src/theme.ts), shows you the exact
edit, and asks before changing anything. Approve it, and the running app reloads on its own
— no restart needed.
Good follow-up things to ask it:
What does this project do?
Make the Level 1 cards wiggle faster
Add a new CVC word for every letter of the alphabet
Explain how the celebration animation worksNothing you do is permanent until you commit it. To see what changed, or throw it all away:
git status
git diff
git checkout .That last command discards every uncommitted change and puts you back where you started, so experiment freely. You can also just ask Claude Code to commit for you.
Claude Code docs: install · quickstart · troubleshooting