forge-openclaw-plugin 0.2.29 → 0.2.32
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/index-BE_4LX2c.js +85 -0
- package/dist/assets/index-BE_4LX2c.js.map +1 -0
- package/dist/assets/index-DiyKCDxL.css +1 -0
- package/dist/index.html +2 -2
- package/dist/server/server/src/app.js +26 -5
- package/dist/server/server/src/movement.js +151 -0
- package/dist/server/server/src/services/life-force.js +84 -52
- package/dist/server/server/src/web.js +68 -2
- package/dist/server/src/lib/api.js +12 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/forge-openclaw/SKILL.md +19 -2
- package/dist/assets/index-C6PCeHD_.css +0 -1
- package/dist/assets/index-bfHIqj0-.js +0 -85
- package/dist/assets/index-bfHIqj0-.js.map +0 -1
|
@@ -403,8 +403,18 @@ Use the calendar tools when the request is about planning or availability rather
|
|
|
403
403
|
- `forge_connect_calendar_provider` only when the operator explicitly wants a new Google, Apple, Exchange Online, or custom CalDAV connection and the discovery choices are already known
|
|
404
404
|
- `forge_sync_calendar_connection` after a provider connection is created or when the calendar needs a fresh pull/push cycle
|
|
405
405
|
- `forge_create_work_block_template` as a convenience helper for Main Activity, Secondary Activity, Third Activity, Rest, Holiday, or Custom recurring blocks
|
|
406
|
-
- `forge_recommend_task_timeboxes` to find future slots that satisfy current rules
|
|
407
|
-
- `forge_create_task_timebox` as
|
|
406
|
+
- `forge_recommend_task_timeboxes` to find future slots that satisfy current rules when the user wants suggestions or when the agent needs help narrowing options
|
|
407
|
+
- `forge_create_task_timebox` as the main direct route for manual timeboxing once the slot is known; use it after reasoning from the live calendar overview or after accepting a suggested slot
|
|
408
|
+
|
|
409
|
+
Timebox planning rules for agents:
|
|
410
|
+
|
|
411
|
+
- prefer manual timeboxing when the agent already has enough calendar context to choose the slot itself
|
|
412
|
+
- use `forge_get_calendar_overview` first when the current day or week matters; reason over mirrored events, work blocks, existing timeboxes, and availability before placing the block
|
|
413
|
+
- use `forge_create_task_timebox` directly for the manual path with explicit `startsAt` and `endsAt`
|
|
414
|
+
- use `forge_recommend_task_timeboxes` only for the assisted path, then confirm one returned slot with `forge_create_task_timebox`
|
|
415
|
+
- when manually timeboxing, keep the title specific and task-shaped, not generic
|
|
416
|
+
- if the block needs a special Action Point profile, pass `activityPresetKey` and/or `customSustainRateApPerHour`
|
|
417
|
+
- if the user wants a note about why this slot exists, pass `overrideReason`
|
|
408
418
|
|
|
409
419
|
Use the health tools when the request is about sleep or sports review:
|
|
410
420
|
|
|
@@ -457,6 +467,13 @@ Use these exact calendar batch payload shapes when working generically:
|
|
|
457
467
|
- create a planned task slot:
|
|
458
468
|
`{"operations":[{"entityType":"task_timebox","data":{"taskId":"task_123","projectId":"project_456","title":"Draft the methods section","startsAt":"2026-04-03T06:00:00.000Z","endsAt":"2026-04-03T07:30:00.000Z","source":"suggested"}}]}`
|
|
459
469
|
|
|
470
|
+
Use these exact timebox helper payload shapes when the dedicated helper is simpler than batch CRUD:
|
|
471
|
+
|
|
472
|
+
- create a manual task timebox directly:
|
|
473
|
+
`{"taskId":"task_123","projectId":"project_456","title":"Draft the methods section","startsAt":"2026-04-03T06:00:00.000Z","endsAt":"2026-04-03T07:30:00.000Z","source":"manual","overrideReason":"Protected writing block before clinic.","activityPresetKey":"deep_work","customSustainRateApPerHour":6.5}`
|
|
474
|
+
- create a suggested task timebox after reviewing recommendations:
|
|
475
|
+
`{"taskId":"task_123","projectId":"project_456","title":"Draft the methods section","startsAt":"2026-04-03T08:00:00.000Z","endsAt":"2026-04-03T09:30:00.000Z","source":"suggested"}`
|
|
476
|
+
|
|
460
477
|
Use these interaction rules.
|
|
461
478
|
|
|
462
479
|
Keep the main discussion natural. Do not turn every conversation into a form. Do not offer Forge for every passing mention. Offer it once, near the end, only when the signal is strong and storing would help.
|