โ† All skills
Tencent SkillHub ยท Developer Tools

Strava CLI

Interact with Strava via the strava-client-cli Python tool. Use for viewing activities, athlete profiles, stats, and exporting data. Covers setup (creating a Strava account, API app, and OAuth) and all CLI commands.

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

Interact with Strava via the strava-client-cli Python tool. Use for viewing activities, athlete profiles, stats, and exporting data. Covers setup (creating a Strava account, API app, and OAuth) and all CLI commands.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

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

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

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

Install

uvx --from strava-client-cli strava --help # Or install persistently: uv tool install strava-client-cli

1. Create a Strava Account (if needed)

Sign up at https://www.strava.com/register. Only name, email, and password required.

2. Create a Strava API Application

Go to https://www.strava.com/settings/api Fill in: Application Name: any descriptive name Category: pick closest match (e.g. "Other") Website: any URL (e.g. your GitHub) Authorization Callback Domain: localhost Description: brief description Check the API Agreement checkbox Click Create Note your Client ID and Client Secret Important: New Strava API apps allow only 1 connected athlete. To connect a different athlete, revoke the current one at Settings โ†’ My Apps โ†’ Revoke Access.

3. Authenticate

strava auth Enter Client ID and Client Secret when prompted. Open the displayed URL in a browser, authorize, then copy the code parameter from the redirect URL (http://localhost/?code=XXXXX) and paste it back. Tokens auto-refresh (every 6 hours). Config: ~/.config/strava-cli/config.json, tokens: ~/.config/strava-cli/tokens.json. Manual Token Exchange (headless/automated) If no browser is available, do the OAuth flow manually: Build the auth URL: https://www.strava.com/oauth/authorize?client_id=CLIENT_ID&response_type=code&redirect_uri=http://localhost&approval_prompt=force&scope=activity:read_all,profile:read_all Open in any browser, authorize, grab the code from the redirect URL Exchange: curl -s -X POST https://www.strava.com/oauth/token \ -d client_id=CLIENT_ID \ -d client_secret=CLIENT_SECRET \ -d code=CODE \ -d grant_type=authorization_code Save the response tokens to ~/.config/strava-cli/tokens.json: { "access_token": "...", "refresh_token": "...", "expires_at": 1234567890, "token_type": "Bearer" }

Commands

strava profile # Athlete profile strava stats # Run/ride/swim stats summary strava activities --limit 10 # Recent activities strava activities --type Run --after 2024-01-01 # Filter by type/date strava activity 12345678 # Detailed activity view strava export --output ./data --format json # Bulk export

Source

https://github.com/geodeterra/strava-cli

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc