Flows are YAML-defined automations that run on schedules or in response to events. They’re the “if this then that” for your agent pipeline.Documentation Index
Fetch the complete documentation index at: https://docs.10et.ai/llms.txt
Use this file to discover all available pages before exploring further.
Usage
Writing a Flow
Flows live in.tenet/flows/. Each is a YAML file:
Trigger Types
| Trigger | Example | Description |
|---|---|---|
cron | "0 2 * * *" | Schedule (cron syntax) |
event | "eval:scored" | MAP event bus pattern |
manual | — | Only runs via tenet flows run |
Event Triggers
React to system events:Flow Options
| Field | Description |
|---|---|
cooldown | Minimum time between runs (e.g., "1h") |
timeout | Max run time before killing (e.g., "30m") |
on_failure | What to do on error: ignore, retry, alert |
See Also
- Flows Guide — detailed guide with examples
- Event Bus — MAP event system
- Peter Parker — agent orchestrator

