From outputai
Lists all Output SDK workflows in the project using `npx output workflow list`. Useful for discovering workflows, verifying names, exploring structure, or checking availability.
How this skill is triggered — by the user, by Claude, or both
Slash command
/outputai:output-workflow-listThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
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.
npx output workflow list
This command scans the project and displays all available workflows.
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 |
Workflows are typically located in:
src/workflows/*/
Each workflow directory usually contains:
workflow.ts or index.ts - The main workflow definitionAfter 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>/
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 '{"to": "[email protected]"}'
Scenario: Explore workflow implementation
# List workflows
npx output workflow list
# Find the location and examine it
cat src/workflows/simple/workflow.ts
src/workflows/*/npm run output:worker:build to check for TypeScript errorsnpx output workflow run <name> - Execute a workflow synchronouslynpx output workflow start <name> - Start a workflow asynchronouslynpx output workflow runs list - View execution historynpx claudepluginhub growthxai/output --plugin outputaiOutlines standard folder structure conventions for Output SDK workflows. Use when creating new workflows, reorganizing files, understanding file placement, or reviewing compliance.
Lists, views, executes, and customizes .flow workflow templates from project, global, and built-in locations for TDD, debugging, UI refinement, and other automation scenarios.
Opens local web dashboard to browse workflow runs, inspect step timelines, view artifacts, and diff executions side-by-side.