# Send Hevy to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hevycli",
    "name": "Hevy",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nsampre/hevycli",
    "canonicalUrl": "https://clawhub.ai/nsampre/hevycli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/hevycli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hevycli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "Skill.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "hevycli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T02:59:06.707Z",
      "expiresAt": "2026-05-11T02:59:06.707Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hevycli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hevycli",
        "contentDisposition": "attachment; filename=\"hevycli-0.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "hevycli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/hevycli"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hevycli",
    "downloadUrl": "https://openagent3.xyz/downloads/hevycli",
    "agentUrl": "https://openagent3.xyz/skills/hevycli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hevycli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hevycli/agent.md"
  }
}
```
## Documentation

### 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 hevycli installed (go install github.com/nsampre/hevycli@latest)
User must have configured their Hevy API key (hevycli config set-api-key <key>)
User must have a Hevy Pro subscription

### Configuration

# Set API key
hevycli config set-api-key <api-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 <workout-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 <routine-id>

### Exercises

# List exercise templates
hevycli exercises list [--page N] [--page-size N] [--format json|table]

# Get exercise template details
hevycli exercises get <template-id>

### Global Flags

--format - Output format: table (default) or json
--debug - Enable debug output for API requests

### 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 json to get structured data that can be parsed and analyzed.


Short IDs are supported: Users can copy short IDs from workouts list output and use them directly in workouts get commands.


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



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)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nsampre
- Version: 0.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T02:59:06.707Z
- Expires at: 2026-05-11T02:59:06.707Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/hevycli)
- [Send to Agent page](https://openagent3.xyz/skills/hevycli/agent)
- [JSON manifest](https://openagent3.xyz/skills/hevycli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/hevycli/agent.md)
- [Download page](https://openagent3.xyz/downloads/hevycli)