Skip to main content
This system is built around a workflow backbone. Deployments bring work into Duckie, workflows hold deterministic state, and agents handle judgment-heavy steps.

Operational Flow

Reporting and Improvement Loop

Component Responsibilities

Deterministic vs Autonomous

Use deterministic workflows for:
  • Required field checks
  • Deadline calculation
  • Branch routing
  • Approval gates
  • Submission status changes
  • Retrying failed tool calls
  • Calling reusable subflows
Use autonomous agents for:
  • Classifying unclear reason codes
  • Reading free-form dispute notes
  • Drafting account messages
  • Drafting evidence narratives
  • Summarizing reviewer feedback
  • Explaining daily operational trends
  • Delegating narrow tasks to other agents
When a step must happen the same way every time, make it a workflow. When a step needs interpretation, make it an agent called by the workflow.

Deployment Inventory

Deployments

Learn how deployments connect triggers to agents and workflows.

Custom Webhooks

Trigger Duckie from external systems.

Scheduled Deployments

Run reporting and review loops on a schedule.

Runs

Inspect what happened during each case.