schedule-task
Register a cron / timer task. Side-effecting (creates persistent schedule).
id tool/schedule-taskv1.0.0function schedule_task
Signature
| Parameter | Type | Required | Description |
|---|---|---|---|
cron | string | yes | Cron expression |
name | string | yes | Task name |
payload | object | yes | Task definition |
| returns | object | {task_id, next_run}. |
Tool definition for the model
{
"name": "schedule_task",
"description": "Register a recurring task.",
"input_schema": {
"type": "object",
"properties": {
"cron": {
"type": "string",
"description": "Cron expression"
},
"name": {
"type": "string",
"description": "Task name"
},
"payload": {
"type": "object",
"description": "Task definition"
}
},
"required": [
"cron",
"name",
"payload"
]
}
}Author convergent-systems-key. Source convergent-systems-co/agent-atoms (original ↗). License Apache-2.0. Re-typed from tool-definition by scripts/migrate-policy-tool.py.