Docs / Workflows / Recipe system

Recipe system

A recipe is a saved workflow pattern: ordered stages (research → draft → publish), which Specialist template owns each stage, default duty prompts, cron schedules, and how artifacts pass through ~/files/. Recipes remove repeated copy-paste when hiring a multi-role team. Overview: workflows hub.

What a recipe contains

Each recipe step specifies:

Preset catalog today: Content Pipeline, Research & Report, Monitor & Alert, SEO Audit Pipeline — listed on the Workflows tab in the dashboard.

Preset vs custom recipes

If deploy fails partway through, already-hired Specialists from that attempt are rolled back so you are not left with a half-built pipeline.

Shared workspace state

Good recipes point every duty at the same state file — for example ~/files/content-pipeline/state.json with items moving through statuses like planned, generated, published. Each stage reads the file, processes one eligible item per run (unless you explicitly asked for batch mode), writes artifacts under ~/files/{recipe-name}/, and saves the file before exiting.

That pattern makes failures visible: if a stage did not produce the expected markdown or JSON, the next cron tick has nothing to pick up. Guardrails: chaining tasks safely.

What deploy creates

  1. One Specialist per recipe step (counts against your maxEmployees cap).
  2. One or more scheduled duties per Specialist (counts against cron limits).
  3. Within-role chaining — multiple duties on the same Specialist run in creation order.
  4. Cross-role chaining — the last duty of step N triggers the first duty of step N+1.
  5. Pipeline graph visible on the Team Task Board and Workflows tab.

Check Specialist and cron headroom before deploy — especially on Free (2 / 2). Limits FAQ · pricing.

After deploy

Why recipes help

Related: Chaining tasks · Scheduled tasks · Troubleshooting