.claude/skills/swim-css/SKILL.md
Estimate Critical Swim Speed (CSS) from a 400m / 200m time-trial pair, and derive training pace targets. Use when the user asks about CSS, swim threshold, target pace per 100m.
npx skillsauth add AlvaroLaraFF/strava-coach swim-cssInstall 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.
CSS = 200 / (T400 - T200) (m/s). The user provides their best 400m and 200m
times (in seconds or M:SS) — either as flags or via AskUserQuestion.
python3 .claude/skills/swim-css/scripts/swim_css.py --t400 6:20 --t200 2:55
CSS in m/s and pace per 100m, plus suggested training paces:
python3 .claude/skills/athlete-snapshot/scripts/update_snapshot.py --source swim-css --css-m-s <CSS>
Replace <CSS> with the computed CSS in m/s. Show alerts if any.
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".
tools
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".
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".