スキル一覧に戻る
Flow-Club

add-exercise

by Flow-Club

Get jacked before AI takes your job

1🍴 0📅 2026年1月21日
GitHubで見るManusで実行

SKILL.md


name: add-exercise description: Add a new exercise to vibereps. Use when the user wants to create a new exercise type with pose detection. Handles creating the JSON config file and detection logic. allowed-tools: Read, Write, Glob, Grep

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 '{}'

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です