Skip to main content

Keystrike

PyPI CI Python License: MIT

Adaptive drills for your weakest keys — an offline terminal typing tutor inspired by keybr.com. Stats stay on your machine; nothing phones home. Design follows research-backed typing pedagogy.

Install: pipx install keystrike · PyPI · Discussions

Keystrike demo

What it does

Keystrike tracks how fast and accurately you type each key, unlocks new letters as you hit your targets, and generates practice text that overweight your current weak spot. Switch keyboard layouts (QWERTY, Dvorak, Colemak, Colemak Mod-DH, or your own TOML) and each layout keeps its own history.

Why it works

The adaptive engine applies principles from typing research and tools like Keybr — see the Typing pedagogy wiki for sources and how each maps to the code.

  • Accuracy before speed — a new key unlocks only when every letter in your current set is fast and accurate; high speed with lots of errors does not advance you.
  • Targets your weak keys — generated text overweight keys and bigrams you still miss, instead of generic full-alphabet drills.
  • Home row first — unlock order follows keyboard rows (home → top → bottom), matching standard touch-typing curricula and reach-distance effects in keystroke timing.
  • Word-level practice — Markov word chunks build sequence memory; skilled typing is controlled at the word and bigram level, not isolated letters.
  • Spaced review — keys you have not practiced recently resurface in lessons before they fade.

Features

  • Adaptive engine — row-weighted key unlock order, skill gates for unlocks, confidence-weighted focus and heatmap, Markov word drills with a guaranteed focus letter or bigram.
  • Per-layout stats — heatmap with per-key confidence and urgency; layout-wide and focus-key trend grids (confidence, speed, accuracy); press a heatmap key for per-letter drill-down.
  • Daily learn goal — optional minutes goal tracked in the HUD; practice is not blocked when reached.
  • Custom layouts — drop *.toml files into your layouts directory; new layouts appear when cycling layouts or opening Settings (no app restart required). See the Custom layouts wiki.
  • Git backup sync — optional CLI to push/pull settings and sessions to a private remote (union-merge sessions, last-write-wins settings).
  • Offline by default — JSONL session logs and a local stats cache under platformdirs paths; sync is opt-in.

Install

Requires Python 3.12+ and a terminal with raw-mode keyboard input (Terminal setup).

pipx install keystrike    # or: uv tool install keystrike
keystrike                 # launch TUI (default)
keystrike run             # same as bare keystrike
keystrike --version

Or from source:

git clone https://github.com/egno/keystrike
cd keystrike
uv sync --no-dev
uv run keystrike

Usage

Home

Key Action
Enter Start adaptive practice
s Stats
o Settings
l Cycle layout
Ctrl+Q Quit

On other screens, Esc / q goes back. Settings saves with Ctrl+S.

Practice

Adaptive mode disables backspace — mistakes stay in the record so confidence scores stay honest. The HUD shows live accuracy, remaining daily learn time, and the current focus key. When a session ends, the next lesson starts automatically unless you go back. Hitting your daily goal is shown in the HUD only — practice continues.

Stats

Layout and focus trend grids (confidence, speed, accuracy) sit above the heatmap. Press any key on the heatmap for letter stats; Esc / q returns to the overview.

Settings

Setting Default Notes
Layout qwerty Any bundled or custom layout
Target speed 46 WPM Or CPM — your unlock threshold
Letters unlocked up front 16 Force-unlocked before skill gating
Daily learn goal 10 min 0 = no goal

Advanced confidence tuning (session window, min key/bigram attempts) is config-file only — edit settings.toml directly; see the Confidence tuning wiki and Focus states wiki for HUD labels (wk, cal, rev).

Backup sync

Opt-in git sync for backing up or moving data between machines. Requires git on PATH and a private remote (sessions contain your typing history).

Not Keystrike cloud sync — only runs when you invoke keystrike sync. Background and FAQ: discussion #6.

keystrike sync init git@github.com:you/keystrike-backup.git   # one-time
keystrike sync push      # local → remote
keystrike sync pull      # remote → local (rebuilds stats cache)
keystrike sync status    # diff summary

Sync merges sessions by session_id (union), resolves settings by updated_at (last-write-wins), and copies layout files both ways. The stats cache is excluded — pull triggers a rebuild.

Data locations

Paths come from platformdirs. On Linux, config and data are split; on macOS and Windows, everything lives under one app directory.

Contents Linux macOS
User settings ~/.config/keystrike/settings.toml ~/Library/Application Support/keystrike/settings.toml
Custom layouts ~/.config/keystrike/layouts/ ~/Library/Application Support/keystrike/layouts/
Sync config (after sync init) ~/.config/keystrike/sync.toml ~/Library/Application Support/keystrike/sync.toml
Session JSONL logs ~/.local/share/keystrike/sessions/ ~/Library/Application Support/keystrike/sessions/
Stats cache ~/.local/share/keystrike/cache/ ~/Library/Application Support/keystrike/cache/

Windows uses %LOCALAPPDATA%\keystrike\ for the same layout (single directory).

Terminal setup

Keystrike captures every keystroke in raw mode via Textual.

Works out of the box in Terminal.app, iTerm2, and most Linux terminals.

Windows

Use Windows Terminal — the legacy conhost host has unreliable raw-mode support. Run keystrike inside WT, not cmd.exe. Raw mode is not verified on every Windows build; please open an issue if something breaks.

Development

uv sync                  # runtime + dev (pytest, pyright, pre-commit)
uv run pre-commit install  # optional: ruff + pyright hooks on commit
uv run pytest -q
uv run pyright
uv sync --all-groups      # + ruff + snapshot tests (desktop only)
uv run ruff check

Dependency groups: dev (default, pure Python — safe on Termux), lint (Ruff), snapshot (pytest-textual-snapshot). Keep native-wheel tools out of dev; see pyproject.toml for why.

Before you push (CI parity)

Pre-commit runs ruff and pyright only. GitHub Actions also runs the full test matrix and a separate snapshot (macos) job that default pytest skips.

Check Command When
Lint (also in pre-commit) uv run ruff check && uv run pyright every commit
Unit tests uv run pytest -q every push
UI snapshots see below after presentation/UI changes

On macOS, match the snapshot CI job before pushing UI work:

uv sync --group snapshot
NO_COLOR=1 TERM=xterm-256color LC_ALL=C.UTF-8 uv run pytest -m snapshot -q

Snapshots are not in pre-commit (macOS-only, extra deps). Linux/Windows devs can rely on CI for snapshot coverage.

Regenerate baselines after intentional UI changes:

uv sync --group snapshot
NO_COLOR=1 TERM=xterm-256color LC_ALL=C.UTF-8 \
  uv run pytest tests/presentation/test_snapshots.py -m snapshot --snapshot-update

Regenerate the demo GIF after updating snapshots:

uv pip install pillow cairosvg   # one-off; system cairo on macOS/Linux
uv run python scripts/generate_demo_gif.py

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

keystrike-1.3.1.tar.gz (99.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

keystrike-1.3.1-py3-none-any.whl (127.1 kB view details)

Uploaded Python 3

File details

Details for the file keystrike-1.3.1.tar.gz.

File metadata

  • Download URL: keystrike-1.3.1.tar.gz
  • Upload date:
  • Size: 99.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for keystrike-1.3.1.tar.gz
Algorithm Hash digest
SHA256 49287f1125331890e7054f11b17283830604b95c1df8a9f69afc6c50adec01f6
MD5 0d7cd8697ea40b19c9f1e34368051e87
BLAKE2b-256 76633cb656e464b17f1cfe1b7523a66a2cb8529dc08c974b0cabb4c24a979a99

See more details on using hashes here.

File details

Details for the file keystrike-1.3.1-py3-none-any.whl.

File metadata

  • Download URL: keystrike-1.3.1-py3-none-any.whl
  • Upload date:
  • Size: 127.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for keystrike-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e41a9664a2f6523fcaf306301bd9ba457ffdfee15554ec44960a6530164931af
MD5 a27c1eecb087eb2a98236822512ea520
BLAKE2b-256 88274ad7680375e6468c5e0ded4b58d7cf0c6bca2c2e186bcd1f5afb73dadbff

See more details on using hashes here.

Release history Release notifications | RSS feed

2.0.0

2 files

This release

1.3.1 This release

2 files

1.3.0

2 files

1.2.3

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page