@invergent/agent-chat-react 1.5.9 → 1.5.10

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/README.md CHANGED
@@ -4,3 +4,16 @@ Reusable React chat UI and runtime for Surogates agent sessions.
4
4
 
5
5
  The package is adapter-driven. Consumers own routing, authentication, API base
6
6
  URLs, workspace panels, and application shell state.
7
+
8
+ ## Shared Panels
9
+
10
+ `ScheduledWorkPanel` renders user-owned scheduled work for an agent: fixed cron
11
+ jobs, dynamic `/loop` schedules, run counts, next/last run timestamps, last-run
12
+ links, and optional run-now/cancel actions. It is powered by optional adapter
13
+ methods:
14
+
15
+ - `listScheduledWork`
16
+ - `runScheduledWorkNow`
17
+ - `cancelScheduledWork`
18
+
19
+ If `listScheduledWork` is not implemented, the panel renders nothing.