← All widgetsAdvancedReactive & Platform

Task Tracker

Workflow step status.

Displays the status of each step in a running workflow. The orchestrator returns this automatically for multi-step actions.

type · task_tracker
A platform-level / reactive component.

How to use it

Just ask for it in chat — the agent emits this widget and the shell renders it:

Try saying
(returned automatically for multi-step workflows)

Example

The agent returns this A2UI component (inside the components array of a /chat response):

task_tracker.json
{
  "type": "task_tracker",
  "data": {
    "status": "completed",
    "steps": [
      {
        "step": 1,
        "tool": "SEARCH_WEB",
        "status": "completed",
        "message": "Found 8 results"
      }
    ]
  }
}

Properties

PropTypeDescription
data{status,steps[]}Workflow status payload

Browse the full Widget Index, the Widget Catalog, or learn the A2UI system behind it.