A chat completion forgets everything the moment the request ends. Durable agents don't: they checkpoint progress between steps, park while they wait for human approval, wake on a schedule, and keep memory across sessions. This topic pairs two runtimes — Workflow DevKit patterns for durable step execution (sequential, parallel, evaluator loops, orchestrator-worker) and Eve agents for the full durable lifecycle: tenant-scoped memory, cron-driven digests, and approval-gated operations that resume safely. Start with the simple Eve agent, then add the capability your system is missing.
Demonstrates an orchestrator-worker workflow pattern using Workflow DevKit. Features parallel execution of specialized workers for different change types (create, modify, delete).
Coordinate create, modify, and delete workers from an orchestrator
Run specialized workers in parallel under Workflow DevKit
Plan multi-file change sets before worker execution
Demonstrates an evaluator-optimizer workflow pattern using Workflow DevKit. Features iterative improvement through AI evaluation and optimization loops.
Run an evaluator-optimizer loop inside Workflow DevKit
Score outputs with structured evaluation schemas
Iterate translation or content quality until thresholds pass