← All skills
Tencent SkillHub · Communication & Collaboration

Garmin Connect (Fixed)

Garmin Connect integration for Clawdbot: sync fitness data (steps, HR, calories, workouts, sleep) every 5 minutes using OAuth.

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

Garmin Connect integration for Clawdbot: sync fitness data (steps, HR, calories, workouts, sleep) every 5 minutes using OAuth.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

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

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, requirements.txt, scripts/garmin-auth-oauth.py, scripts/garmin-auth.py, scripts/garmin-cron.sh

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

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

Garmin Connect Skill

Sync all your Garmin fitness data to Clawdbot: 🚶 Daily Activity: Steps, heart rate, calories, active minutes, distance 😴 Sleep: Duration, quality, deep/REM/light sleep breakdown 🏋️ Workouts: Recent activities with distance, duration, calories, heart rate ⏱️ Real-time sync: Every 5 minutes via cron

1. Install Dependencies

pip install -r requirements.txt

2. OAuth Authentication (One-time)

python3 scripts/garmin-auth.py your-email@gmail.com your-password This saves your OAuth session to ~/.garth/session.json — fully local and secure.

3. Test Sync

python3 scripts/garmin-sync.py You should see JSON output with today's stats.

4. Set Up 5-Minute Cron

Add to your crontab: */5 * * * * /home/user/garmin-connect-clawdbot/scripts/garmin-cron.sh Or manually: */5 * * * * python3 /home/user/garmin-connect-clawdbot/scripts/garmin-sync.py ~/.clawdbot/.garmin-cache.json

5. Use in Clawdbot

Import and use in your scripts: from scripts.garmin_formatter import format_all, get_as_dict # Get all formatted data print(format_all()) # Or get raw dict data = get_as_dict() print(f"Steps today: {data['summary']['steps']}")

Features

✅ OAuth-based (secure, no password storage) ✅ All metrics: activity, sleep, workouts ✅ Local caching (fast access) ✅ Cron-friendly (5-minute intervals) ✅ Easy Clawdbot integration ✅ Multi-user support

Daily Activity (summary)

steps: Daily step count heart_rate_resting: Resting heart rate (bpm) calories: Total calories burned active_minutes: Intensity minutes distance_km: Distance traveled

Sleep (sleep)

duration_hours: Total sleep time duration_minutes: Sleep in minutes quality_percent: Sleep quality score (0-100) deep_sleep_hours: Deep sleep duration rem_sleep_hours: REM sleep duration light_sleep_hours: Light sleep duration awake_minutes: Time awake during sleep

Workouts (workouts)

For each recent workout: type: Activity type (Running, Cycling, etc.) name: Activity name distance_km: Distance traveled duration_minutes: Duration of activity calories: Calories burned heart_rate_avg: Average heart rate heart_rate_max: Max heart rate

Cache Location

By default, data is cached at: ~/.clawdbot/.garmin-cache.json Customize with: python3 scripts/garmin-sync.py /custom/path/cache.json

Files

FilePurposegarmin-auth.pyOAuth setup (run once)garmin-sync.pyMain sync logic (run every 5 min)garmin-formatter.pyFormat data for displaygarmin-cron.shCron wrapper scriptrequirements.txtPython dependencies

OAuth authentication fails

Check email/password Disable 2FA on Garmin account (or use app password) Garmin servers might be rate-limiting — wait 5 minutes

No data appears

Sync your Garmin device with the Garmin Connect app Wait 2-3 minutes for data to sync Check that data appears in Garmin Connect web/app Then run garmin-sync.py again

Permission denied on cron

chmod +x scripts/garmin-cron.sh chmod +x scripts/garmin-sync.py chmod +x scripts/garmin-auth.py

Cache file not found

Run garmin-sync.py at least once to create cache: python3 scripts/garmin-sync.py

Usage Examples

from scripts.garmin_formatter import format_all, get_as_dict # Get formatted output print(format_all()) # Get raw data data = get_as_dict() if data: print(f"Sleep: {data['sleep']['duration_hours']}h") print(f"Steps: {data['summary']['steps']:,}")

License

MIT — Use, fork, modify freely. Made for Clawdbot | Available on ClawdHub

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts2 Docs1 Files
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/garmin-auth-oauth.py Scripts
  • scripts/garmin-auth.py Scripts
  • scripts/garmin-cron.sh Scripts
  • requirements.txt Files