Skip to main content
v0.2.6 · YAML-native agent orchestration

One action falls.
The rest cascade.

agent-actions is an agentic workflow engine that runs in your terminal. Define an LLM pipeline in YAML — the engine handles orchestration, validation, and error recovery.

Get started
workflow.yaml
123456789101112
name: document-analysisdefaults:  model_vendor: openai  model_name: gpt-4o-mini actions:  - name: extract    prompt: $prompts.Extract    schema: facts_schema  - name: summarize    dependencies: extract    prompt: $prompts.Summarize
01

Action composition

Define actions in YAML with explicit dependencies. The engine resolves the execution order — each domino knows when to fall.

02

Schema validation

Every LLM output is validated against a declared schema. Failed validations trigger auto-retry with error context.

03

Built-in retry

Automatic reprompting with configurable max attempts. A failed domino doesn’t break the chain — it tries again.

Find your branch
6 providers · YAML-native