/output-workflow-list
List all available Output SDK workflows in the project. Use when discovering what workflows exist, checking workflow names, exploring the project's workflow structure, or when unsure which workflows are available to run.
$ npx -y skills add growthxai/output --skill output-workflow-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-list
Context preview
The summary Claude sees to decide when to auto-load this skill.
List all available Output SDK workflows in the project. Use when discovering what workflows exist, checking workflow names, exploring the project's workflow structure, or when unsure which workflows are available to run.
SKILL.md
output-workflow-list.SKILL.mdname: output-workflow-list
description: List all available Output SDK workflows in the project. Use when discovering what workflows exist, checking workflow names, exploring the project's workflow structure, or when unsure which workflows are available to run.
allowed-tools: [Bash]
List Available Workflows
Overview
This skill helps you discover all available workflows in an Output SDK project. Workflows are the main execution units that orchestrate steps to accomplish tasks.
When to Use This Skill
- Discovering what workflows exist in a project
- Verifying a workflow name before running it
- Exploring a new or unfamiliar codebase
- Checking if a specific workflow has been created
- Getting an overview of project capabilities
Instructions
List All Workflows
npx output workflow list
This command scans the project and displays all available workflows.
Understanding the Output
The command outputs a table with workflow information:
| Column | Description | |--------|-------------| | Name | The workflow identifier used in commands | | Description | Brief description of what the workflow does | | Location | File path where the workflow is defined |
Finding Workflow Files
Workflows are typically located in:
src/workflows/*/
Each workflow directory usually contains:
- `workflow.ts` or `index.ts` - The main workflow definition
- Step files - Individual steps used by the workflow
- Schema files - Input/output type definitions
Inspecting a Workflow
After finding a workflow, you can examine its code:
# Read the workflow file
cat src/workflows/<workflowName>/workflow.ts
# Or examine the entire workflow directory
ls -la src/workflows/<workflowName>/
Examples
**Scenario**: Discover available workflows in a project
npx output workflow list
# Example output:
# Name Description Location
# ----------- --------------------------- --------------------------------
# simple Simple workflow example src/workflows/simple/workflow.ts
# data-pipeline Process and transform data src/workflows/data-pipeline/workflow.ts
# user-signup Handle user registration src/workflows/user-signup/workflow.ts
**Scenario**: Verify a workflow exists before running
# Check if "email-sender" workflow exists
npx output workflow list | grep email-sender
# If no output, the workflow doesn't exist
# If found, proceed with running it
npx output workflow run email-sender --input '{"to": "user@example.com"}'**Scenario**: Explore workflow implementation
# List workflows
npx output workflow list
# Find the location and examine it
cat src/workflows/simple/workflow.ts
Troubleshooting
No workflows found
- Ensure you're in the project root directory
- Check that workflows are in `src/workflows/*/`
- Verify workflow files export a default workflow
Workflow not showing
- Check the file exports a valid workflow definition
- Ensure the workflow file compiles without errors
- Run `npm run output:worker:build` to check for TypeScript errors
Related Commands
- `npx output workflow run <name>` - Execute a workflow synchronously
- `npx output workflow start <name>` - Start a workflow asynchronously
- `npx output workflow runs list` - View execution history
Read more
name: output-workflow-list description: List all available Output SDK workflows in the project. Use when discovering what workflows exist, checking workflow names, exploring the project's workflow structure, or when unsure which workflows are available to run. allowed-tools: [Bash]
List Available Workflows
Overview
This skill helps you discover all available workflows in an Output SDK project. Workflows are the main execution units that orchestrate steps to accomplish tasks.
When to Use This Skill
- Discovering what workflows exist in a project
- Verifying a workflow name before running it
- Exploring a new or unfamiliar codebase
- Checking if a specific workflow has been created
- Getting an overview of project capabilities
Instructions
List All Workflows
npx output workflow list
This command scans the project and displays all available workflows.
Understanding the Output
The command outputs a table with workflow information:
| Column | Description | |--------|-------------| | Name | The workflow identifier used in commands | | Description | Brief description of what the workflow does | | Location | File path where the workflow is defined |
Finding Workflow Files
Workflows are typically located in:
src/workflows/*/
Each workflow directory usually contains:
- `workflow.ts` or `index.ts` - The main workflow definition
- Step files - Individual steps used by the workflow
- Schema files - Input/output type definitions
Inspecting a Workflow
After finding a workflow, you can examine its code:
# Read the workflow file cat src/workflows/<workflowName>/workflow.ts # Or examine the entire workflow directory ls -la src/workflows/<workflowName>/
Examples
**Scenario**: Discover available workflows in a project
npx output workflow list # Example output: # Name Description Location # ----------- --------------------------- -------------------------------- # simple Simple workflow example src/workflows/simple/workflow.ts # data-pipeline Process and transform data src/workflows/data-pipeline/workflow.ts # user-signup Handle user registration src/workflows/user-signup/workflow.ts
**Scenario**: Verify a workflow exists before running
# Check if "email-sender" workflow exists
npx output workflow list | grep email-sender
# If no output, the workflow doesn't exist
# If found, proceed with running it
npx output workflow run email-sender --input '{"to": "user@example.com"}'**Scenario**: Explore workflow implementation
# List workflows npx output workflow list # Find the location and examine it cat src/workflows/simple/workflow.ts
Troubleshooting
No workflows found
- Ensure you're in the project root directory
- Check that workflows are in `src/workflows/*/`
- Verify workflow files export a default workflow
Workflow not showing
- Check the file exports a valid workflow definition
- Ensure the workflow file compiles without errors
- Run `npm run output:worker:build` to check for TypeScript errors
Related Commands
- `npx output workflow run <name>` - Execute a workflow synchronously
- `npx output workflow start <name>` - Start a workflow asynchronously
- `npx output workflow runs list` - View execution history
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

