| name | output-workflow-trace |
| description | Analyze Output SDK workflow execution traces. Use when debugging a specific workflow, examining step failures, analyzing input/output data, understanding execution flow, or when you have a workflow ID to investigate. |
| allowed-tools | Bash, Read |
Workflow Trace Analysis
Overview
This skill provides guidance on retrieving and analyzing workflow execution traces using the Output CLI. Traces show the complete execution history including step inputs, outputs, errors, and timing information.
When to Use This Skill
- You have a workflow ID and need to understand what happened
- A workflow failed and you need to identify which step failed
- You need to examine the input/output data at each step
- You want to understand the execution flow and timing
- You need to find error messages and stack traces
- Debugging retry behavior or unexpected results
Instructions
Step 1: Retrieve the Execution Trace
Basic trace (text format, may be truncated):
npx output workflow debug <workflowId>
Full trace (JSON format, recommended for detailed analysis):
npx output workflow debug <workflowId> --format json
Tip: Always use --format json when you need complete trace data. The text format truncates long values which can hide important debugging information.
Step 2: Analyze the Trace
Follow this checklist when examining a trace:
- Identify the failed step: Look for steps with error status or failure indicators
- Examine error messages: Find the exact error message and stack trace
- Check step inputs: Verify the data passed to the failing step was correct
- Check step outputs: Look at outputs from preceding steps
- Review retry attempts: Note how many retries occurred and their outcomes
- Check timing: Look for unusual delays that might indicate timeouts
Step 3: Use the Temporal UI for Visual Analysis
Open http://localhost:8080 in your browser for a visual workflow inspection:
- Search for your workflow by ID
- View the event history timeline
- Click on individual events to see details
- Inspect step inputs and outputs
- See retry attempts and timing information
- Export trace data if needed
What to Look For in Traces
Error Patterns
| Error Message | Likely Cause |
|---|---|
| "incompatible schema" | Zod import issue - using zod instead of @output.ai/core |
| "non-deterministic" | Using Math.random(), Date.now(), etc. in workflow code |
| "FatalError" with retry context | Try-catch wrapping step calls |
| "undefined is not a function" | Missing schema definitions |
| "workflow must be deterministic" | Direct I/O in workflow function |
| "ECONNREFUSED" or timeout | Services not running or network issues |
Step Status Values
- COMPLETED: Step finished successfully
- FAILED: Step threw an error (may retry)
- RETRYING: Step is being retried after a failure
- TIMED_OUT: Step exceeded its timeout
- CANCELLED: Workflow was stopped before step completed
Key Trace Fields
When examining JSON traces, focus on these fields:
steps[].name: Step identifiersteps[].status: Execution resultsteps[].input: Data passed to the stepsteps[].output: Data returned from the stepsteps[].error: Error details if failedsteps[].attempts: Number of execution attemptssteps[].duration: How long the step took
Examples
Scenario: Debug a failed workflow
# Get the workflow ID from runs list
npx output workflow runs list --limit 5 --format json
# Get detailed trace
npx output workflow debug abc123xyz --format json
# Look for the failing step in the output
# Example output structure:
# {
# "workflowId": "abc123xyz",
# "status": "FAILED",
# "steps": [
# { "name": "fetchData", "status": "COMPLETED", ... },
# { "name": "processData", "status": "FAILED", "error": "..." }
# ]
# }
Scenario: Investigate retry behavior
npx output workflow debug abc123xyz --format json | jq '.steps[] | select(.attempts > 1)'
Scenario: Check inputs to a specific step
npx output workflow debug abc123xyz --format json | jq '.steps[] | select(.name == "processData") | .input'
Next Steps After Analysis
- Match the error to common patterns (see error skills)
- Consult the
workflow-qualitysubagent for best practices - Make code fixes based on identified issues
- Re-run the workflow:
npx output workflow run <workflowName> <input> - Verify the fix with a new trace