Loading repository data…
Loading repository data…
OpenStrap / repository
An app that makes a WHOOP 4.0 useful without a WHOOP subscription — pairs over Bluetooth, computes everything on your phone, no cloud required.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
An app that makes a WHOOP 4.0 useful without a WHOOP subscription. Connects to the band over Bluetooth, computes everything on your phone locally iOS and Android.
Not affiliated with WHOOP. Not a clone of their app or their scores — see below.
My subscription lapsed and a perfectly good sensor turned into a bracelet. The hardware never stopped working, only the app that made it useful did. So I reverse-engineered enough of the band's Bluetooth protocol to talk to it myself, wrote the analytics from scratch off published research instead of guessing at WHOOP's formulas, and built an app around the result. Now it works without them, and anyone else stuck with the same drawer-bracelet problem can use it, or go dig through the code themselves.
| Today | Sleep | Heart |
| Stress | Breathing | Body |
| Steps | Workouts | Records |
| Recap | Profile |
iOS also gets a home-screen widget, a lock-screen/Dynamic Island Live Activity, and a couple of Siri shortcuts.
| Widget | Battery widget | Live Activity |
Every screenshot above is real output from a WHOOP 4.0.
Health — heart rate, HRV, sleep staging, recovery/readiness, strain, stress, an HRV spot-check, real-time breathing coherence.
Activity — auto-detected workouts, live workout tracking with GPS routes, heart-rate zones.
Everything else — trends/history, a journal with on-device correlation insights ("what actually moves your numbers"), cycle tracking, a deterministic coach, a shareable weekly recap, a BYOK AI assistant, home-screen widgets, iOS Live Activities, Siri shortcuts.
guides/IOS_SIDELOAD.md if you just want the app and aren't
planning to build it yourself.git clone https://github.com/OpenStrap/edge.git
cd edge
cp .env.example .env
flutter pub get
flutter run --dart-define-from-file=.env
Quit the official WHOOP app before you pair — Bluetooth only lets one app own the band at
a time. iOS signing and the App Group setup for the widget/Live Activity is its own
longer story — see guides/IOS_INSTALLATION.md.
WHOOP band → Bluetooth → protocol decoder → local storage → analytics → the UI
openstrap_protocol turns bytes off the band into records.openstrap_analytics turns those records into metrics, each with its own confidence
score attached — nothing gets faked when the data isn't there.The band doesn't have a normal documented API — it's a proprietary protocol, and getting it to behave reliably took a while. Short version: the clock ships unset (skip setting it and every timestamp comes out garbage), history comes off in batches that need an exact 8-byte token echoed back or the band just re-sends the same data forever, and the local save has to happen before that acknowledgement goes out, not after, so a crash mid-sync can't lose anything.
The full blow-by-blow lives in the protocol repo's README — genuinely the more interesting read if you're into this kind of thing.
Everything's computed and stored locally. No cloud account required, no backend this needs to work day to day. The only network calls this app ever makes are three narrow, optional things — a one-time legacy-account import if you had an old cloud account, an OTA/announcement pointer, and a BYOK LLM proxy for the AI assistant. None of them are required for the app to work.
lib/ble/ Bluetooth + sync
lib/data/ local storage + the repository seam the UI reads from
lib/compute/ runs the analytics pipeline, writes results
lib/state/ AppState, the one source of truth
lib/ui/ every screen
Protocol decoding and analytics live in their own repos — protocol, analytics.
Found something broken? Open an issue. Found something broken and fixed it? Even better, send the PR. Protocol-level stuff (new record types, opcodes) belongs in the protocol repo, metric/formula changes belong in analytics, anything about the app itself — Bluetooth, storage, UI — belongs here.