Agent skill
strava-injury-risk-triage
Assess injury/fatigue risk using current vs prior weeks from Strava MCP weekly_stats.
Install this agent skill to your Project
npx add-skill https://github.com/mizunyang/stravalocalmcp/tree/main/strava-injury-risk
SKILL.md
Goal
Estimate short-term injury/fatigue risk based on week-over-week changes and activity mix.
Procedure
- Call
weekly_stats(weeks=4, week_start=monday, tz_name=Asia/Tokyo)to get last 4 weeks. - Compute heuristics (no medical claims):
- Load ramp: this_week_distance / avg_last_3_weeks_distance
- Long-session flag: any week with moving_time > 6h
- Climb spike: this_week_elev / avg_last_3_weeks_elev
- Sport imbalance: if one sport_type > 80% of volume
- Classify risk: low|medium|high with reasons.
- Provide 2-3 safe suggestions (sleep, easy Z2, rest day, mobility). Avoid diagnosis.
Output format (JSON)
- risk_level: low|medium|high
- signals: {ramp_ratio, climb_ratio, imbalance, long_session_flag}
- reasons: [strings]
- suggestions: [strings]
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
strava-next-week-planner
Generate a next-week training plan from weekly load + risk outputs (derived from Strava MCP data).
handoff
Compact the current conversation into a handoff document for another agent to pick up.
obsidian-vault
Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.
git-guardrails-claude-code
Set up Claude Code hooks to block dangerous git commands (push, reset --hard, clean, branch -D, etc.) before they execute. Use when user wants to prevent destructive git operations, add git safety hooks, or block git push/reset in Claude Code.
edit-article
Edit and improve articles by restructuring sections, improving clarity, and tightening prose. Use when user wants to edit, revise, or improve an article draft.
setup-pre-commit
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
Didn't find tool you were looking for?