โ† All skills
Tencent SkillHub ยท Developer Tools

Whoop Openclaw Skill

Fetch and analyze Whoop recovery, strain, sleep, and HRV data via the Whoop API. Use when the user asks about their Whoop metrics, recovery status, sleep qua...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Fetch and analyze Whoop recovery, strain, sleep, and HRV data via the Whoop API. Use when the user asks about their Whoop metrics, recovery status, sleep qua...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, scripts/whoop_oauth.py, scripts/morning_briefing.py, scripts/whoop_client.py, references/whoop-api.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Whoop Integration

Interact with the Whoop API to fetch and analyze recovery, strain, sleep, HRV, and workout data.

First-time Setup

Prerequisites: Python 3.7+ requests library: pip install requests Step 1: Create Whoop Developer App Go to https://app.whoop.com/ โ†’ Settings โ†’ Developer Click "Create Application" Fill in the required fields: Application Name: Your choice (e.g., "Personal Whoop Assistant") Privacy Policy URL: You need a public URL (see options below) Redirect URI: You need a callback URL (see options below) Webhook URL: Leave blank (optional for basic usage) Save your Client ID and Client Secret (keep these private!) Privacy Policy & Redirect URI Options: Option A - Quick GitHub Pages Setup: Create a GitHub repo (e.g., whoop-oauth) Add the privacy/redirect HTML files from references/oauth-pages/ Enable GitHub Pages in repo settings Use URLs like: Privacy: https://yourusername.github.io/whoop-oauth/privacy.html Redirect: https://yourusername.github.io/whoop-oauth/redirect.html Option B - Use your own domain: Host the HTML files on your existing website Option C - Local testing only: Privacy: http://localhost/privacy.html (Whoop may not accept this) Redirect: http://localhost:8080/callback Step 2: Complete OAuth Flow Create whoop-config.json with your app credentials: { "client_id": "your-client-id-here", "client_secret": "your-client-secret-here", "redirect_uri": "https://yourusername.github.io/whoop-oauth/redirect.html" } Generate authorization URL and authorize: python3 scripts/whoop_oauth.py --config whoop-config.json Click the authorization URL, log in to Whoop, and authorize Copy the authorization code from the redirect page Exchange code for access token: python3 scripts/whoop_oauth.py --config whoop-config.json exchange <CODE> Token is automatically saved to ~/.whoop_token Step 3: Test Connection python3 scripts/whoop_client.py --action profile You should see your Whoop profile information!

Common Commands

Today's summary (recovery + sleep + strain): python3 scripts/whoop_client.py --action today Specific metrics: # Recovery data (last 7 days) python3 scripts/whoop_client.py --action recovery --days 7 # Sleep data python3 scripts/whoop_client.py --action sleep --days 7 # Cycle data (strain, HRV, calories) python3 scripts/whoop_client.py --action cycle --days 7 # Workout history python3 scripts/whoop_client.py --action workout --days 10 Get raw JSON (for parsing/analysis): python3 scripts/whoop_client.py --action today --json

Morning Briefing

Fetch today's data: python3 scripts/whoop_client.py --action today --json Analyze and provide insights: Recovery score: Green (67-100%), Yellow (34-66%), Red (0-33%) HRV: Compare to user's baseline (track trends, not absolute values) Sleep: Check duration, quality, debt/credit Recommendations: Based on recovery, suggest high/moderate/low strain day Example briefing: "๐Ÿ”‹ Recovery: 85% (Green) - Your body is well-recovered! ๐Ÿ“Š HRV: 68ms (up 8% from baseline) โค๏ธ RHR: 52 bpm (stable) ๐Ÿ˜ด Sleep: 8.2 hours, 92% performance ๐Ÿ’ช Ready for a high-strain day. Go crush that workout!"

Weekly Analysis

Fetch week of data: python3 scripts/whoop_client.py --action recovery --days 7 --json python3 scripts/whoop_client.py --action sleep --days 7 --json python3 scripts/whoop_client.py --action cycle --days 7 --json Identify trends: HRV trend (increasing/decreasing) Sleep consistency Strain vs recovery balance Patterns (e.g., low recovery after high strain days) Provide recommendations: Adjust training load Improve sleep habits Plan recovery days

Real-time Alerts

Monitor for warning signs: HRV drops >20% from baseline โ†’ Consider rest day Recovery <33% for 2+ consecutive days โ†’ Prioritize recovery Sleep performance <50% for 3+ days โ†’ Focus on sleep High strain (>17) with low recovery (<40%) โ†’ Risk of overtraining

Data Interpretation Guide

For detailed metric interpretation and optimal ranges, see references/whoop-api.md. Key principles: Track trends, not absolute values - HRV/RHR baselines vary by individual Match strain to recovery - High recovery = can handle high strain Consistency matters - Regular sleep schedule improves recovery Listen to your body - Metrics are guides, not rules

Setup Issues

"Privacy Policy URL must be HTTPS": Whoop requires HTTPS URLs (not HTTP) Use GitHub Pages, Netlify, or your own HTTPS domain Local URLs (localhost) won't work for production apps "Redirect URI mismatch": The redirect URI must match EXACTLY what you configured in Whoop Check for trailing slashes, http vs https, etc. Example: https://example.com/redirect.html โ‰  https://example.com/redirect.html/ OAuth code expired: Authorization codes expire quickly (usually within 10 minutes) Generate a new auth URL and try again immediately

API Issues

401 Unauthorized: Token expired โ†’ Re-run OAuth flow to get a new token Invalid token โ†’ Check ~/.whoop_token file exists and contains valid token Wrong scopes โ†’ Make sure you authorized all required scopes 404 Not Found (for sleep/cycle endpoints): Some endpoints may not be available depending on API version Check Whoop developer docs for current endpoint structure Try fetching recovery data which includes sleep-related metrics No data returned: Whoop needs to be synced recently (open Whoop app to sync) Check date range (data only available for dates when you wore Whoop) New users may have limited historical data Rate limit errors: Default limits: 10,000/day, 100/minute Spread out requests if hitting limits Use pagination (next_token) for large data fetches

Data Issues

Missing metrics: Some metrics require Whoop 4.0 (older devices have limited data) Sleep data delayed ~1-2 hours after waking (processing time) Recovery score requires previous night's sleep to be processed Unexpected values: HRV and RHR vary by individual - track trends, not absolute values Recovery score can be affected by alcohol, illness, stress Strain accumulates throughout the day (starts low in morning)

Getting Help

Check Whoop Developer Docs: https://developer.whoop.com/ Review your app settings: https://app.whoop.com/settings/developer Test with Whoop's API explorer (if available) Verify your token with --action profile (simplest endpoint)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs3 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • references/whoop-api.md Docs
  • scripts/morning_briefing.py Scripts
  • scripts/whoop_client.py Scripts
  • scripts/whoop_oauth.py Scripts