/output-workflow-runs-list
List Output SDK workflow execution history. Use when finding failed runs, reviewing past executions, identifying workflow IDs for debugging, filtering runs by workflow type, or investigating recent workflow activity.
$ npx -y skills add growthxai/output --skill output-workflow-runs-list --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/output-workflow-runs-list
Context preview
The summary Claude sees to decide when to auto-load this skill.
List Output SDK workflow execution history. Use when finding failed runs, reviewing past executions, identifying workflow IDs for debugging, filtering runs by workflow type, or investigating recent workflow activity.
SKILL.md
output-workflow-runs-list.SKILL.mdname: output-workflow-runs-list
description: List Output SDK workflow execution history. Use when finding failed runs, reviewing past executions, identifying workflow IDs for debugging, filtering runs by workflow type, or investigating recent workflow activity.
allowed-tools: [Bash]
List Workflow Execution History
Overview
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.
When to Use This Skill
- Finding recent failed workflow runs
- Getting a workflow ID for debugging
- Reviewing execution history for a specific workflow
- Investigating when a problem started occurring
- Checking the status of recent executions
Instructions
List All Recent Runs
npx output workflow runs list
By default, this shows the 100 most recent workflow executions across all workflow types.
Available Flags
| Flag | Description | Default | |------|-------------|---------| | `--limit <n>` | Number of runs to display | 100 | | `--format <type>` | Output format: table, text | table | | `--json` | Output machine-readable JSON | false |
Filter by Workflow Name
npx output workflow runs list <workflowName>
This shows only runs for the specified workflow type.
Get Detailed JSON Output
npx output workflow runs list --json
Use JSON format for programmatic analysis or when you need full details.
Understanding the Output
Status Values
| 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 |
Key Fields
When viewing runs, pay attention to:
- **Workflow ID**: Unique identifier needed for debugging commands
- **Status**: Current execution state
- **Start Time**: When the execution began
- **End Time**: When the execution completed (if finished)
- **Workflow Name**: The type of workflow that ran
Examples
**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 --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 --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 --json > workflow-runs.json
**Scenario**: Find when failures started
# Look at more history to find patterns
npx output workflow runs list --limit 50 --json | jq 'group_by(.status) | map({status: .[0].status, count: length})'Identifying Problems
Signs of Issues
1. **Multiple FAILED runs**: Indicates a persistent bug 2. **Mix of COMPLETED and FAILED**: Could be input-dependent issues 3. **All recent runs TERMINATED**: Someone may be stopping workflows 4. **Long RUNNING times**: Possible hang or performance issue
Next Steps After Finding a Failed Run
1. Copy the workflow ID from the run 2. Get the execution trace: `npx output workflow debug <workflowId> --json` 3. Analyze the trace to identify the failure 4. Apply the appropriate fix based on the error pattern
Related Commands
- `npx output workflow debug <id>` - Analyze execution trace
- `npx output workflow status <id>` - Check current status
- `npx output workflow result <id>` - Get execution result
- `npx output workflow list` - List available workflows
Read more
name: output-workflow-runs-list description: List Output SDK workflow execution history. Use when finding failed runs, reviewing past executions, identifying workflow IDs for debugging, filtering runs by workflow type, or investigating recent workflow activity. allowed-tools: [Bash]
List Workflow Execution History
Overview
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.
When to Use This Skill
- Finding recent failed workflow runs
- Getting a workflow ID for debugging
- Reviewing execution history for a specific workflow
- Investigating when a problem started occurring
- Checking the status of recent executions
Instructions
List All Recent Runs
npx output workflow runs list
By default, this shows the 100 most recent workflow executions across all workflow types.
Available Flags
| Flag | Description | Default | |------|-------------|---------| | `--limit <n>` | Number of runs to display | 100 | | `--format <type>` | Output format: table, text | table | | `--json` | Output machine-readable JSON | false |
Filter by Workflow Name
npx output workflow runs list <workflowName>
This shows only runs for the specified workflow type.
Get Detailed JSON Output
npx output workflow runs list --json
Use JSON format for programmatic analysis or when you need full details.
Understanding the Output
Status Values
| 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 |
Key Fields
When viewing runs, pay attention to:
- **Workflow ID**: Unique identifier needed for debugging commands
- **Status**: Current execution state
- **Start Time**: When the execution began
- **End Time**: When the execution completed (if finished)
- **Workflow Name**: The type of workflow that ran
Examples
**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 --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 --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 --json > workflow-runs.json
**Scenario**: Find when failures started
# Look at more history to find patterns
npx output workflow runs list --limit 50 --json | jq 'group_by(.status) | map({status: .[0].status, count: length})'Identifying Problems
Signs of Issues
1. **Multiple FAILED runs**: Indicates a persistent bug 2. **Mix of COMPLETED and FAILED**: Could be input-dependent issues 3. **All recent runs TERMINATED**: Someone may be stopping workflows 4. **Long RUNNING times**: Possible hang or performance issue
Next Steps After Finding a Failed Run
1. Copy the workflow ID from the run 2. Get the execution trace: `npx output workflow debug <workflowId> --json` 3. Analyze the trace to identify the failure 4. Apply the appropriate fix based on the error pattern
Related Commands
- `npx output workflow debug <id>` - Analyze execution trace
- `npx output workflow status <id>` - Check current status
- `npx output workflow result <id>` - Get execution result
- `npx output workflow list` - List available workflows
The open-source TypeScript framework for building AI workflows and agents. Designed for Claude Code — describe what you want, Claude builds it, with all the best practices already in place. One framework.
Repo: growthxai/output
Other skills on output.
- /llm-output-schema-constraints
Zod schema constraints that Anthropic rejects or silently ignores when sent as structured-output tool definitions via Output.object(). Use when writing or reviewing Zod schemas passed to Output.object(), or debugging structured-output validation errors.
Open skill - /prompt-file-provider-options
Guide to the providerOptions structure in .prompt files — decision tree for where an option goes, common mistakes, per-provider quick reference, and Anthropic prompt caching. Use when writing or reviewing .prompt file frontmatter (provider, model, providerOptions,
Open skill - /validate
Run lint, build, and tests to validate changes are correct
Open skill - /output-build-workflow
Implement an Output SDK workflow from a plan document. Use when the user asks to build, implement, or code a workflow from an existing plan, or after output-plan-workflow has produced a plan and the user is ready to build.
Open skill - /output-credentials-edit
View and edit encrypted credentials in an Output.ai project. Use when adding secrets, updating API keys, verifying credential values, or retrieving a specific credential.
Open skill - /output-credentials-env-vars
Wire encrypted credentials to environment variables using the credential: convention. Use when setting up LLM provider keys (ANTHROPIC_API_KEY, OPENAI_API_KEY) or any env var that should come from encrypted credentials.
Open skill

