← スキル一覧に戻る

tune-detection
by Flow-Club
Get jacked before AI takes your job
⭐ 1🍴 0📅 2026年1月21日
SKILL.md
name: tune-detection description: Tune exercise detection sensitivity and thresholds. Use when exercises aren't counting correctly, have false positives, or need calibration adjustments. allowed-tools: Read, Edit, Grep
Tune Detection Thresholds
Common Issues
| Problem | Likely Cause | Fix |
|---|---|---|
| Not counting reps | Thresholds too strict | Lower down threshold or raise up threshold |
| Double counting | Thresholds too loose | Tighten thresholds, add hysteresis |
| Counts on wrong motion | Wrong landmarks | Check landmark IDs match exercise |
| Works for some people | Fixed thresholds | Use body-relative thresholds with getBodyScale() |
Threshold Locations
JSON configs (preferred):
exercises/*.json → detection.thresholds
Legacy functions in exercise_ui.html:
detectLegacySquat- DOWN_ANGLE, UP_ANGLEdetectLegacyPushup- DOWN_ANGLE, UP_ANGLEdetectLegacyJumpingJack- arm position relative to shouldersdetectLegacyCalfRaise- legLength * 0.04 thresholddetectLegacySideStretch- bodyScale * 0.4 threshold
Detection Helpers
The codebase includes helpers for robust detection:
// Check if landmarks are visible
isVisible(landmarks, [23, 24, 25, 26], 0.5)
// Normalize to body size
const bodyScale = getBodyScale(landmarks);
const threshold = baseThreshold * bodyScale;
Testing Changes
- Edit threshold in JSON or HTML
- Restart tracker:
./exercise_tracker.py user_prompt_submit '{}' - Watch the status text - it shows live angle/distance values
- Adjust based on when state transitions happen
Both-sides Averaging
For angle-based exercises, use joint_alt in JSON to average both sides:
"landmarks": {
"joint": [23, 25, 27],
"joint_alt": [24, 26, 28]
}
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です