add-exercise

📁 flow-club/vibereps 📅 Jan 29, 2026
1
总安装量
1
周安装量
#43796
全站排名
安装命令
npx skills add https://github.com/flow-club/vibereps --skill add-exercise

Agent 安装分布

mcpjam 1
claude-code 1
kilo 1
junie 1
zencoder 1

Skill 文档

Add New Exercise

Instructions

When adding a new exercise to vibereps:

  1. Read the template at exercises/_template.json for the JSON structure

  2. Choose a detection type based on the exercise motion:

    • angle – Joint angle changes (squats, pushups)
    • height_baseline – Vertical movement from baseline (calf raises)
    • height_relative – Position relative to reference point (jumping jacks)
    • tilt – Torso lean (side stretches)
    • distance – Body parts approaching each other (standing crunches)
    • width_ratio – Shoulder/hip width ratio (torso twists)
    • quadrant_tracking – Circular arm motion (arm circles)
  3. Create the JSON config in exercises/{exercise_name}.json

  4. Test detection by running the tracker

MediaPipe Landmark IDs

Key landmarks for detection:

  • Shoulders: 11 (left), 12 (right)
  • Elbows: 13 (left), 14 (right)
  • Wrists: 15 (left), 16 (right)
  • Hips: 23 (left), 24 (right)
  • Knees: 25 (left), 26 (right)
  • Ankles: 27 (left), 28 (right)

Example: Angle-based exercise

{
  "id": "squats",
  "name": "Squats",
  "description": "Strengthens legs",
  "category": "strength",
  "reps": { "normal": 10, "quick": 5 },
  "detection": {
    "type": "angle",
    "landmarks": {
      "joint": [23, 25, 27],
      "joint_alt": [24, 26, 28]
    },
    "thresholds": { "down": 120, "up": 150 }
  },
  "instructions": {
    "ready": "Squat down below {down}°",
    "down": "Good! Now stand up"
  }
}

Testing

Run the tracker to test:

./exercise_tracker.py user_prompt_submit '{}'