Appearance
Execution Traces
Inspect every reasoning step, tool call, and decision an agent makes during task execution.
Overview
Execution traces provide full transparency into how agents process tasks. Every LLM call, reasoning step, tool invocation, and error is logged with token counts and costs, giving you a complete audit trail.

Trace Timeline
Each trace displays a sequential timeline of steps:
| Step Type | Description |
|---|---|
| Reasoning | The agent's thought process and decision-making |
| Tool Call | External tool or function invocation |
| Tool Result | Response from a tool call |
| Error | Any errors encountered during execution |
Viewing Traces
You can access execution traces from three places:
- Task detail page — click on a completed task to see its trace
- Agent detail "Traces" tab — view all traces for a specific agent
- Cost dashboard — traces linked from the top tasks by cost view
Step Details
Click any step in the timeline to expand it:
Reasoning steps show the agent's internal thought process — what it considered, what it decided, and why.

Tool call steps show the function called, parameters passed, and the result returned.

Cost Tracking
Each trace displays:
- Token count per step — input and output tokens
- Cost per step — USD cost based on the model's pricing
- Total trace cost — aggregate cost for the entire execution
- Duration — time taken from start to finish
Use Cases
- Debug agent behavior — see exactly why an agent made a specific decision or produced unexpected output
- Cost optimization — identify expensive reasoning loops or redundant tool calls and optimize prompts to reduce them
- Quality review — verify the agent followed instructions correctly before approving its output
Tips
- Check traces when an agent produces unexpected results — the reasoning steps usually reveal the issue
- Use trace cost data to identify agents that need prompt optimization
- Compare traces across similar tasks to spot inconsistencies in agent behavior
Related
- AI Agents — configure agent behavior
- Token Budgets & Costs — aggregate cost monitoring
- Boards & Tasks — where task traces originate