6 ready-to-build workflows

AI agent workflows for Advanced multi-agent patterns

Supervisor routing, parallel research and cost-tiered escalation — with the budgets and guardrails that keep genuinely multi-agent flows safe AND cheap.

Each recipe below is expressed only in VegaDūta's real workflow building blocks — Trigger, Agent, Knowledge, Condition, Approval, Output, Tool (MCP), Voice, Device, Loop, Code and Parallel — so it maps 1:1 to something you can assemble in the Workflow designer. Consequential actions always pass a human Approval step.

1. Supervisor → specialist support desk (4 agents)

One support bot trying to be an expert at billing, tech and returns is either shallow or expensive — running a heavyweight model on every 'where's my order?'.

Trigger: WhatsApp / inbound message

How the workflow runs

  1. Trigger

    Customer messages. A WhatsApp trigger starts the conversation.

  2. Supervisor

    Supervisor agent triages + routes. A Supervisor node classifies intent and routes to exactly one specialist. It never answers the customer itself — routing only.

  3. Condition

    Pick the domain. A Condition node directs the run to the matched specialist (billing / technical / returns).

  4. Agent

    Matched specialist handles it. Only the relevant specialist agent runs — each has its own prompt, Knowledge scope and tools.

  5. Approval

    Money actions pause for a human. Any refund/credit routes to an Approval node before it executes.

  6. Output

    Reply on WhatsApp. An Output node sends the specialist's grounded answer.

Channels & connectors

  • WhatsApp
  • Knowledge base
  • Tool (MCP → OMS/CRM)
  • Approval / HITL

Outcome

Each conversation is handled by a focused expert, and you only pay for a heavyweight model on the message that actually needs one.

Why it helps

Depth without the blanket cost — a cheap router in front of specialists is both better (focused prompts/knowledge) and cheaper than one do-everything agent.

Build spec

4 agents1 supervisor + 3 domain specialists. The Condition/Approval/Output are workflow nodes. · Pattern: Supervisor → 3 specialists (route-to-one)

System prompt (paste-ready)

You are a support ROUTER. Read the customer message and classify it as exactly one of: BILLING, TECHNICAL, RETURNS, or HUMAN (anything sensitive/unclear). Output strict JSON {route, confidence 0-1, reason}. You do NOT answer the customer — you only route. If confidence < 0.6, route=HUMAN.

Agent roles & model tiers

  • Supervisor / router Economy tier — fast, low-cost (runs on every message)

    Classify intent → one of BILLING/TECHNICAL/RETURNS/HUMAN as strict JSON. Never answer; never invent a category; low confidence → HUMAN.
  • Billing specialist Standard tier

    You handle billing/orders/invoices for {{company}}. Look up the order via the tool, answer from it only, and NEVER issue a refund/credit yourself — propose it and let the Approval node decide.
  • Technical specialist Standard tier

    You troubleshoot {{product}} strictly from the Knowledge base. If a step isn't documented, say so and offer a human. Never guess config or make destructive suggestions.
  • Returns specialist Standard tier

    You handle returns/exchanges per the returns policy in Knowledge. Confirm eligibility from policy; create the RMA via the tool; refunds go through Approval.

MCP connectors

  • OMS / CRM — via Tool (MCP) nodes (order lookup, RMA create)
  • WhatsApp — send channel

Built-in tools

  • knowledge_search (per-specialist scoped collections)
  • http_request (order/RMA)

Guardrails

  • Separation of duties: the Supervisor can ONLY route — it has no customer-reply or tool permissions
  • Each specialist is scope-locked to its own Knowledge collection + tools (a billing agent can't touch RMA endpoints)
  • All money movement (refund/credit) is Approval-gated; specialists may propose, never execute
  • Per-conversation tool-call cap so a loop can't rack up API cost

Cost strategy

The only agent that runs on EVERY message is the economy-tier supervisor (cheap). A standard/premium specialist fires once, for the single matched domain — so you never pay a heavyweight model to answer 'where's my order'. Enable per-agent cost routing so each specialist still drops simple turns to its economy model.

Output & delivery

Supervisor emits {route, confidence} → Condition dispatches to one specialist → specialist answers from its scoped Knowledge (money actions via Approval → Tool) → Output sends the reply on WhatsApp; the router's decision + specialist + any approval are logged.

2. Parallel due-diligence pack (5 agents, budget-capped)

Vendor/partner onboarding needs a financial, compliance and reputation check. Done serially by one agent it's slow; done naively it's an open-ended (expensive) research loop.

Trigger: Webhook (new vendor/partner to vet)

How the workflow runs

  1. Trigger

    New entity to vet. A Webhook trigger fires with the company details.

  2. Parallel

    Fan out three researchers at once. A Parallel node launches the financial, compliance and reputation research agents simultaneously — fast wall-clock, isolated scopes.

  3. Agent

    Three read-only researchers. Each researcher gathers evidence in its lane, capped at a fixed tool/token budget so it can't run away.

  4. Agent

    Aggregator writes the risk memo. An aggregator agent synthesizes the three findings into one structured risk memo with a rating.

  5. Agent

    Guardrail agent verifies. A cheap guardrail agent rejects any claim without a source citation and redacts PII before a human ever sees it.

  6. Approval

    Analyst signs off. An Approval node puts the accept/reject decision with a human — the pack only researches.

  7. Output

    File the memo. An Output/Tool node stores the approved memo against the vendor record.

Channels & connectors

  • Webhook
  • Knowledge base
  • Tool (MCP → vendor system)
  • Approval / HITL

Outcome

A cited, structured risk memo in minutes instead of a day — with hard budgets so a research loop can never blow up the bill, and a human owning the decision.

Why it helps

Parallelism buys speed; budgets + a guardrail agent buy cost-safety; the Approval node keeps the judgement human. This is the pattern for anything 'gather from many sources, then decide'.

Build spec

5 agents3 parallel researchers + 1 aggregator + 1 guardrail agent. Approval/Output are workflow nodes. · Pattern: Parallel fan-out → aggregator → guardrail agent → human

System prompt (paste-ready)

(Aggregator) You are a risk analyst. Given three research briefs (financial, compliance, reputation), produce a structured memo: {summary, rating: LOW|MEDIUM|HIGH, findings[{area, claim, source}], open_questions[]}. Every claim MUST carry a source from the briefs — if there's no source, drop the claim. Do not make the accept/reject decision; that's the human's.

Agent roles & model tiers

  • Financial researcher Standard tier — read-only, budget-capped

    Research {{company}}'s financial standing from allowed sources only. Return dated, sourced facts. Never speculate; mark unknowns as unknown.
  • Compliance researcher Standard tier — read-only, budget-capped

    Check {{company}} against sanctions/registration/litigation signals from allowed sources. Sourced facts only; flag anything you cannot verify.
  • Reputation researcher Standard tier — read-only, budget-capped

    Gather reputation signals (news, reviews, incidents) for {{company}}. Sourced, dated items only; separate fact from rumor.
  • Aggregator Premium tier — reasoning (runs once)

    Synthesize the three briefs into the structured risk memo; every claim cited; no accept/reject decision.
  • Guardrail / verifier Economy tier — fast, cheap

    Reject any memo claim lacking a source; redact PII; confirm the rating is justified by cited findings before it reaches a human.

MCP connectors

  • Vendor / procurement system — via Tool (MCP)
  • allowed research sources — via Tool (MCP)/web where permitted

Built-in tools

  • web_search (scoped, allow-listed)
  • knowledge_search (internal policy)
  • http_request

Guardrails

  • Read-only until approval: researchers/aggregator can gather but perform NO external writes
  • Hard per-agent budget: max tool-calls + token cap per researcher, so a search loop can't escalate cost
  • Citation-required: the guardrail agent drops any uncited claim — no ungrounded assertions reach the analyst
  • Human owns the verdict: the accept/reject Approval is never automated

Cost strategy

Researchers run in PARALLEL (wall-clock ≈ one research pass, not three) and each is capped at a fixed tool/token budget, so worst-case cost is bounded and predictable. Only the aggregator uses a premium reasoning model — once. The verifier is an economy-tier model. You pay premium exactly once per vetting, not per source.

Output & delivery

Parallel researchers → aggregator memo (cited) → guardrail agent verifies/redacts → analyst Approval → on accept, a Tool node files the memo to the vendor record; rejects loop back with the open questions.

3. Cost-tiered answer ladder (3 agents: cheap → premium → verify)

You want premium-quality answers but can't afford to run a top-tier model on every routine question — and you never want a confident wrong answer.

Trigger: WhatsApp / Webhook (question in)

How the workflow runs

  1. Trigger

    Question arrives. An inbound trigger starts the ladder.

  2. Agent

    Tier-1 answers cheaply. A fast, economy-tier agent attempts the answer from Knowledge and returns a confidence score.

  3. Condition

    Confident enough?. A Condition node checks the confidence threshold; high-confidence answers skip straight to verify.

  4. Agent

    Tier-2 escalation (only if needed). Only low-confidence questions hit a premium reasoning agent — this is the one expensive call, and it's rare.

  5. Agent

    Verifier grounds the answer. A cheap verifier agent confirms the answer is supported by Knowledge before anything is sent.

  6. Approval

    Human on the residual. Still unsure? An Approval node routes the handful of genuinely hard ones to a person.

  7. Output

    Send the verified answer. An Output node delivers it.

Channels & connectors

  • WhatsApp
  • Knowledge base
  • Approval / HITL

Outcome

The vast majority of questions are answered on a cheap model; the premium model is spent only where it changes the outcome; nothing ungrounded goes out.

Why it helps

This is the cost/quality/safety triangle solved: economy-tier by default, premium on demand, and a verifier that turns 'confident wrong answers' into escalations.

Build spec

3 agentsTier-1 (economy) + Tier-2 (premium, conditional) + verifier (economy). Condition/Approval/Output are workflow nodes. · Pattern: Tiered escalation: cheap → premium (conditional) → verify → human

System prompt (paste-ready)

(Tier-1) Answer the user's question using ONLY the Knowledge base. Return strict JSON {answer, confidence 0-1, sources[]}. If you can't fully ground the answer, set confidence low and do NOT fabricate — a low score is correct and safe; a confident guess is a failure.

Agent roles & model tiers

  • Tier-1 responder Economy tier — fast, cheap (runs on every question)

    Answer from Knowledge only; emit {answer, confidence, sources}; never guess — low confidence is the right call when unsure.
  • Tier-2 specialist Premium tier — reasoning (only on low confidence)

    Handle the hard question Tier-1 couldn't. Reason carefully, still grounded in Knowledge, and cite sources. If it truly needs a human, say so.
  • Verifier Economy tier — fast, cheap

    Check that the proposed answer is supported by the cited sources. If any claim isn't grounded, block it and escalate to a human.

MCP connectors

  • WhatsApp — channel
  • internal systems — via Tool (MCP) if the answer needs live data

Built-in tools

  • knowledge_search
  • http_request (only if a live lookup is required)

Guardrails

  • No-fabrication: Tier-1 must return a confidence score and defer (escalate) instead of guessing
  • Bounded escalation: at most ONE premium (Tier-2) call per question — cost per request is capped
  • Grounding gate: the verifier blocks any answer not supported by cited Knowledge before send
  • Human backstop: the residual unsure cases go to Approval, never out unverified

Cost strategy

Set the confidence threshold so ~80–90% of questions resolve on the economy Tier-1 model; the premium Tier-2 model is invoked ONLY on the low-confidence remainder, capped at one call. This is the platform's cost-routing idea made explicit across agents — premium-tier answer quality at close to economy-tier average cost, with a hard per-request ceiling.

Output & delivery

Tier-1 {answer, confidence} → Condition escalates only low-confidence to Tier-2 → verifier grounds it → Output sends; unresolved ones go to a human via Approval. Every tier used is logged so you can tune the threshold against real cost.

4. Map-reduce over a batch (classify + summarize at scale)

Every month there are thousands of tickets / reviews / contracts to classify, tag and summarize. Manual is impossible, and a single agent can't fit them all in one context window.

Trigger: Webhook (batch ready — e.g. a nightly export)

How the workflow runs

  1. Trigger

    Batch is ready. A scheduled Webhook trigger fires with the batch reference (or the workflow pulls the list).

  2. Loop

    Map: iterate every item. A Loop (or Parallel) node fans the mapper agent across each item — one focused pass per record, isolated context.

  3. Agent

    Mapper classifies + extracts. A cheap mapper agent returns strict, schema-validated JSON per item (category, sentiment, key fields, one-line summary).

  4. Condition

    Validate each result. A Condition node rejects malformed output so one bad item never corrupts the aggregate.

  5. Agent

    Reduce: aggregator rolls it up. After the map completes, a reducer agent aggregates the validated items into trends, top issues and an exec summary.

  6. Approval

    Analyst reviews the rollup. An Approval node puts the summary in front of a human before it's published.

  7. Output

    Publish the report + write tags back. An Output/Tool node writes per-item tags back to the source and posts the summary.

Channels & connectors

  • Webhook
  • Tool (MCP → source system)
  • Approval / HITL

Outcome

Thousands of items classified and rolled into a decision-ready summary on a schedule, at a cost you can predict per item.

Why it helps

Map-reduce is THE pattern for 'too big for one context': cheap per-item passes plus one premium synthesis — linear, bounded cost that scales with volume instead of exploding.

Build spec

2 agents1 mapper (runs once per item via the Loop/Parallel node) + 1 reducer (runs once). Loop/Condition/Approval are workflow nodes. · Pattern: Map-reduce: Loop/Parallel (map) → aggregator (reduce)

System prompt (paste-ready)

(Mapper) Classify ONE item. Return strict JSON {category (from the allowed enum), sentiment, key_fields{}, summary (max 25 words)}. Use only the item's own text; if a field is absent use null — never invent. Your output MUST validate against the schema or it will be rejected.

Agent roles & model tiers

  • Mapper (per item) Economy tier — fast, cheap; runs N times so its model choice dominates total cost

    Classify/extract ONE item into strict schema-valid JSON; null for missing; zero invention.
  • Reducer (once) Premium tier — reasoning

    Aggregate the validated per-item results into trends, a top-5 issues list, and a 5-line exec summary with real counts. Use only the provided items; cite counts, never estimate.

MCP connectors

  • Source system (tickets/reviews/DMS) — via Tool (MCP)

Built-in tools

  • knowledge_search (taxonomy/rubric)
  • http_request (fetch + tag items)

Guardrails

  • Schema validation on every mapper output — malformed items are dropped, never fed into the reduce (data integrity)
  • Hard per-item token/tool budget + timeout — bounds total cost at N × a known ceiling
  • Idempotent per item (keyed by item id) so a re-run never double-tags or double-counts
  • Sample audit: a fixed % of items are human-spot-checked, and the Approval node gates the published rollup

Cost strategy

Cost is linear and predictable: N × (cheap, hard-capped mapper) + ONE premium reduce. Because the mapper runs thousands of times, it MUST sit on the economy tier — that single choice is the dominant cost lever. Run items in Parallel batches for wall-clock speed without changing per-item cost.

Output & delivery

Loop maps the cheap agent over every item → Condition validates each → reducer synthesizes once → analyst Approval → Output writes per-item tags back and posts the summary; rejected items are queued for review, never silently lost.

5. Generator ↔ critic reflection loop (quality gate)

Draft outputs — proposals, customer replies, policy answers, code — need to clear a quality/accuracy bar before they ship. A single agent rarely catches its own mistakes.

Trigger: Webhook / inbound (draft requested)

How the workflow runs

  1. Trigger

    Draft requested. A trigger starts the request with the brief + any source material.

  2. Agent

    Generator drafts. A generator agent produces the first draft, grounded in Knowledge.

  3. Agent

    Critic reviews against a rubric. A separate critic agent scores the draft against an explicit rubric and returns PASS/FAIL + specific issues — it never rewrites, only critiques.

  4. Condition

    Pass or revise?. A Condition node checks the critic's verdict.

  5. Loop

    Revise (bounded rounds). On FAIL, a Loop sends the issues back to the generator — capped at a max number of rounds so it can't loop forever.

  6. Approval

    Human signs off high-stakes. An Approval node puts the final output in front of a person for anything customer-facing or binding.

  7. Output

    Ship the vetted output. An Output node delivers the approved result.

Channels & connectors

  • Webhook
  • Knowledge base
  • Approval / HITL

Outcome

Outputs clear an explicit quality bar before a human ever sees them — the reviewer gets an already-vetted draft, not a rough first pass.

Why it helps

The reflection pattern (generator + critic) catches errors a lone agent misses, at the cost of a bounded number of extra passes. A hard round cap keeps quality high without unbounded token spend.

Build spec

2 agents1 generator + 1 critic, iterating via a round-capped Loop. Condition/Approval/Output are workflow nodes. · Pattern: Generator ↔ critic (reflection, round-capped)

System prompt (paste-ready)

(Generator) Produce the requested output grounded ONLY in the provided brief + Knowledge. When you receive critic feedback, address each issue specifically and return the revised version. Never claim a fact you can't cite.

Agent roles & model tiers

  • Generator Standard/Premium tier — sized to the output's stakes

    Draft (and revise on feedback) grounded in Knowledge; cite; address each critic issue explicitly.
  • Critic Standard tier

    Score the draft against the rubric {accuracy, grounding/citations, completeness, tone, policy-compliance}. Return {verdict: PASS|FAIL, issues[]}. Do NOT rewrite — critique only. Fail anything ungrounded or non-compliant.

MCP connectors

  • Delivery channel (Email/WhatsApp/ticket) — via the channel / a Tool node

Built-in tools

  • knowledge_search (brief + policy + rubric)

Guardrails

  • Hard cap on revision rounds (e.g. max 2) — the loop cannot run forever, so token cost is bounded
  • The critic uses an EXPLICIT rubric, not open-ended vibes — reviews are consistent and auditable
  • Separation of duties: the critic can FAIL but cannot approve-to-send; only the human Approval ships high-stakes output
  • Grounding required: the generator must cite; the critic fails ungrounded content, so hallucinations don't slip through

Cost strategy

Quality costs a bounded number of extra passes: 1 draft + up to N critique/revision rounds, where N is a hard cap (typically 1–2). Put the critic on a cheaper tier than the generator where you can. The round cap is the cost ceiling — no reflection loop can run away.

Output & delivery

Generator drafts → critic scores vs the rubric → Condition loops (capped) on FAIL → on PASS, high-stakes goes to human Approval → Output ships; every round + the rubric scores are logged for QA.

6. Reusable sub-workflow library (build once, govern centrally)

The same step — KYC/document verification, PII redaction, payment verification — is needed by a dozen workflows. Copy-pasting it means a compliance fix in one place silently misses the other eleven.

Trigger: Any parent workflow (this is a shared module, not a standalone trigger)

How the workflow runs

  1. Trigger

    Parent workflow runs. Any workflow (onboarding, lending, claims…) reaches the point where it needs the shared step.

  2. Sub-workflow

    Call the shared module. A Sub-workflow node invokes the governed 'KYC / document-verification' workflow — the single source of truth for that logic.

  3. Agent

    (Inside) the module does its job. Within the sub-workflow, an agent verifies documents/identity against the current policy.

  4. Approval

    (Inside) its own approval gate. The module enforces its OWN Approval step, so no parent workflow can bypass the human check.

  5. Condition

    Return a clean verdict. The sub-workflow returns a structured pass/fail + evidence to the parent over a stable contract.

  6. Output

    Parent continues. The parent proceeds on the returned verdict — consistently, everywhere it's used.

Channels & connectors

  • Sub-workflow
  • Knowledge base
  • Approval / HITL
  • Tool (MCP → system of record)

Outcome

Sensitive, regulated logic lives in ONE governed, versioned module that every workflow reuses — fix or update it once and every consumer inherits it.

Why it helps

Composition is the enterprise-standard answer to duplication and drift: one reviewed, versioned building block instead of a dozen copies that fall out of sync. It's DRY applied to automation, with governance baked in.

Build spec

1 agent1 agent inside the shared sub-workflow; any number of parent workflows reuse it via a Sub-workflow node — the pattern is composition, not agent count. · Pattern: Sub-workflow composition (reusable, versioned module)

System prompt (paste-ready)

(Module agent) Verify the submitted documents/identity strictly against the CURRENT policy in Knowledge. Return {verdict: PASS|FAIL|NEEDS_HUMAN, checks[{name, result, evidence}]}. Never approve a borderline case yourself — return NEEDS_HUMAN so the module's own Approval step decides.

Agent roles & model tiers

  • Verification agent (inside the module) Standard tier

    Run the documented checks against current policy; structured verdict with evidence; borderline → NEEDS_HUMAN, never self-approve.

MCP connectors

  • System of record (KYC / identity provider) — via Tool (MCP)

Built-in tools

  • knowledge_search (current policy — the ONE place to update)
  • document parsing

Guardrails

  • Single source of truth: the compliance logic exists once — change it in the module and every parent inherits the change
  • Versioned + reviewed: a change to the shared module is reviewed/versioned before rollout, so consumers never get a silent, unaudited change
  • The module enforces its OWN Approval gate — a parent workflow cannot skip the human check by calling it
  • Stable contract: it returns a structured verdict, so parents can't misread or partially apply the result

Cost strategy

Build-and-govern-once beats maintain-a-dozen-copies: one model/prompt/guardrail set to tune, one place to optimize cost, and zero duplicated maintenance. Centralizing also lets you right-size the model for that step in exactly one place.

Output & delivery

Parent hits the Sub-workflow node → the module verifies (agent + policy) → its own Approval gates borderline cases → it returns a structured PASS/FAIL/NEEDS_HUMAN verdict + evidence → the parent continues on that verdict; the module's version + result are logged centrally.

Related industries

Build one of these in minutes

The sandbox gives you a live agent workspace — no account, no card. Or head back to the full catalogue and compare patterns across every industry.

See how VegaDūta compares to n8n, Dify and BotpressWhy VegaDūta's architectureEstimate your WhatsApp API costs