forge-openclaw-plugin 0.2.96 → 0.2.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/{board-D1HbyD4u.js → board-Ju0h0SeG.js} +1 -1
- package/dist/assets/index-Cn5Wpwau.css +1 -0
- package/dist/assets/{index-lOGIgdyP.js → index-CwvGs8n4.js} +55 -55
- package/dist/assets/{motion-D2OqILg_.js → motion-DRPJkN3a.js} +1 -1
- package/dist/assets/{table-YWWjPjC_.js → table-DewbFlTh.js} +1 -1
- package/dist/assets/{ui-DikPZj8S.js → ui-C2IvSrAz.js} +1 -1
- package/dist/assets/{vendor-BS9OPVNh.js → vendor-DL2K5ayT.js} +230 -225
- package/dist/index.html +7 -7
- package/dist/openclaw/tools.js +1 -1
- package/dist/server/server/src/app.js +22 -5
- package/dist/server/server/src/health.js +445 -21
- package/dist/server/server/src/openapi.js +13 -0
- package/dist/server/src/components/ui/info-tooltip.js +7 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/forge-openclaw/SKILL.md +2 -2
- package/skills/forge-openclaw/entity_conversation_playbooks.md +5 -4
- package/dist/assets/index-5w2YJv5G.css +0 -1
|
@@ -682,10 +682,10 @@ Use the health tools when the request is about sleep or sports review:
|
|
|
682
682
|
|
|
683
683
|
- `forge_get_sleep_overview` to inspect recent nights, averages, regularity, stage breakdown, and linked reflective context
|
|
684
684
|
- `forge_get_sports_overview` to inspect training volume, workout types, effort trends, habit-generated sessions, and linked context
|
|
685
|
-
- `forge_get_training_load_overview` to inspect cardiovascular load, HR zone balance, acute/chronic stress, high-intensity pressure, VO2max context, and training target fit
|
|
685
|
+
- `forge_get_training_load_overview` to inspect cardiovascular load, HR zone balance, zone-time buckets, smart training modes, acute/chronic stress, high-intensity pressure, VO2max context, next-workout guidance, and training target fit
|
|
686
686
|
- `forge_update_sleep_session` to add sleep-quality notes, tags, or links back to Forge entities after review
|
|
687
687
|
- `forge_update_workout_session` to add subjective effort, mood, meaning, tags, or links on one workout after review
|
|
688
|
-
- remember that the UI route is `/sports` while the backend overview route is `/api/v1/health/fitness`; the dedicated training-load UI is `/training-load` and its backend route is `/api/v1/health/training-load
|
|
688
|
+
- remember that the UI route is `/sports` while the backend overview route is `/api/v1/health/fitness`; the dedicated training-load UI is `/training-load` and its backend route is `/api/v1/health/training-load`, including zone-time reporting and Combat/Base/Endurance smart modes
|
|
689
689
|
|
|
690
690
|
Use these exact health batch payload shapes when the user is creating or editing the stored records themselves:
|
|
691
691
|
|
|
@@ -1429,10 +1429,11 @@ Route note:
|
|
|
1429
1429
|
- `sports_overview` is a read-model-only surface. Use `forge_get_sports_overview` or
|
|
1430
1430
|
`/api/v1/health/fitness` for session review. Do not create, update, or delete
|
|
1431
1431
|
`sports_overview` through batch CRUD.
|
|
1432
|
-
- For cardiovascular load, HR zone distribution,
|
|
1433
|
-
context,
|
|
1434
|
-
or
|
|
1435
|
-
|
|
1432
|
+
- For cardiovascular load, HR zone distribution, zone-time by week/month/day,
|
|
1433
|
+
acute/chronic load, VO2max context, smart training modes, 4x4 suitability,
|
|
1434
|
+
next-workout guidance, or training target questions, use
|
|
1435
|
+
`forge_get_training_load_overview` or `/api/v1/health/training-load`. Treat
|
|
1436
|
+
`training_load` as read-model-only, not a batch CRUD entity.
|
|
1436
1437
|
- If the review reveals that one workout needs reflective context, switch to the
|
|
1437
1438
|
stored `workout_session` batch route or reflective update helper for that known
|
|
1438
1439
|
session.
|