.claude/skills/weather-correlation/SKILL.md
Cross-reference recent runs/rides with historical weather (temperature, humidity, wind) from Open-Meteo to find correlations with performance. Use when the user asks "do I run worse in the heat", "weather impact", "temperature vs pace".
npx skillsauth add AlvaroLaraFF/strava-coach weather-correlationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
For each recent activity, queries the free Open-Meteo Archive API (no key required) using the activity's start coordinates and timestamp, then computes correlation between temperature and pace/HR.
python3 .claude/skills/weather-correlation/scripts/weather.py --days 60 --sport Run
Per-activity table: date, temp (°C), pace, HR. Then a one-line correlation verdict ("each +5°C costs ~10s/km", or "no clear correlation").
| Error contains | Action |
|---|---|
| No token | Invoke strava-setup, retry |
| No <Sport> activities / No data | Invoke strava-sync --level summary, retry |
| anything else | Surface |
Save a qualitative observation to memory — opinions, patterns, coaching notes. Never store raw numeric values (those are recomputable from the DB). Only write if the observation is NEW or CHANGED vs existing memory. See CLAUDE.md → Memory protocol.
data-ai
Show a weekly training log: activities grouped by ISO week and sport, with totals for distance, time and elevation. Use when the user asks "what did I do this week", "weekly summary", "training log".
testing
Show how the user's training time and volume distribute across run, ride and swim, and flag underweighted disciplines. Use when the user asks "am I balanced", "discipline balance", "which sport am I neglecting".
data-ai
Compute a combined CTL/ATL/TSB across run, ride and swim for triathletes. Use when the user asks "my combined load", "triathlon training load", "total TSS across sports".
data-ai
Persist a confirmed weekly training plan (one row per session with target HR range and pace range) and measure adherence against actual activities. Use when the user says "my plan this week", "what's on today", "save this plan", "how am I doing vs plan", "plan adherence", "did I complete this week", or any equivalent in Spanish.