rerun_worker_run
Rerun a specific CoreClaw worker run with the same saved inputs.
WHEN TO USE: Use when the user wants to retry or repeat a known run id. 中文触发: 当用户要在 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 a new run_slug or synchronous result fields.
WORKFLOW: Follow with get_worker_run or list_worker_run_results for the new run.
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) | |
| run_id | Yes | Worker run identifier. Example: "01KKDXV2G26BT7NH4ZQR2R4NPZ". Obtain from run_worker, list_worker_runs, or get_last_worker_run. | |
| 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) |