@output.ai/cli
v0.5.4
Published
CLI for Output.ai workflow generation
Readme
@output.ai/cli
Command-line interface for creating and running Output Framework workflows.
Full Documentation: For detailed command options, flags, and examples, see the CLI Reference.
Quick Start
# Create a new project
output init my-project
cd my-project
# Start development services
output dev
# Run a workflow
output workflow run simple --input '{"question": "who is ada lovelace?"}'Command Reference
| Command | Description |
|---------|-------------|
| output init | Initialize a new project |
| output dev | Start development services (Temporal, API, Worker) |
| output agents init | Initialize AI agent configurations |
| output workflow plan | Generate a workflow plan from description |
| output workflow generate | Generate a workflow from plan |
| output workflow list | List available workflows |
| output workflow runs list | List recent workflow runs |
| output workflow run | Execute a workflow synchronously |
| output workflow start | Start a workflow asynchronously |
| output workflow status | Get workflow execution status |
| output workflow result | Get workflow execution result |
| output workflow stop | Stop a workflow execution |
| output workflow debug | Display workflow execution trace |
Development Services
Running output dev starts:
| Service | URL | Description | |---------|-----|-------------| | Temporal UI | http://localhost:8080 | Monitor and debug workflows | | API Server | http://localhost:3001 | REST API for workflow execution | | Worker | — | Processes workflows with auto-reload |
Documentation
For comprehensive documentation including all command flags and detailed examples:
- CLI Reference - Complete command documentation
- Getting Started - Project setup guide
