How Poussée Works in 60 Seconds
Three things make Poussée different from every other chess site: it runs in your browser, it stores progress on your device, and it works without an account. Here's the whole architecture in one diagram.
The Architecture at a Glance
What This Means for You
- Zero-friction start — open the page, you're playing. No signup wall, no email gate.
- Instant moves — engine and puzzles run on your CPU, not a server. There's no network round-trip on a move.
- Privacy by default — your games never leave your device unless you explicitly sign in to sync.
- Offline-first — once cached (~30 seconds on first visit), the entire app works on a plane.
- Same code everywhere — the web app, PWA, and Tauri desktop builds all run the same Svelte bundle.
Sign In: Pros, Cons & How It Works
You never have to sign in. The full app works anonymously. But signing in unlocks cross-device sync, leaderboards, and friends — and we use a passwordless flow so there's nothing to remember or leak.
Just Play
- All puzzles, lessons, and bots
- Stockfish analysis & coaching
- Streak, XP, coins, DNA
- Daily ritual, achievements, drills
- 100% offline-capable
- Nothing leaves your device
- No sync between devices
- No global leaderboards
- No friends or duels
- Clearing browser data wipes progress
Just Play + Cloud
- Everything in Anonymous, plus:
- Sync across phone, laptop, tablet
- Global & weekly leaderboards
- Friends list & puzzle duels
- Cloud-saved game history
- Vote & rate puzzles/lessons
- Restore on a new device in one click
- No password to lose
- Requires an email address
- Sync needs an internet connection
How Sign-In Actually Works (Magic Link)
The Auth Flow
That's it. No password is ever created, so there's nothing to be stolen, reused, or forgotten. Sessions persist until you tap Sign out in the rail.
Sign-In Methods Available
| Method | Status | Notes |
|---|---|---|
| Magic link (email) | Live | Default. One-time link, no password. |
| Apple Sign In | Live | iOS, macOS, and any web browser. Hides your real email if you want. |
| Google Sign In | Live | One-tap on Android & Chrome. |
| GitHub OAuth | Soon | For developer accounts. |
| Passkeys (WebAuthn) | Soon | Biometric, no email round-trip. |
What Happens to Anonymous Progress When You Sign In?
It's migrated, not erased. The first time you sign in, every key in localStorage (streak, XP, coins, history, DNA, settings) is uploaded to your new account. If you've already signed in elsewhere, the higher-of-two values wins per field, with the most recent timestamp breaking ties. You never lose progress.
Stockfish 17, Running In Your Browser
Every move analysis, every bot opponent, every coach hint, every puzzle solution comes from Stockfish 17 — the same engine that powers Lichess analysis and tops the TCEC computer-chess championship. We compile it to WebAssembly and run it inside your tab.
~3500 ELO
At full strength, Stockfish 17 plays at roughly 3500 Elo — about 700 points stronger than the world's best human (~2830). We deliberately throttle it for bot personalities so games stay fun.
NNUE Neural Net
Modern Stockfish uses an NNUE (Efficiently Updatable Neural Network) for evaluation — a small chess-tuned neural network that runs on CPU, no GPU needed. The net is bundled with the engine binary.
WebAssembly
The engine is compiled from C++ to WASM, ~2 MB after gzip. It runs in a Web Worker so it never blocks the UI. Your moves stay local — nothing is sent to a server to be analyzed.
Multi-threaded (Native)
The Tauri desktop app and modern browsers (with COOP/COEP headers) get multi-threaded Stockfish via SharedArrayBuffer. That's typically 4×-8× faster analysis than single-threaded WASM.
How Bots Use the Engine
Each personality bot wraps Stockfish in a strength filter. We set:
- Skill Level (0–20) — Stockfish's built-in handicap, mapped from the bot's target rating.
- Search depth limit — lower for weaker bots so they can't see deep tactics.
- Move-time budget — from 50 ms (blitz bots) to 2 s (the boss tier).
- Personality noise — we sometimes pick the 2nd or 3rd best move to give a bot character (Maya prefers attacks, Knight Errant prefers exchanges, etc.).
This is why an 800-rated bot doesn't feel like 3500-Stockfish-with-handcuffs — it actually misses the same kinds of moves an 800-rated human would.
Engine Settings You Can Tune
| Setting | Default | Where |
|---|---|---|
| Analysis depth | 22 plies | Settings → Engine |
| Move-time cap | 1500 ms | Settings → Engine |
| Multi-PV (top N lines) | 3 | Analysis board |
| Threads (multi-core) | auto | Settings → Engine (desktop only) |
| Hash table size | 64 MB | Settings → Engine |
Why Not a Cloud Engine?
Cloud engines are common (Chess.com, Chess24) but come with three real costs: latency (you wait for a network round-trip on every analysis), privacy (your games are sent to and stored by a third party), and price (someone has to pay for that compute). Running Stockfish locally fixes all three. The only downside is that the very deepest analysis (depth 30+) takes a few seconds on a phone — on a desktop it's instant.
AI Tutor & the Token Economy
The Stockfish engine is free and offline. The AI Coach is different — it sends a position and a question to a large language model (Claude / GPT) and gets back a plain-English explanation. Those calls cost real money, so we meter them with credits. Here's exactly how the math works.
From Question to Answer
What 1 Credit Buys
A credit is an abstraction over 1,500 tokens of LLM throughput (input + output combined). We deliberately bundle tokens so you don't have to think in fractions of a penny. Here's the rough mapping by request type:
| Request type | Avg tokens | Credit cost |
|---|---|---|
| Quick question ("why is this bad?") | ~800 | 1 credit |
| Explain a single move | ~1,200 | 1 credit |
| Position deep-dive (plan + threats) | ~2,200 | 2 credits |
| Full game review (40 moves) | ~6,500 | 5 credits |
| Lesson generation (custom drill) | ~3,500 | 3 credits |
| Opening repertoire suggestion | ~4,000 | 3 credits |
How Tokens Are Counted
Tokens are not characters, words, or bytes — they're the LLM's internal subword units. A rough rule: 1 token ≈ 4 English characters ≈ 0.75 words. Every request has three token buckets:
- System prompt — the rules and persona (~300 tokens, cached on the model side so it's free after the first request).
- Context — your position, recent moves, your DNA profile (~300–600 tokens, varies with depth).
- Output — the answer the model writes (~400–1500 tokens, capped per request type).
Total = system + context + output. We round up to the nearest 1,500 and that's how many credits you spend. Failed requests don't cost credits — if the model errors out you get a full refund.
How to Get Credits
- Free monthly grant — signed-in users get 30 credits/month, refreshed on the 1st.
- Daily ritual reward — finish the Daily 5 → +1 credit.
- Streak milestones — +5 credits at 7-day, 30-day, 100-day streaks.
- Coin shop — convert coins to credits at 50 coins = 10 credits.
- Pro plan — 500 credits/month, plus access to longer game reviews.
Tips to Make Every Credit Count
- Use Stockfish first for "what's the best move" — it's free, fast, and more accurate than any LLM at finding moves.
- Ask the AI Coach for "why" questions, not "what" questions. The engine knows the move; the LLM is for the explanation.
- Review whole games in one shot — 5 credits for 40 moves is cheaper than 40 single-move questions.
- Tap a move once before asking — the position then auto-attaches and you don't pay tokens to describe it twice.
Frequently Asked Questions
Quick answers to the questions we get every week. If you don't find yours here, hit Support — a real human reads every message.
Is Poussée free?
Yes. Every puzzle, every lesson, every bot, every analysis tool is free forever. The only paid tier is the optional Pro plan, which adds extra AI Coach credits and longer game reviews. You don't need Pro to learn or improve.
Do I need an account to play?
No. The full app works without signing in — that's our design philosophy. Your progress saves to your browser. Sign in only if you want sync, leaderboards, or duels. See the Sign In section for the full pros/cons.
Where is my data stored?
By default, only on your device (in localStorage and IndexedDB). When you sign in, we replicate it to our Supabase database (Postgres, EU-hosted, encrypted at rest). You can export or delete everything from Settings → Data at any time.
Which chess engine do you use?
Stockfish 17, the world's strongest open-source engine, compiled to WebAssembly and running in your browser. Same engine Lichess uses for analysis. See the Chess Engine section for the full breakdown.
How does the AI Coach work? Is it free?
The AI Coach calls a large language model (Claude or GPT) to explain positions in plain English. It's metered with credits because each call costs us real money. Signed-in users get 30 free credits/month, plus more from daily rituals and streaks. Full breakdown in the AI Tutor section.
Can I use Poussée offline?
Yes. After your first visit, the entire app is cached by the service worker. You can play bots, solve bundled puzzles, run analysis, and study lessons on a plane. Only leaderboards, duels, and cloud sync need a connection. See Offline Play.
How do I install Poussée as an app?
It's a Progressive Web App, so it installs from the browser:
- Desktop Chrome/Edge — click the install icon in the address bar
- iPhone Safari — Share → Add to Home Screen
- Android Chrome — tap the install banner or Menu → Install
- macOS / Windows / Linux desktop — download the native build from Download
How do you calculate puzzle ratings?
We use Glicko-2, a modern Bayesian rating system. Each puzzle has a difficulty rating; solving it correctly nudges yours up, missing it nudges yours down. The system tracks uncertainty as well as the rating, so a brand-new player converges quickly while a veteran moves more slowly.
How does the streak work? Can I lose it?
You earn a streak day by completing the Daily Ritual (5 quick tasks). Miss a day and the streak resets — unless you have Streak Insurance (one freebie per 30 days, or buyable with coins). The home page shows a countdown after 8 PM if your streak is at risk.
What are coins and XP?
Two currencies, two jobs:
- XP — the headline progression number. Drives your level and unlocks board themes, piece sets, and titles.
- Coins — the spendable currency. Buy streak insurance, AI credits, cosmetics. 1 crown = 30 coins.
Do you track me?
No tracking cookies. We use PostHog for aggregated feature usage (e.g. "X% of users finished lesson Y"), not personal behavior. Sentry collects crash reports with personal data scrubbed. The AI Coach is the only feature that sends data off-device, and only when you tap "Ask". See Privacy Policy.
Can I import games from Chess.com or Lichess?
Yes — paste a PGN at Import PGN or drop a .pgn file onto the desktop app window. We'll parse it, run Stockfish analysis, and add it to your history. Bulk import (whole archives) is on the roadmap.
What devices are supported?
Anything with a modern browser. Chrome / Edge / Safari / Firefox on Windows, macOS, Linux, ChromeOS, iOS, and Android. We also ship native desktop builds (Tauri) for macOS, Windows, and Linux that boot faster and get multi-threaded engine analysis.
Found a bug or have a feature request?
We love it. Email us at hello@poussee.app or open an issue on the support page. We read every message and ship fixes within days, not months.
Our Teaching Philosophy
Poussée's learning system is built on research-backed principles from cognitive science and language-learning platforms like Duolingo. We don't just present chess content — we engineer the conditions for deep, lasting learning.
Learn by Doing
You spend 90% of your time actively solving, not passively reading. Every lesson alternates between short explanations and hands-on challenges. Research shows active recall produces 2-3x better retention than passive study.
Edge of Knowledge
Our adaptive systems target the "zone of proximal development" — puzzles and exercises that are just hard enough to stretch you, but not so hard you give up. Too easy = boredom. Too hard = frustration. We keep you in the sweet spot.
Errors Are Learning
Wrong answers are treated as learning opportunities, not penalties. Mistakes trigger spaced repetition review so you revisit weak spots. You can practice as much as you want without limits.
Spaced Repetition
Mistakes are automatically scheduled for review at expanding intervals (1 day, 3 days, 7 days, 14 days, 30 days). This fights the forgetting curve — the #1 enemy of learning. You review what you forgot, exactly when you're about to forget it again.
Gamified Motivation
Streaks, XP, coins, crowns, achievements, and leaderboards create multiple overlapping reward loops. Daily quests give you a reason to come back. Surprise celebrations ("reward prediction errors") keep you engaged long-term.
Personalized Adaptation
Your Player DNA maps your strengths and weaknesses across 8 chess dimensions. The adaptive puzzle queue, weakness assassin, and lesson recommendations all use this profile to personalize your experience.
The Learning Loop
Exercise Variety
Duolingo uses 8+ exercise formats to test knowledge from different angles. We apply the same principle. A single lesson may include:
- Interactive board challenges — find the best move on the board
- Multiple-choice quizzes — test conceptual understanding
- Find the blunder — identify which move is the mistake from a list
- Move ordering — arrange moves in the correct sequence
- Concept matching — pair chess terms with their definitions
- Rapid-fire drills — timed yes/no questions to build instinct
Testing the same concept in multiple ways builds deeper neural pathways than repeating the same format.
Crown Mastery Levels
Each lesson has 5 crown levels that require progressively higher performance:
| Crown | Requirement | Effect |
|---|---|---|
| ★ | Complete the lesson | Lesson marked as done, next lesson unlocked |
| ★★ | Complete with ≤1 mistake | Quiz options shuffled to prevent memorization |
| ★★★ | Perfect — no mistakes, no hints | Past mistakes injected as review exercises |
| ★★★★ | Perfect on hard mode | Hints disabled, tighter time limits |
| ★★★★★ | Legendary challenge | Special challenge unlocked, mastery confirmed |
Higher crown levels don't just repeat the same lesson — they transform it. At crown 3+, the system inserts review exercises from past mistakes. At crown 4+, hints are removed and difficulty increases. This is progressive overload applied to chess learning.
Lessons & Exercises
Structured chess education organized into categories, each taught by a dedicated mentor bot with their own personality and teaching style.
Lesson Categories
Basics
Piece movement, rules, board coordinates, check and checkmate fundamentals. Mentor: Blames James
Tactics
Forks, pins, skewers, discovered attacks, double attacks, and more. Mentor: Rookie Regina
Checkmate Patterns
Back-rank mate, smothered mate, Arabian mate, and 20+ patterns. Mentor: Combat Matt
Openings
Sicilian, Queen's Gambit, Ruy Lopez, Italian, and common traps. Mentor: Hit-or-Miss Chris
Strategy
Pawn structure, piece activity, space, king safety, prophylaxis. Mentor: Fantasia Lucia
Endgames
King & pawn, rook endgames, opposition, zugzwang, technique. Mentor: Right-Angle Angela
Psychology
Tilt management, time pressure, decision-making under uncertainty. Mentor: Yogi Neogy
Famous Games
Immortal Game, Evergreen Game, Fischer vs Spassky, and more. Mentor: Legendary Lola
How Lessons Work
- Step-by-step progression — Each lesson is a sequence of steps: text explanations, board positions, interactive challenges, and quizzes. A progress bar at the top shows how far you are.
- Mentor-guided — A mentor bot appears in the corner, offering encouragement, hints, and personality-specific reactions. Their dialogue adapts to your performance.
- Unlimited practice — Wrong answers are learning opportunities. There is no limit on how many puzzles or lessons you can attempt.
- Adaptive difficulty — At higher crown levels, lessons transform: quiz options are shuffled, review exercises from past mistakes are inserted mid-lesson, and hints are disabled.
- XP & Crown rewards — Completing a lesson earns XP (with a bonus for perfect performance) and a crown level based on accuracy.
- Spaced review — Steps you got wrong are added to your spaced repetition queue and resurface in your Daily Review.
Lesson Locking
Lessons within a category are sequential. You must earn at least 1 crown on a lesson before the next one unlocks. The first lesson in each category is always available. This prevents skipping fundamentals while still allowing you to explore different categories freely.
Puzzle System
A curated puzzle library organized by rating and theme, bundled with the app for fast offline access.
Puzzle Library Architecture
Puzzles are organized into shards — files grouped by rating bucket (400-2800, in 200-point increments) and tactical theme (30+ themes). When you need puzzles in a particular range, only the relevant shard is downloaded from our CDN.
Puzzle Delivery Pipeline
Puzzle Rating (Glicko-2)
Your puzzle rating uses the Glicko-2 system. Every puzzle has its own rating. When you solve one, both your rating and the puzzle's rating are adjusted. The system accounts for rating deviation (uncertainty) — your first 20 puzzles will see larger swings as it calibrates.
- Solve a puzzle rated higher than you → big rating gain
- Solve a puzzle rated lower → small gain
- Fail a puzzle rated lower → significant loss
- Rating deviation decreases as you solve more puzzles
Adaptive Puzzle Queue
When you enable Adaptive Mode, puzzles are selected by an algorithm that balances four priorities:
| Priority | Weight | What It Does |
|---|---|---|
| Edge Puzzles | 40% | Puzzles within ±100 of your rating, targeting your weakest Player DNA themes |
| Reinforcement | 30% | Puzzles on themes you've recently improved at, to solidify gains |
| Spaced Review | 20% | Previously-failed puzzles due for review per the SM-2 algorithm |
| Stretch | 10% | Puzzles 150-250 points above your rating, to push your ceiling |
A difficulty oscillator adjusts in real-time: solve 2 in a row and the target rises +50; fail one and it drops -25. This keeps you in your zone of proximal development throughout the session.
Puzzle Themes
Every puzzle is tagged with one or more tactical themes. There are 30+ themes across these categories:
- Tactical — Fork, pin, skewer, double attack, discovered check, sacrifice, pawn fork, knight fork
- Checkmate — Back-rank, smothered, Arabian, quiet move, removing defender
- Positional — Deflection, decoy, zugzwang, interference, overloading, trapped piece, X-ray, zwischenzug
- Endgame — Basic endgame, promotion, king & pawn
- Special — Mate-in-1, mate-in-2, opening trap, Greek gift, windmill
Puzzle Modes
- Daily Puzzle — A new puzzle every day, the same for everyone.
- Puzzle Rush — Solve as many as you can before time runs out. Sprint (3 min), Marathon (5 min), Survival (3 strikes).
- The Gauntlet — 7 daily puzzles themed by day of week (Fork Monday, Pin Tuesday, etc.).
- Puzzle Survival — Roguelike: each puzzle advances a floor. Rating increases ~50 per floor. 3 lives, choose perks every 10 floors.
- Puzzle Chains — 5 linked thematic puzzles with a narrative arc. 12+ chains available.
- Time Warp — Same difficulty puzzles with shrinking time limits (60s → 30s → 15s → 10s → 5s).
- Sacrifice or Safe — Judge whether a move is a brilliant sacrifice or a blunder.
- Puzzle Architect — Design your own puzzles and share them.
- Puzzle Audit — Rate and review community-submitted puzzles.
Progression & Economy
Multiple overlapping reward systems that create both short-term incentives and long-term goals.
Unlimited Practice
There is no limit on how many lessons or puzzles you can attempt. Wrong answers are learning opportunities, not penalties. Practice as much as you want, whenever you want.
XP & Levels
XP (experience points) track your cumulative effort. You earn XP from:
- Completing lessons (amount varies by lesson length)
- Perfect lesson bonus (+25 XP for zero mistakes)
- Daily review sessions (+5 XP per reviewed puzzle)
XP accumulates into levels (50+ levels total). Each level requires more XP than the last. Your level is a rough measure of how much time you've invested in learning.
Coins
Coins are Poussée's in-app currency (1 crown = 30 coins). You earn coins from:
- Completing puzzles (varies by theme/difficulty)
- Finishing daily quests
- Gauntlet completion
- Review sessions (15 coins per session)
- Achievements
You spend coins on:
- Streak freezes (25 coins)
- Board themes & app themes
- Cosmetic items in the Coin Shop
Streaks
Your streak counts consecutive days of activity. Any qualifying activity (solving a puzzle, completing a lesson, doing a review) extends your streak by one day.
- Streak Freeze — Protects your streak for one missed day. Costs 25 coins. Max 3 freezes stored at a time.
- Streak Celebrations — Milestone messages at 3, 7, 14, 30, 50, 100, and 365 days
- Streak display — Visible in the sidebar nav and on your profile
Daily Quests
Five quests refresh daily (UTC midnight). Each has a coin reward. Quest types include:
- Solve the daily puzzle
- Complete a lesson
- Solve N puzzles of a specific theme
- Win a bot game
- Complete a review session
Completing all 5 quests unlocks a bonus reward.
Achievements
Long-term goals organized by rarity tier:
- Common — Getting started milestones (first puzzle, first lesson)
- Rare — Theme mastery (solve 50 fork puzzles, beat 5 bots)
- Epic — Serious milestones (1000 puzzles, 100-day streak)
- Legendary — Extraordinary feats (all bots defeated, all lessons mastered)
Achievements award coins, titles, and cosmetic items.
Spaced Repetition
Poussée uses a modified SM-2 algorithm (the same algorithm behind Anki) to schedule reviews of puzzles you've gotten wrong:
| Review # | Interval | On Success | On Failure |
|---|---|---|---|
| 1st | 1 day | Advance to 3 days | Reset to 1 day |
| 2nd | 3 days | Advance to 7 days | Reset to 1 day |
| 3rd | 7 days | Advance to 14 days | Reset to 1 day |
| 4th | 14 days | Advance to 30 days | Reset to 1 day |
| 5th | 30 days | Graduated (mastered) | Reset to 1 day |
The Daily Review page shows all puzzles due for review. It works like a mini-lesson: progress bar, XP awarded. You can also review lesson steps you struggled with — not just puzzles.
Bots & AI Engine
10 personality-driven bots powered by Stockfish WASM, each with distinct play styles, dialogue, and emotional responses.
Bot Personalities
Each bot has a unique identity: a name, avatar, emoji, play style (aggressive, defensive, tactical, positional), rating range, and dialogue set. Bots react emotionally to the game state — they taunt when ahead, panic when losing, and congratulate when you find a good move.
Bots are unlocked progressively. Beat one to unlock the next. The Climb mode structures this as a 10-floor ladder challenge.
Stockfish Engine
Bot play and analysis are powered by Stockfish 17 running as WebAssembly in your browser. Key technical details:
- Multi-threaded — Uses SharedArrayBuffer where available (routes with COEP/COOP headers)
- Configurable strength — Search depth and thinking time mapped to bot rating for realistic difficulty
- Runs locally — No server calls. Your moves never leave your device.
- Analysis mode — Full evaluation with move classification (best, good, inaccuracy, mistake, blunder)
Bot Mood System
During a game, each bot maintains an emotional state that evolves based on game events:
- Capturing their piece → frustration or surprise
- Putting them in check → panic or respect
- Blundering a piece → mockery or encouragement (personality-dependent)
- Winning → congratulations or "well played" depending on margin
This makes every bot game feel like a conversation, not just a calculation.
Opening Knowledge
The Opening Explorer contains a curated database of opening lines with ECO codes, variation trees, and trap warnings. The Opening Trainer lets you practice specific repertoire lines. Bots themselves follow openings consistent with their personality — aggressive bots play the Sicilian, positional bots play the Queen's Gambit.
Game Modes
Beyond standard bot games and puzzles, Poussée offers a variety of specialized training modes.
The Climb
A 10-floor bot ladder. Beat the bot on each floor to advance. Difficulty increases with each floor. Summit all 10 to prove your mastery.
Puzzle Duel
Real-time head-to-head puzzle racing. Both players see the same puzzle — first to solve wins the round. Best of 5 rounds.
Blindfold Mode
Play a full game without seeing the pieces. Tests your visualization and memory. Start with a visible board that fades away.
Bot Stories
Narrative campaigns where you play through multi-chapter stories, with dialogue, plot twists, and escalating difficulty.
Endgame Lab
6 chapters of endgame training: King & Pawn, Rook, Pawn Endgames, Piece & Pawn, Rook & Pawn, and complex positions.
Pattern Flash
Rapid pattern recognition drills. A position flashes briefly — identify the winning motif before it disappears.
Copycat
Watch a sequence of moves, then replay them from memory. Tests your move memorization and visualization.
Chess Detective
Find the single hidden key move in complex positions. Develops deep calculation ability.
Weakness Assassin
Targets your weakest chess areas using Player DNA data. Generates custom training focused on your specific blind spots.
Guess the GM
See a position from a famous grandmaster game. Predict what the GM played. Learn by thinking like the masters.
Prediction Arena
Forecast your opponent's moves before they play them. Builds anticipation and defensive awareness.
Clock Bank
Manage time like in tournament play. Bank time on easy moves to spend on critical positions.
Analysis & Coaching
Every move can be explained. Every game can be analyzed. No subscription required.
Game Analysis
After any bot game, you can run a full analysis. Stockfish evaluates every move and classifies it:
- Best — The engine's top choice
- Good — A strong alternative
- Inaccuracy — Suboptimal but not punished immediately
- Mistake — Loses significant advantage
- Blunder — Loses material or the game
An accuracy percentage summarizes your overall play quality. You can step through the game move-by-move with engine evaluation at each position.
AI Coach
The AI coach provides plain-English explanations during puzzles and games:
- Move explanations — Why a move is good or bad, in words you understand
- Hints — Progressive hints that nudge without spoiling the answer
- Position summaries — "White is better because of the strong knight on d5 and weak dark squares around Black's king"
- Opponent move analysis — "Your opponent played Nf3 to develop the knight and prepare castling"
On iOS, the coach runs entirely on-device using Apple Foundation Models. On the web, it uses pre-built explanation templates. Your moves never leave your device.
PGN Import & Board Scanner
- Import PGN — Paste or upload a PGN file to replay and analyze any game
- Board Scanner — Capture a physical chess board position using your camera, or set up a position manually
- Replay Viewer — Step through recorded games with full analysis overlay
Player DNA & Customization
Poussée builds a multi-dimensional profile of your chess abilities and uses it to personalize everything.
Player DNA
Your Player DNA is a radar chart of 8 chess dimensions, built from your puzzle and game data:
- Tactical Vision — Ability to spot forks, pins, skewers, and combinations
- Positional Sense — Understanding of pawn structure, piece placement, and long-term plans
- Opening Accuracy (White) — How well you play the opening as White
- Opening Accuracy (Black) — How well you play the opening as Black
- Middlegame Accuracy — Decision quality in complex middlegame positions
- Endgame Accuracy — Technical proficiency in endgame conversions
- Time Management — How efficiently you use your clock
- Blunder Rate — How often you make serious mistakes (lower is better)
The DNA is displayed as a radar chart on your profile. It updates after every game and puzzle session. Systems like the Adaptive Queue and Weakness Assassin use it to target your weakest areas.
Weekly Recap
Every week, you get a multi-card recap slideshow showing:
- Games played and win rate
- Puzzles solved and accuracy
- Rating change (up or down)
- Streak status
- Achievement unlocks
- A motivational message tailored to your progress
Themes & Customization
- Board Themes — Multiple color schemes for the chessboard (classic wood, midnight, coral, etc.)
- App Themes — Full app color customization (dark, light, and accent variations)
- Unlocking — Some themes are free, others are unlocked via achievements or the Coin Shop
- Preview — Try any theme before unlocking to see if you like it
Social & Competitive
Leaderboards
Multiple leaderboard dimensions so everyone can find something to compete on:
- Puzzle Rating — Highest Glicko-2 rating
- Duel Rating — Head-to-head competitive rating
- Theme-Specific — e.g., "Top Forkers," "Pin Masters"
- Longest Streak — Most consecutive days
- Achievement Hunters — Most achievements unlocked
- Coin Earners — Most coins earned (all time)
Filter by period: All Time, This Week, Today.
Tournaments
Create and join tournaments with configurable formats:
- Swiss — Multi-round, flexible player count, automatic pairing
- Round Robin — Everyone plays everyone
- Single Elimination — Win or go home
- Double Elimination — Two losses to eliminate
Time controls include Rapid (10 min), Blitz (5 min), and Bullet (1 min). Live standings update as results come in.
Friends & Profiles
- Search for friends by username
- View public profiles with stats, ratings, DNA, and game history
- Challenge friends to duels or tournament games
- See activity feed of what friends are doing
Content Ratings & Votes
Every puzzle and lesson can be liked/disliked and rated 1-5 stars. Ratings and votes are visible to everyone (no account needed to see them). You must be logged in to vote or rate. Counts update in real time via Supabase Realtime — you can see other people's votes appear live.
Offline Play & PWA
Poussée is designed offline-first. Everything that can run locally, does run locally.
How Offline Works
Offline Architecture
Service Worker Caching Strategy
- Static assets (CSS, JS, fonts, images) — Cache-first. Served instantly from cache, updated in background.
- Navigation — Network-first with offline fallback. If the network is down, you see a cached version or the offline page.
- Stockfish WASM — Cached aggressively. The ~2MB engine binary is stored locally after first download.
- API requests (Supabase) — Network-only. These require connectivity. Changes made offline are queued.
PWA Installation
Poussée can be installed as a Progressive Web App on any platform:
- Desktop — Chrome/Edge: click the install icon in the address bar
- iOS Safari — Tap Share → Add to Home Screen
- Android Chrome — Tap the install banner or Menu → Add to Home Screen
Once installed, Poussée runs in a standalone window (no browser chrome), feels native, and works offline.
What Works Offline
| Feature | Offline? | Notes |
|---|---|---|
| Puzzles (bundled set) | Yes | ~500 puzzles bundled. CDN shards require initial download. |
| Bot games | Yes | Stockfish runs entirely in-browser |
| Lessons | Yes | All lesson content bundled in the app |
| Game analysis | Yes | Stockfish evaluation runs locally |
| Progress tracking | Yes | All state in localStorage |
| Leaderboards | No | Requires server connection |
| Puzzle Duels | No | Real-time multiplayer requires network |
| Cloud sync | No | Changes queued, synced on reconnect |
| Content votes/ratings | No | Requires Supabase connection |
Native Apps
For the best offline experience, use the native apps (iOS, macOS, Windows, Linux). They offer:
- Full offline play with no initial download needed
- Multi-threaded Stockfish (faster analysis)
- On-device AI coach (iOS 26+ via Apple Foundation Models)
- iCloud sync (iOS/macOS)
- Apple Watch companion app
- Haptic feedback, Siri Shortcuts, Live Activities
Sync & Data
Local-First Architecture
All progression data is stored in your browser's localStorage first. This means:
- The app works without any account or internet connection
- Your data is yours — it lives on your device
- Server sync is optional and additive
Cloud Sync
When you sign in with your email (magic link, no password), your local data syncs to Supabase:
- On sign-in — All local data is pushed to the server, then server data is pulled and merged
- On page load — Any queued changes are drained, then latest server state is pulled
- Conflict resolution — Timestamp-based merge. Most recent change wins.
Sync Queue
If you make changes while offline (or before signing in), they're stored in a sync queue. When connectivity is restored and you're signed in, the queue is automatically drained — your offline progress is never lost.
Privacy
- No tracking cookies
- AI coach runs on-device (no move data sent to servers)
- Sentry crash reports have personal data scrubbed
- Analytics (PostHog) track feature usage, not personal data
- See our full Privacy Policy
Accessibility & Platform Support
Platforms
- Web — Any modern browser (Chrome, Firefox, Safari, Edge)
- iOS — iPhone and iPad
- macOS — Native app
- Windows — Native app
- Linux — Native app
- Apple Watch — Daily puzzle, streak, complications
Accessibility Features
- Keyboard navigation for all interactive elements
- ARIA labels on chess board squares (e.g., "a8 black king")
- Reduced motion support (
prefers-reduced-motion) - High contrast mode via app themes
- Sound effects with mute toggle
- Responsive design for all screen sizes
Browser Requirements
- Stockfish requires WebAssembly support (all modern browsers)
- Multi-threaded Stockfish requires SharedArrayBuffer (Chrome, Edge, Firefox with COEP/COOP headers)
- Service Worker required for offline caching
- localStorage required for progress persistence