mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
18 lines
1.3 KiB
Markdown
18 lines
1.3 KiB
Markdown
# Session-local Schedule
|
|
|
|
English | [中文](README.zh.md)
|
|
|
|
This overlay opts one `dsh web` process into Schedule reminders without changing the shipped default Web composition:
|
|
|
|
```sh
|
|
dsh web --patch examples/web-schedule/cordis.yml
|
|
```
|
|
|
|
The current overlay supports one-shot reminders created with a positive whole-number `after_seconds`. The model manages them through `schedule_create`, `schedule_list`, and `schedule_delete`; every result identifies the delivery mode as `session-local`.
|
|
|
|
The original Session log owns each reminder. A live root Agent waits and retries after it becomes idle, then queues a normal follow-up turn in that conversation. Closing the process or leaving the Session cold stops its in-memory timer without deleting the record; reopening that same Session restores the wait and delivers an overdue reminder. Merely reading cold history never activates it, and a fork does not inherit its parent's reminders.
|
|
|
|
Create and actual delete operations acknowledge success only after Session persistence confirms their event prefix. Schedule does not provide browser, operating-system, email, SMS, or other external notification. A durable dispatch records that the follow-up was queued; it does not acknowledge model success or user receipt.
|
|
|
|
Absolute-time, fixed-interval, and cron rules are not accepted by this layer.
|