Use Cases
This chapter provides end‑to‑end recipes that you can clone in minutes. Each playbook includes:
Problem Statement – what pain it solves.
Reference Architecture – agents, tools, schedules.
Step‑by‑Step Setup – Builder configs, policy notes.
KPIs & Success Metrics – what to track.
Cost & Scaling Tips – keep spend predictable.
12.1 Finance · InvoiceBot
Pain
Manual entry of PDF invoices into SAP/Netsuite burns 4 h/week.
Agent Stack
o365.listMessages → kb.search → pdf.parse → sap.gui.fb60.post → netsuite.upsert → slack.chat.post
Schedule
Every 15 min, email poller checks [email protected]
.
Policy Highlights
Bytes < 5 MB; block if vendor not in whitelist; require approval on amounts > $25k.
Setup Steps
Connect Microsoft 365, SAP GUI, Netsuite, Slack integrations.
In Knowledge tab, ingest Invoice Coding Guide PDF.
Builder → Tasks → FetchInvoices with input
{folder:"Invoices",period:"last_24h"}
; flip Run on Schedule → Every 15 min.Policy snippet:
regorequire_approval { input.tool == "sap.gui.fb60.post" input.params.amount > 25000}
KPIs – invoices processed/hr, manual approvals, SAP post latency. Cost Tip – switch to Claude Sonnet for text extraction to cut token costs 30 %.
12.2 Customer Support · SupportCopilot
Pain
Tier‑1 reps spend 45 % time triaging Zendesk tickets.
Agent Stack
zendesk.tickets.get → postgres.query → llm.classify → rest.rma.create → fedex.schedulePickup → slack.chat.post
Trigger
Zendesk webhook on new ticket.
Escalation
If confidence < 0.85 or account value > $5k, assign to human rep.
Setup Steps
Connect Zendesk, PostgreSQL, REST RMA, FedEx, Slack.
In Instructions, add classification rubric (Urgent, Normal, Spam).
Create Webhook Trigger: ticket_created → run SupportCopilot.
Set Variable
account_value_threshold = 5000
.Policy rule blocks outbound RMAs during maintenance window.
KPIs – avg first response time, auto‑resolution rate, CSAT delta. Scaling Tip – Use Bulk Tasks weekly to reprocess old tickets and train model.
12.3 Market Intelligence · MarketWatch
Pain
Analysts lose time aggregating news/rss into slides.
Agent Stack
rss.fetch → llm.summarize → notion.pages.create → sendgrid.sendEmail
Schedule
Weekdays 07:00 local.
Policy
Allow only whitelisted RSS domains; summaries must cite source URL.
Setup Steps
Connect Notion, SendGrid.
Knowledge tab: upload style guide for executive summaries.
Builder → Tasks → DailyDigest; set Cron
0 7 * * 1-5
.Turn on Must Cite in Knowledge settings.
KPIs – email open rate, analyst editing time saved. Cost Tip – Use batching: fetch 20 feeds in one task to share model context.
12.4 Advanced Multi-Industry Use Cases
Healthcare
Patient data aggregation across EMR systems with HIPAA compliance
Epic FHIR, Cerner, AWS HealthLake
Manufacturing
Supply chain monitoring with IoT sensors and predictive maintenance
SAP ERP, Honeywell, Siemens PLCs
Legal
Contract analysis and compliance checking with citation requirements
Westlaw, Relativity, SharePoint
Research
Literature review and citation management for academic institutions
PubMed, Zotero, Institutional repositories
Financial Services
Regulatory reporting automation with audit trails
Bloomberg API, SWIFT, Core banking systems
Last updated