Skip to main content
Workflows that actually orchestrate - not just sequential agent calls. Each example demonstrates real workflow value: phase caching, parallel coordination, or conditional routing.

Examples

Blog Post Generator

Three-phase pipeline with session caching. Research → Extract → Write.

Company Description

Parallel data gathering from 4 sources, then synthesis.

Employee Recruiter

Conditional branching: only interviews candidates above score threshold.

Notion Manager

Classification → routing to create/update/search Notion pages.

Workflow Patterns

PatternExampleDescription
Sequential + CachingBlog Post GeneratorPhase checkpoints for efficiency
Parallel → SequentialCompany DescriptionGather concurrently, then synthesize
Conditional BranchingEmployee RecruiterDifferent paths based on output
Classification RoutingNotion ManagerRoute to different actions by type
See Workflow Patterns for detailed documentation.