/install hevycli
Hevy CLI Skill
Description
Access and analyze Hevy fitness tracking data including workouts, routines, and exercise templates via the command line.
When to Use
Use this skill when the user asks to:
- View their workout history or recent workouts
- Get details about a specific workout
- Check their total workout count
- List or view their workout routines
- Browse exercise templates
- Export workout data as JSON
- Analyze their fitness progress over time
Prerequisites
- User must have
hevycliinstalled (go install github.com/nsampre/hevycli@latest) - User must have configured their Hevy API key (
hevycli config set-api-key \x3Ckey>) - User must have a Hevy Pro subscription
Available Commands
Configuration
# Set API key
hevycli config set-api-key \x3Capi-key-uuid>
# View current config
hevycli config show
Workouts
# List recent workouts
hevycli workouts list [--page N] [--page-size N] [--format json|table]
# Get detailed workout information (accepts full UUID or 8-char short ID)
hevycli workouts get \x3Cworkout-id>
# Get total workout count
hevycli workouts count
Routines
# List routines
hevycli routines list [--page N] [--page-size N] [--format json|table]
# Get routine details (accepts full UUID or 8-char short ID)
hevycli routines get \x3Croutine-id>
Exercises
# List exercise templates
hevycli exercises list [--page N] [--page-size N] [--format json|table]
# Get exercise template details
hevycli exercises get \x3Ctemplate-id>
Global Flags
--format- Output format:table(default) orjson--debug- Enable debug output for API requests
Usage Examples
Example 1: View Recent Workout History
hevycli workouts list --page-size 5
Example 2: Get Detailed Workout with Sets and Reps
# Using short ID (first 8 characters)
hevycli workouts get f75e9c13
# Or using full UUID
hevycli workouts get f75e9c13-32d7-407d-9715-011f5d5698fa
Example 3: Export Data for Analysis
# Export all workouts as JSON
hevycli workouts list --format json > workouts.json
# Export routines
hevycli routines list --format json > routines.json
Example 4: Check Progress
# View total workouts completed
hevycli workouts count
# List exercise templates to find specific exercise IDs
hevycli exercises list
Tips for Claude
-
Use JSON format for analysis: When helping users analyze their data, use
--format jsonto get structured data that can be parsed and analyzed. -
Short IDs are supported: Users can copy short IDs from
workouts listoutput and use them directly inworkouts getcommands. -
Pagination: API max page size is 10. Use pagination (
--page N) to access older workouts. -
Error handling: If a command fails:
- Check if API key is configured (
hevycli config show) - Verify the user has Hevy Pro subscription
- Check if the ID exists or is valid
- Check if API key is configured (
-
Data insights: After retrieving workout data, you can:
- Calculate training volume (weight × reps × sets)
- Track progression over time
- Identify patterns in workout frequency
- Suggest rest day intervals
Example Interaction
User: "Show me my last 3 workouts"
Claude:
hevycli workouts list --page-size 3
User: "Get details on the first workout"
Claude:
# Using the short ID from the list output
hevycli workouts get f75e9c13
User: "How many total workouts have I completed?"
Claude:
hevycli workouts count
Notes
- The tool reads data only - it does not create or modify workouts
- All timestamps are in ISO 8601 format
- Weights are always displayed in kilograms
- Distances are in meters, durations in seconds
- Table output handles emoji in workout titles (may have minor alignment issues depending on terminal)
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install hevycli - 安装完成后,直接呼叫该 Skill 的名称或使用
/hevycli触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Hevy 是什么?
Access and analyze your Hevy fitness data via CLI to view workouts, routines, exercises, export JSON data, and track fitness progress. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1774 次。
如何安装 Hevy?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install hevycli」即可一键安装,无需额外配置。
Hevy 是免费的吗?
是的,Hevy 完全免费(开源免费),可自由下载、安装和使用。
Hevy 支持哪些平台?
Hevy 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Hevy?
由 nsampre(@nsampre)开发并维护,当前版本 v0.0.1。