Prerequisites
- Node.js 20+
- Docker and Docker Compose v2.22+
Install the CLI
Create a Project
Initialize a new Output Framework project:src/workflows/— Your workflow implementations.outputai/— Agent configurations for AI-assisted development.claude/— Claude Code integrationpackage.json— Project dependencies and scripts
Start Development
Launch the development environment:| 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 |
| PostgreSQL | localhost:5432 | Temporal persistence |
| Redis | localhost:6379 | Caching layer |
Run Your First Workflow
With the dev environment running, execute a workflow:- CLI
- API
Generate a New Workflow
Create workflows using AI-assisted generation or manually.- CLI
- Claude Code
- Manual
Step 1: Plan the workflowThis generates a plan file in The CLI uses AI to implement the workflow based on your plan, with an interactive refinement loop.
.outputai/plans/. Review and modify the plan interactively, then type ACCEPT when satisfied.Step 2: Generate from the plan