Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

hevyhevy 搜索

Agent Skill

hevy 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

605

周安装

26

GitHub Stars

2

下载量

212
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:hevy(hevy 搜索)
来源仓库:https://github.com/jakubrohleder/agent-toolkit
仓库路径:skills/hevy
安装命令:
npx skills add https://github.com/jakubrohleder/agent-toolkit --skill hevy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/jakubrohleder/agent-toolkit --skill hevy

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,避免触发联网或文件读写操作。
  • hevy 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Hevy Routine Creator

Quick Start

<skill-dir>/bin/hevy auth <key>           # Authenticate (get key from hevy.com/settings)
<skill-dir>/bin/hevy exercises search "squat"
<skill-dir>/bin/hevy routines template > routine.json
# Edit routine.json
<skill-dir>/bin/hevy routines create routine.json

For all commands: <skill-dir>/bin/hevy --help

Workflow

  1. Parse workout plan - extract exercises, sets, reps, weights, rest times
  2. Look up exercise IDs - hevy exercises search <name>
  3. Build routine JSON - start with hevy routines template
  4. Create routine - hevy routines create file.json

Critical Rules

  • NEVER use @ in notes (causes silent 400 errors)
  • ALWAYS wrap: {"routine": {...}} not bare object
  • ALWAYS match set properties to exercise type:

- weight_reps → weight_kg, reps - reps_only → reps only (NO weight!) - duration → duration_seconds - distance_duration → distance_meters, duration_seconds - short_distance_weight → distance_meters, weight_kg (Farmers Walk, Sled Push/Pull)

  • NEVER guess IDs - always hevy exercises search

Exercise Type Decision

User describes...Exercise TypeSet Properties
Weight + reps ("3x10 @ 135lb")weight_repsweight_kg, reps
Just reps ("3x12 pull-ups")reps_onlyreps only
Time hold ("60s plank")durationduration_seconds
Distance + time ("500m row")distance_durationdistance_meters, duration_seconds
Distance + weight ("50m farmers walk @ 80kg")short_distance_weightdistance_meters, weight_kg

When unsure: hevy exercises get <id> shows the exercise type.

Interpreting Workout Plans

Supersets:

  • "A1/A2", "superset", "paired" → same superset_id (integers: 0, 1, 2...)
  • "Circuit" or "EMOM" → all exercises share one superset_id
  • Separate exercises → superset_id: null

Rest: Goes on LAST exercise of superset only

AMRAP/Max effort: Use "reps": null

Example superset structure:

{
  "exercise_template_id": "79D0BB3A",
  "superset_id": 0,
  "rest_seconds": null,
  "sets": [{"type": "normal", "weight_kg": 80, "reps": 10}]
},
{
  "exercise_template_id": "1B2B1E7C",
  "superset_id": 0,
  "rest_seconds": 90,
  "sets": [{"type": "normal", "reps": 8}]
}

Common Exercise IDs

Use hevy exercises search for current IDs. These are reference examples:

ExerciseIDType
Squat (Barbell)D04AC939weight_reps
Deadlift (Barbell)C6272009weight_reps
Bench Press (Barbell)79D0BB3Aweight_reps
Overhead Press (Barbell)AE23FF09weight_reps
Pull Up1B2B1E7Creps_only
Push Up392887AAreps_only
Rowing Machine0222DB42distance_duration
Stretching527DA061duration
Farmers Walk49742539short_distance_weight

Before Creating Custom Exercises

  1. Search partial names ("row" not "cable row")
  2. Check equipment variants (Barbell, Dumbbell, Cable, Machine)
  3. Try alternate names ("Skull Crushers" = "Lying Tricep Extension")

Unit Conversion

User provides lbs → convert to kg: weight_kg = lbs / 2.205

Round to nearest 0.5 kg for practical loading.

Handling Search Results

ScenarioAction
Exact matchUse that ID
Multiple similar (e.g., "Squat" returns Barbell, Dumbbell, Smith)Pick equipment variant matching user's context
No resultsTry shorter term ("tricep" not "tricep pushdown cable")
Still nothingCreate custom exercise only as last resort

Bulk Import Strategy

For programs with 10+ routines:

  1. Build all JSON files first
  2. Create one routine, verify it appears correctly in app
  3. Create remaining with 2-second delays between calls
  4. If 429 error: wait 60s, resume from failed routine

Troubleshooting

ProblemCauseFix
HTML response@ in notesReplace with "at"
Exercise not foundTypoSearch partial name
401 UnauthorizedBad API keyhevy auth test
429 Rate limitToo many requestsWait 60s, then retry
400 Bad RequestWrong set properties for exercise typeCheck exercise type with hevy exercises get <id>
Field not allowedRead-only field in updateRemove id, created_at, updated_at fields
Sets rejectedweight_kg on reps_only exerciseRemove weight, use only reps

CLI vs This File

NeedUse
Exact command syntax, all flagshevy <command> --help
Workflow, gotchas, interpretation rulesThis file
Exploring all capabilitieshevy --help

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

53.4%
按下载量换算113

Cursor

30.08%
按下载量换算64

Claude Code

15.44%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills