scheduler_create
Schedule automated actions like creating tasks, injecting reminders, or emitting events at fixed intervals.
Instructions
Create a scheduled task that triggers automatically on a fixed interval.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Task name (unique identifier) | |
| team_id | No | Team ID to scope this task (optional) | |
| interval | Yes | Human-readable interval, e.g. "2 days", "1 hour", "30 minutes" (minimum 5 minutes) | |
| action_type | Yes | One of "create_task" / "inject_reminder" / "emit_event" | |
| description | No | Human-readable description | |
| action_config | No | JSON string with action parameters. - create_task: {"title": "...", "description": "...", "priority": "medium"} - inject_reminder: {"message": "..."} - emit_event: {"event_type": "...", "data": {...}} | {} |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||