A dependency-free browser game that turns Herdr's default terminal shortcuts into concrete farm jobs. Twelve feature lessons can be completed in any order while preserving the real Ctrl+B prefix rhythm, direct-key interactions inside copy and navigation modes, and Herdr's tab and workspace naming behavior. An on-screen keyboard gives touch users the same path through every lesson. Campaign content, input normalization, progress validation, scoring, and seeded practice generation live in a pure JavaScript module covered by Vitest; a small controller connects those rules to semantic HTML, Web Audio cues, dialogs, and localStorage; and a separate Canvas engine translates each successful command into workspace, tab, and pane state alongside fences, flock movement, weather, maps, ledgers, and character dialogue. The canvas maintains an accessible text description and live captions, motion responds to prefers-reduced-motion, and the responsive layout keeps the full exercise usable on narrow screens. The entire application deploys as six static files through a Cloudflare Worker, with no Worker script, binding, database, application server, or client framework.
Browser (keyboard or touch)
│ GET six static files
▼
Cloudflare Worker (Static Assets only)
├── index.html + styles.css ── semantic, responsive interface
└── JavaScript ES modules
├── game-core.js ──── campaign, input rules, scoring, persistence
├── game.js ───────── DOM controller, touch parity, audio, dialogs
└── farm-world.js ─── Canvas scenes, animation, text equivalents
│
└── browser localStorage ── lesson results, stars, wool
No Worker script, bindings, database, application server, or framework