iyke_timer_schedule
Schedule a one-shot timer that fires an OS notification at a specified absolute time or after a delay, with optional agent inbox delivery.
Instructions
Schedule a one-shot timer in the active project (or specified scope). Pass either fire_at (absolute epoch-ms) or delay_ms (relative from now), not both. When the timer fires the shell emits an OS notification; if agent_id is set, an entry also lands in that agent's inbox (delivered on its next tool call, 24h TTL).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Optional notification body. <=4 KB. | |
| scope | No | ||
| title | Yes | Notification title. <=300 chars. | |
| fire_at | No | Absolute fire time, unix epoch ms. Mutually exclusive with delay_ms. | |
| agent_id | No | Registered agent id to deliver an inbox event to on fire. | |
| delay_ms | No | Fire delay from now, ms. Mutually exclusive with fire_at. |