Get research task
get_research_taskRead one task's plan, cursor, findings, budget, and version before resuming or checkpointing it.
When to use it
Read one task's plan, cursor, findings, budget, and version before resuming or checkpointing it.
List existing Threads first, inspect the case file, then add exact evidence, propose a revision, or start one bounded run and poll it to a terminal state.
Research Thread case files, exact evidence, pending revisions, or pollable metered run state and results.
Avoid using it when
You only need a one-off answer, or you intend to validate, reject, incorporate, apply, or dismiss a conclusion without human review.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Read one research task's goal, plan, cursor, findings, budget, outcome, and current version before resuming or checkpointing it. Use when: Read one task's plan, cursor, findings, budget, and version before resuming or checkpointing it.
View JSON Schema
{
"type": "object",
"properties": {
"taskId": {
"type": "string",
"format": "uuid"
}
},
"required": [
"taskId"
],
"additionalProperties": false
}