AgentStack
SKILL verified MIT Self-run

Hevy

skill-mjrussell-agent-skills-hevy · by mjrussell

Query workout data from Hevy including workouts, routines, exercises, and history. Use when user asks about their workouts, gym sessions, exercise progress, or fitness routines.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-mjrussell-agent-skills-hevy

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Hevy? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Hevy CLI

CLI for the Hevy workout tracking API. Query workouts, routines, exercises, and track progress.

Installation

npm install -g hevy-cli

Setup

Requires Hevy Pro subscription for API access.

  1. Get API key from https://hevy.com/settings?developer
  2. Set environment variable: export HEVY_API_KEY="your-key"

Commands

Status

hevy status                # Check configuration and connection
hevy status --json

Workouts

hevy workouts              # List recent workouts (default 5)
hevy workouts -n 10        # List 10 recent workouts
hevy workouts --all        # Fetch all workouts
hevy workouts --kg         # Show weights in kg (default is lbs)
hevy workout           # Show detailed workout
hevy workouts --json       # Output as JSON

Routines

hevy routines              # List all routines
hevy routine           # Show detailed routine
hevy routines --json

Exercises

hevy exercises                      # List all exercises
hevy exercises -s "bench press"     # Search by name
hevy exercises --muscle chest       # Filter by muscle group
hevy exercises --custom             # Show only custom exercises
hevy exercises --json

Exercise History

hevy history           # Show history for exercise
hevy history  -n 50    # Limit entries
hevy history  --json

Stats

hevy count                 # Total workout count
hevy folders               # List routine folders

Usage Examples

User: "What did I do at the gym today?"

hevy workouts -n 1

User: "Show me my bench press progress"

hevy exercises -s "bench press" --json  # Get exercise ID
hevy history               # View history

User: "What routines do I have?"

hevy routines

User: "How many workouts have I done?"

hevy count

User: "Find exercises for legs"

hevy exercises --muscle quadriceps
hevy exercises --muscle hamstrings

Notes

  • Weights default to lbs, use --kg for kilograms
  • Exercise IDs are UUIDs shown in detailed views and JSON output
  • API has rate limits; avoid excessive --all usage

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.