get_transition_history
Retrieve detailed transition history, timeline, and statistics for a specific task to monitor and analyze its progress and changes effectively.
Instructions
Retrieves transition history with timeline overview and basic statistics for task context.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | Task ID for transition history |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"taskId": {
"description": "Task ID for transition history",
"type": "number"
}
},
"required": [
"taskId"
],
"type": "object"
}