Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add MECoban/garmin-ai-coach --skill garmin-connectgit clone --depth 1 https://github.com/MECoban/garmin-ai-coachWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/mecoban/garmin-ai-coach/garmin-connect)<a href="https://agentmods.dev/skills/mecoban/garmin-ai-coach/garmin-connect"><img src="https://agentmods.dev/badge/skills/mecoban/garmin-ai-coach/garmin-connect/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/mecoban/garmin-ai-coach/garmin-connect"><img src="https://agentmods.dev/badge/skills/mecoban/garmin-ai-coach/garmin-connect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00182 | $0.01123 |
| Opus 5 | $0.00091 | $0.00562 |
| Sonnet 5 | $0.00036 | $0.00225 |
| Haiku 4.5 | $0.00018 | $0.00112 |
Grade A, and why
garmin-connect scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Garmin Connect data access (Cloudflare-aware, June 2026)
This skill lets an agent retrieve a user's own Garmin Connect data and build automations on it. It encodes the currently working authentication recipe.
When to use
The user wants their Garmin data, or is stuck authenticating to Garmin from Python (429 / 401 / "Verify you are human" / MFA loops). Also for building daily sync, dashboards, or AI coaching on Garmin data.
Why the usual approaches fail (and what works)
Since March 2026 Garmin's SSO (sso.garmin.com) is behind Cloudflare.
Plain HTTP clients and the newer native-auth garminconnect/garth get blocked
or stuck on a "Verify you are human" challenge.
Working recipe: the older garth-based garminconnect==0.2.38 with a
cloudscraper session injected into garth. cloudscraper transparently solves
Cloudflare's JS challenge.
Prerequisite (tell the user)
Garmin Two-Step Verification must be OFF (Account → Security Center →
Two-Step Verification → E-mail and SMS both Off). garminconnect has no 2FA flow.
After the token is cached the user may re-enable 2FA; the token keeps working.
Step 1 — install
python3 -m venv venv
venv/bin/python -m pip install "garminconnect==0.2.38" cloudscraper python-dotenv
Step 2 — authenticate once (token lasts ~1 year)
The KEY line is injecting cloudscraper into client.garth.sess:
import cloudscraper
from garminconnect import Garmin
client = Garmin(email, password) # 2FA must be OFF
client.garth.sess = cloudscraper.create_scraper() # ← bypass Cloudflare
client.login()
client.garth.dump("~/.garminconnect") # cache token (~1 year)
Run this interactively the first time (prompt the user for the password with
getpass; never log it). Token is saved to ~/.garminconnect.
Step 3 — fetch data (token only, no login)
Re-inject cloudscraper for API calls too (connectapi.garmin.com is also behind
Cloudflare):
import cloudscraper
from garminconnect import Garmin
c = Garmin()
c.garth.sess = cloudscraper.create_scraper()
c.login("~/.garminconnect") # loads cached token
c.get_stats("2026-06-19") # steps, calories, restingHeartRate, bodyBatteryMostRecentValue, averageStressLevel
c.get_sleep_data("2026-06-19") # dailySleepDTO: sleepTimeSeconds, sleepScores.overall.value
c.get_training_readiness("2026-06-19") # [{score, level}]
c.get_activities(0, 10) # activities: distance, duration, averageSpeed, averageHR, averageRunningCadenceInStepsPerMinute
Pace from averageSpeed (m/s): (1000/speed)/60 → min/km.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 84 lines · 0 tokens per session scan A 710d6e272570
garmin-connect is a skill published in the GitHub repository MECoban/garmin-ai-coach (1 stars, last pushed 2mo ago), licensed MIT. It adds 182 tokens to every session and 1,123 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
agentic-data-science-competition
AI Agent-driven Kaggle competition workflow. Learn from real competition experience: score stabilization patterns, submission troubleshooting, kernel workflows, GPU task delegation, and the spec-driven development approach that achieved top leaderboard positions. Use when: working on any Kaggle competition, analyzing…
codex
Delegate coding tasks to OpenAI Codex CLI with YOLO mode for autonomous execution.
ccthread
Read, search, and summarize Claude Code conversation history. Use when the user asks to find things discussed in past sessions, review old threads, summarize recent work for teammates, extract learnings into a skill or CLAUDE.md, or answer "what was that value/port/command we used?" — ccthread reads /.claude/projects/…
session-deep-dive
Deep qualitative analysis of high-signal sessions. Spawns subagents with v2 template, synthesizes patterns, compares against known findings. Use after /session-scan.
elixir-idioms
OTP/BEAM patterns and Elixir idioms — GenServer, Supervisor, Task, Registry, pattern matching, with chains, pipes. Use when designing processes or debugging BEAM issues.
tidewave-integration
Tidewave MCP runtime tools — debugging, smoke testing, live state inspection, SQL queries, hex docs. Use when evaluating code in a running Phoenix app.