llm-output-schema-cons…
Zod schema constraints that Anthropic rejects or silently ignores when sent as structured-output tool definitions via aiSdk.Output.object(). Use when writing…
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.
/output-workflow-listContext 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.
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]
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:
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>/
**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
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
Zod schema constraints that Anthropic rejects or silently ignores when sent as structured-output tool definitions via aiSdk.Output.object(). Use when writing…
Guide to the providerOptions structure in .prompt files — decision tree for where an option goes, common mistakes, per-provider quick reference, and Anthropic…
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…
View and edit encrypted credentials in an Output.ai project. Use when adding secrets, updating API keys, verifying credential values, or retrieving a specific…
Wire encrypted credentials to environment variables using the credential: convention. Use when setting up LLM provider keys (ANTHROPIC_API_KEY, OPENAI_API_KEY)…