npx claudepluginhub growthxai/output --plugin outputaiThis skill is limited to using the following tools:
This skill helps you view the execution history of workflows. Use it to find failed runs, identify workflow IDs for debugging, and review past executions.
Analyzes Output SDK workflow execution traces to debug step failures, examine inputs/outputs, understand flow/timing, and identify errors using CLI commands and Temporal UI. Use with workflow IDs.
Opens local web dashboard to browse workflow runs, inspect step timelines, view artifacts, and diff executions side-by-side.
Browse, inspect details, compare side-by-side, and clean up past pipeline runs in working/runs/ directories via /runs commands like list, latest, {id}, clean, compare.
Share bugs, ideas, or general feedback.
This skill helps you view the execution history of workflows. Use it to find failed runs, identify workflow IDs for debugging, and review past executions.
npx output workflow runs list
By default, this shows the 100 most recent workflow executions across all workflow types.
| Flag | Description | Default |
|---|---|---|
--limit <n> | Number of runs to display | 100 |
--format <type> | Output format: table, json, text | table |
npx output workflow runs list <workflowName>
This shows only runs for the specified workflow type.
npx output workflow runs list --format json
Use JSON format for programmatic analysis or when you need full details.
| Status | Meaning | Action |
|---|---|---|
| RUNNING | Workflow is currently executing | Wait or monitor |
| COMPLETED | Workflow finished successfully | No action needed |
| FAILED | Workflow encountered an error | Debug with trace |
| TERMINATED | Workflow was manually stopped | Review if expected |
| TIMED_OUT | Workflow exceeded time limit | Check for long operations |
When viewing runs, pay attention to:
Scenario: Find failed workflow runs
# List recent runs and look for FAILED status
npx output workflow runs list --limit 20
# Or use JSON format with jq to filter
npx output workflow runs list --format json | jq '.[] | select(.status == "FAILED")'
Scenario: Get workflow ID for debugging
# List runs for a specific workflow
npx output workflow runs list my-workflow --limit 5
# Note the workflow ID from the output (e.g., "abc123xyz")
# Then debug it
npx output workflow debug abc123xyz --format json
Scenario: Review recent activity for a specific workflow
# See the last 10 runs of the data-pipeline workflow
npx output workflow runs list data-pipeline --limit 10
Scenario: Export run history for analysis
# Get all recent runs as JSON for external analysis
npx output workflow runs list --format json > workflow-runs.json
Scenario: Find when failures started
# Look at more history to find patterns
npx output workflow runs list --limit 50 --format json | jq 'group_by(.status) | map({status: .[0].status, count: length})'
npx output workflow debug <workflowId> --format jsonnpx output workflow debug <id> - Analyze execution tracenpx output workflow status <id> - Check current statusnpx output workflow result <id> - Get execution resultnpx output workflow list - List available workflows