Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ellomas.com/llms.txt

Use this file to discover all available pages before exploring further.

CLI Reference

Replay is a single binary with four commands:
CommandDescription
replay runExecute one or more workflow files
replay validateValidate a workflow file without executing it
replay watchWatch workflow files and re-run on changes
replay versionPrint version information

Global Flags

FlagAliasDefaultDescription
--debug-dfalseEnable debug logging for HTTP and other runners

Usage Pattern

replay [command] <files...> [flags]

Quick Reference

# Run a single workflow
replay run workflow.yaml

# Run multiple workflows in parallel
replay run workflows/*.yaml --concurrency 4

# Stop on first failure
replay run test.yaml --fail-fast

# Use a config profile
replay run test.yaml --profile staging

# Validate a workflow
replay validate workflow.yaml

# Watch for changes and re-run
replay watch workflow.yaml --debounce 300ms

# Print version
replay version

Schema Annotation

For IDE autocomplete, add the schema reference to your YAML files:
# yaml-language-server: $schema=https://raw.githubusercontent.com/tomiwa-a/replay/main/schema.json