Biohacking skills for wearables — advanced biometric analysis via Claude Code.
Connect your wearable. Pull your biometrics. Analyze life events. Get deep reports. All from your terminal.
Supports: Oura Ring | Whoop | Fitbit | Apple Health
| Wearable | How to get a token |
|---|---|
| Oura Ring | cloud.ouraring.com/personal-access-tokens → Create a new token |
| Whoop | developer.whoop.com → Create an app → Complete OAuth2 flow to get access token |
| Fitbit | dev.fitbit.com → Register app → Complete OAuth2 flow to get access token |
| Apple Health | iPhone → Settings → Health → Export All Health Data → unzip → point to export.xml |
cp .env.example .env
# Edit .env and paste your tokenOr export directly:
# Pick one:
export OURA_ACCESS_TOKEN=your_token_here
export WHOOP_ACCESS_TOKEN=your_token_here
export FITBIT_ACCESS_TOKEN=your_token_here
export APPLE_HEALTH_EXPORT=/path/to/export.xmlclaude --plugin-dir /path/to/bio-vibing| Skill | What it does | Example |
|---|---|---|
/bio-vibing:connect |
Test connection, show available data | "Am I connected?" |
/bio-vibing:pull |
Fetch N days of biometric data | /bio-vibing:pull 30 |
/bio-vibing:analyze |
Before/after event comparison | /bio-vibing:analyze "Quit caffeine" 2026-02-01 |
/bio-vibing:smart-mode |
Deep analysis of your data | "What does my data mean?" |
/bio-vibing:weekly-report |
This week vs last week summary | "How was my week?" |
The plugin auto-detects your wearable based on which environment variable is set. All data gets normalized to a common format, so the analysis skills work the same regardless of your device.
Wearable APIs → Provider Adapter → Normalized Schema → Analysis Skills
If you have multiple wearables configured, set BIOMETRIC_PROVIDER=oura (or whoop, fitbit, apple_health) to pick one.
/bio-vibing:connect
/bio-vibing:pull 45
/bio-vibing:analyze "Quit caffeine" 2026-02-01
/bio-vibing:smart-mode
/bio-vibing:weekly-report
| Metric | Oura | Whoop | Fitbit | Apple Health |
|---|---|---|---|---|
| Sleep stages | Y | Y | Y | Y |
| HRV | Y | Y | Y | Y* |
| Resting HR | Y | Y | Y | Y |
| Readiness/Recovery | Y | Y | - | - |
| Temperature | Y | Y | - | Y |
| Steps | Y | - | Y | Y |
| Stress | Y | - | - | - |
| Calories | Y | Y | Y | Y |
* Apple Health uses SDNN methodology; others use RMSSD.
Chad — physician, builder, co-founder of SUNA Health (building the Fitbit for your gut).
Apache-2.0