Recipes
Create multi-step workflows that coordinate agents.
Recipes are multi-step workflows that chain multiple agents together to complete complex tasks. Think of them as playbooks — define the steps once, run them on demand or on a schedule.
What is a recipe?
A recipe defines:
Steps — ordered list of tasks, each assigned to an agent
Inputs — parameters the recipe accepts when triggered
Flow control — conditional logic, branching, and error handling
Schedule — optional cron-based triggers for recurring execution
Creating a recipe
Click + Create Recipe from the Recipes tab
Give it a name and description
Add steps, assigning each to an agent
Configure inputs and flow control
Save
Example: Nightly code review
1
Scout
Pull latest commits from GitHub
2
Code Reviewer
Review each commit for issues
3
Sentinel
Run security scan on changed files
4
Scribe
Write a summary report
5
Comms
Post report to Slack
Running a recipe
Click Run on any recipe card. Fill in required inputs and confirm.
Set a cron schedule (e.g., daily at 23:00) and the recipe runs automatically. View execution history in Activity → Dashboard.
Ask in chat: "Run the nightly code review recipe" and the router will trigger it.
Monitoring execution
Active recipe runs appear in:
Activity → Dashboard — schedule and live status
Activity → Feed — step-by-step execution log
Analytics → Workflows — success rates and duration trends
Recipe execution uses a scratchpad for intermediate state. Each step can read the previous step's output through the workflow pipeline.
Last updated

