{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/hevycli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hevycli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "Skill.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/hevycli",
    "agentPageUrl": "https://openagent3.xyz/skills/hevycli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hevycli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hevycli/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Description",
        "body": "Access and analyze Hevy fitness tracking data including workouts, routines, and exercise templates via the command line."
      },
      {
        "title": "When to Use",
        "body": "Use this skill when the user asks to:\n\nView their workout history or recent workouts\nGet details about a specific workout\nCheck their total workout count\nList or view their workout routines\nBrowse exercise templates\nExport workout data as JSON\nAnalyze their fitness progress over time"
      },
      {
        "title": "Prerequisites",
        "body": "User must have hevycli installed (go install github.com/nsampre/hevycli@latest)\nUser must have configured their Hevy API key (hevycli config set-api-key <key>)\nUser must have a Hevy Pro subscription"
      },
      {
        "title": "Configuration",
        "body": "# Set API key\nhevycli config set-api-key <api-key-uuid>\n\n# View current config\nhevycli config show"
      },
      {
        "title": "Workouts",
        "body": "# List recent workouts\nhevycli workouts list [--page N] [--page-size N] [--format json|table]\n\n# Get detailed workout information (accepts full UUID or 8-char short ID)\nhevycli workouts get <workout-id>\n\n# Get total workout count\nhevycli workouts count"
      },
      {
        "title": "Routines",
        "body": "# List routines\nhevycli routines list [--page N] [--page-size N] [--format json|table]\n\n# Get routine details (accepts full UUID or 8-char short ID)\nhevycli routines get <routine-id>"
      },
      {
        "title": "Exercises",
        "body": "# List exercise templates\nhevycli exercises list [--page N] [--page-size N] [--format json|table]\n\n# Get exercise template details\nhevycli exercises get <template-id>"
      },
      {
        "title": "Global Flags",
        "body": "--format - Output format: table (default) or json\n--debug - Enable debug output for API requests"
      },
      {
        "title": "Example 1: View Recent Workout History",
        "body": "hevycli workouts list --page-size 5"
      },
      {
        "title": "Example 2: Get Detailed Workout with Sets and Reps",
        "body": "# Using short ID (first 8 characters)\nhevycli workouts get f75e9c13\n\n# Or using full UUID\nhevycli workouts get f75e9c13-32d7-407d-9715-011f5d5698fa"
      },
      {
        "title": "Example 3: Export Data for Analysis",
        "body": "# Export all workouts as JSON\nhevycli workouts list --format json > workouts.json\n\n# Export routines\nhevycli routines list --format json > routines.json"
      },
      {
        "title": "Example 4: Check Progress",
        "body": "# View total workouts completed\nhevycli workouts count\n\n# List exercise templates to find specific exercise IDs\nhevycli exercises list"
      },
      {
        "title": "Tips for Claude",
        "body": "Use JSON format for analysis: When helping users analyze their data, use --format json to get structured data that can be parsed and analyzed.\n\n\nShort IDs are supported: Users can copy short IDs from workouts list output and use them directly in workouts get commands.\n\n\nPagination: API max page size is 10. Use pagination (--page N) to access older workouts.\n\n\nError handling: If a command fails:\n\nCheck if API key is configured (hevycli config show)\nVerify the user has Hevy Pro subscription\nCheck if the ID exists or is valid\n\n\n\nData insights: After retrieving workout data, you can:\n\nCalculate training volume (weight × reps × sets)\nTrack progression over time\nIdentify patterns in workout frequency\nSuggest rest day intervals"
      },
      {
        "title": "Example Interaction",
        "body": "User: \"Show me my last 3 workouts\"\n\nClaude:\n\nhevycli workouts list --page-size 3\n\nUser: \"Get details on the first workout\"\n\nClaude:\n\n# Using the short ID from the list output\nhevycli workouts get f75e9c13\n\nUser: \"How many total workouts have I completed?\"\n\nClaude:\n\nhevycli workouts count"
      },
      {
        "title": "Notes",
        "body": "The tool reads data only - it does not create or modify workouts\nAll timestamps are in ISO 8601 format\nWeights are always displayed in kilograms\nDistances are in meters, durations in seconds\nTable output handles emoji in workout titles (may have minor alignment issues depending on terminal)"
      }
    ],
    "body": "Hevy CLI Skill\nDescription\n\nAccess and analyze Hevy fitness tracking data including workouts, routines, and exercise templates via the command line.\n\nWhen to Use\n\nUse this skill when the user asks to:\n\nView their workout history or recent workouts\nGet details about a specific workout\nCheck their total workout count\nList or view their workout routines\nBrowse exercise templates\nExport workout data as JSON\nAnalyze their fitness progress over time\nPrerequisites\nUser must have hevycli installed (go install github.com/nsampre/hevycli@latest)\nUser must have configured their Hevy API key (hevycli config set-api-key <key>)\nUser must have a Hevy Pro subscription\nAvailable Commands\nConfiguration\n# Set API key\nhevycli config set-api-key <api-key-uuid>\n\n# View current config\nhevycli config show\n\nWorkouts\n# List recent workouts\nhevycli workouts list [--page N] [--page-size N] [--format json|table]\n\n# Get detailed workout information (accepts full UUID or 8-char short ID)\nhevycli workouts get <workout-id>\n\n# Get total workout count\nhevycli workouts count\n\nRoutines\n# List routines\nhevycli routines list [--page N] [--page-size N] [--format json|table]\n\n# Get routine details (accepts full UUID or 8-char short ID)\nhevycli routines get <routine-id>\n\nExercises\n# List exercise templates\nhevycli exercises list [--page N] [--page-size N] [--format json|table]\n\n# Get exercise template details\nhevycli exercises get <template-id>\n\nGlobal Flags\n--format - Output format: table (default) or json\n--debug - Enable debug output for API requests\nUsage Examples\nExample 1: View Recent Workout History\nhevycli workouts list --page-size 5\n\nExample 2: Get Detailed Workout with Sets and Reps\n# Using short ID (first 8 characters)\nhevycli workouts get f75e9c13\n\n# Or using full UUID\nhevycli workouts get f75e9c13-32d7-407d-9715-011f5d5698fa\n\nExample 3: Export Data for Analysis\n# Export all workouts as JSON\nhevycli workouts list --format json > workouts.json\n\n# Export routines\nhevycli routines list --format json > routines.json\n\nExample 4: Check Progress\n# View total workouts completed\nhevycli workouts count\n\n# List exercise templates to find specific exercise IDs\nhevycli exercises list\n\nTips for Claude\n\nUse JSON format for analysis: When helping users analyze their data, use --format json to get structured data that can be parsed and analyzed.\n\nShort IDs are supported: Users can copy short IDs from workouts list output and use them directly in workouts get commands.\n\nPagination: API max page size is 10. Use pagination (--page N) to access older workouts.\n\nError handling: If a command fails:\n\nCheck if API key is configured (hevycli config show)\nVerify the user has Hevy Pro subscription\nCheck if the ID exists or is valid\n\nData insights: After retrieving workout data, you can:\n\nCalculate training volume (weight × reps × sets)\nTrack progression over time\nIdentify patterns in workout frequency\nSuggest rest day intervals\nExample Interaction\n\nUser: \"Show me my last 3 workouts\"\n\nClaude:\n\nhevycli workouts list --page-size 3\n\n\nUser: \"Get details on the first workout\"\n\nClaude:\n\n# Using the short ID from the list output\nhevycli workouts get f75e9c13\n\n\nUser: \"How many total workouts have I completed?\"\n\nClaude:\n\nhevycli workouts count\n\nNotes\nThe tool reads data only - it does not create or modify workouts\nAll timestamps are in ISO 8601 format\nWeights are always displayed in kilograms\nDistances are in meters, durations in seconds\nTable output handles emoji in workout titles (may have minor alignment issues depending on terminal)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/nsampre/hevycli",
    "publisherUrl": "https://clawhub.ai/nsampre/hevycli",
    "owner": "nsampre",
    "version": "0.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}