/install hevy-workouts
Hevy CLI
Use the hevy CLI to interact with Hevy fitness app data. Requires HEVY_API_KEY env var to be set.
Quick Start
# Verify access
hevy workouts count
# List recent workouts
hevy workouts list --page-size 10
# Raw JSON output for any command
hevy -j workouts list
Common Tasks
View workout history
hevy workouts list --page 1 --page-size 10
hevy workouts get \x3Cworkout-id>
Check exercise progress
# Find the exercise template ID first
hevy exercises list --page-size 100
# Then get history for that exercise
hevy exercises history \x3Ctemplate-id>
hevy exercises history \x3Ctemplate-id> --start-date 2025-01-01 --end-date 2025-02-01
Create a workout
hevy workouts create \
--title "Push Day" \
--start-time 2025-01-15T08:00:00Z \
--end-time 2025-01-15T09:00:00Z \
--exercises-json '[{"exercise_template_id":"79D0BB3A","sets":[{"type":"normal","weight_kg":60,"reps":8}]}]'
For complex exercises, use a file: --exercises-json @exercises.json
Manage routines
hevy routines list
hevy routines create --title "Upper Body" --exercises-json @routine.json
hevy routines update \x3Croutine-id> --title "Updated Name"
Organize with folders
hevy folders list
hevy folders create --name "Hypertrophy Block"
Key Patterns
- All list commands accept
--pageand--page-sizefor pagination. - Use
-jflag before the subcommand for JSON output:hevy -j workouts list. - Exercise data for create/update uses
--exercises-jsonaccepting inline JSON or@filepath. - Set types:
normal,warmup,failure,dropset. - IDs are returned in list/get responses -- use JSON mode (
-j) to get exact IDs for subsequent commands.
Full Command Reference
See references/commands.md for complete command syntax, all flag options, enum values for exercise types/equipment/muscle groups, and the exercises JSON schema.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install hevy-workouts - 安装完成后,直接呼叫该 Skill 的名称或使用
/hevy-workouts触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Hevy 是什么?
Interact with the Hevy fitness app via the hevy-cli command-line tool. Use when the user wants to view, create, or update workouts, routines, exercise templates, or routine folders in their Hevy account. Triggers on requests involving workout tracking, exercise history, routine management, or any Hevy-related data operations. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 897 次。
如何安装 Hevy?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install hevy-workouts」即可一键安装,无需额外配置。
Hevy 是免费的吗?
是的,Hevy 完全免费(开源免费),可自由下载、安装和使用。
Hevy 支持哪些平台?
Hevy 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Hevy?
由 sajal2692(@sajal2692)开发并维护,当前版本 v1.0.1。