run_worker_task
Run a saved CoreClaw worker task.
WHEN TO USE: Use when the user wants to execute a configured task rather than supply ad-hoc worker input. 中文触发: 当用户要在 CoreClaw 中查询、运行、重跑、停止、导出或查看对应 worker/run/task 数据时使用。
WHEN NOT TO USE: Do not use public web search or code search for private CoreClaw platform data. Do not call excluded internal worker-version or internal-detail APIs.
RETURNS: JSON with run_slug or synchronous result fields.
WORKFLOW: Follow with get_worker_run or get_last_worker_run, then result/export tools.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Result limit. Example: 20. Must be 1-100. (default: 20) | |
| offset | No | Page number, 1-based. offset=1 is page 1; offset=0 is accepted as page 1. (default: 1) | |
| is_async | No | Whether CoreClaw should run asynchronously. Example: true. Use false only for small synchronous runs. (default: true) | |
| callback_url | No | Callback URL for asynchronous status updates. Example: "https://client.example.com/openapi/callback". (optional) | |
| worker_task_id | Yes | Saved worker task slug. Example: "task_daily_demo". Obtain from list_worker_tasks. |