check_task
Retrieve the status of a background task after launching it with run_task. See whether it's running, waiting for input, done, or requires review; set full=true for complete results.
Instructions
Check the current status of a background task (use after run_task with background=true). Return values: {status:"running"} — still running. {status:"waiting", question, options} — user input required. {status:"done", result} — completed. {status:"needs_review", result} — completed execution requires host review. {status:"not_found"} — task_id not found (already completed and removed). Use full=true to retrieve the complete result without truncation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| full | No | ||
| task_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |