Home/Resources/AI & Agentforce
AI & Agentforce10 min read

Salesforce AI use cases that actually ship.

A field guide to the Salesforce AI work that survives contact with production — service deflection, sales assist and ops automation — and how to choose between Agentforce, Einstein features and custom LLM integration.

AJ Aleš Jeník — Salesforce Enterprise Architect · 12+ years building revenue systems on Salesforce · Clouderia
Key takeaways
  • Three families of Salesforce AI reliably reach production: service deflection, sales assist and operations automation. Scope by workflow, not by technology.
  • Einstein features fit embedded assistance, Agentforce fits multi-step agents that take actions, custom LLM integration fits requirements the platform cannot express — each step up buys control and costs engineering.
  • Data readiness — knowledge quality, unified customer data, correct permissions, working APIs behind actions — decides outcomes more than model choice does.
  • Honest ROI starts with an instrumented baseline. Measure containment, verified resolution and cost per contact; refuse business cases built on someone else’s benchmark numbers.
  • Most failures are engineering-discipline failures: no evaluation set, no escalation design, ungoverned knowledge, over-permissioned agents, or an LLM doing a job Flow should do.

The gap between demo and production

Every Salesforce AI demo works. The model summarises the case, drafts the email, answers the question about the return policy, and the room nods. Then the pilot meets real intents, real data quality and real compliance review, and a large share of projects quietly stall. The difference between the ones that ship and the ones that stall is almost never the model. It is scope discipline, data readiness and the engineering practices around the AI — the same things that decide whether any Salesforce build survives, applied to a component that is probabilistic instead of deterministic.

This article is the map we use when scoping AI work for clients: which use cases have a credible path to production, which product tier to build them on, what has to be true about your data first, and how to think about return without inventing numbers. The step-by-step delivery side is covered separately in our Agentforce implementation guide.

Use cases by function

Service: deflection and case handling

Customer service is where Salesforce AI ships most often, because the economics are legible and the workflows are already instrumented. The production-grade use cases, roughly in order of difficulty: agent-assist during live conversations (suggested replies, case summarisation, knowledge surfacing), automatic case classification and routing, wrap-up automation (summaries, disposition codes, follow-up tasks), and finally customer-facing deflection — an agent that answers questions and executes bounded transactions such as order status, address change or appointment rebooking without a human.

The ordering matters. Assist and classification use cases fail safe: a wrong suggestion is ignored by a human. Customer-facing deflection fails loud: a wrong answer goes straight to the customer under your brand. Teams that start with assist build the knowledge hygiene, evaluation habits and escalation design that deflection later depends on. Teams that start with an unsupervised customer-facing bot usually meet their first hallucinated policy answer in a complaint ticket.

Sales assist

The sales use cases that stick are the unglamorous ones: account and opportunity summarisation before a call, drafting follow-up emails grounded in CRM history, call summaries written back to records, meeting-prep briefs that pull from activity history, and data hygiene — filling and correcting fields the reps never maintain. Predictive scoring for leads and opportunities is useful where win/loss history is deep enough to learn from; treat it with suspicion in businesses with few, large, idiosyncratic deals.

Fully automated outbound — AI SDR agents that prospect and correspond on their own — is the frontier: technically available, commercially sensitive. The failure cost is reputational, not operational, so pilot it on segments where a clumsy email costs you little, with a human approving sends until the transcripts earn trust.

Ops automation

The least discussed and often highest-yield family: back-office work inside Salesforce. Document intake — extracting structured data from orders, invoices, claims and KYC documents into records. Exception triage in order-to-cash flows: reading a failed order or an unmatched payment, classifying the cause and proposing the correction, with a human approving. Free-text normalisation in migrations and integrations. These use cases rarely make keynotes, but they compound: each one removes swivel-chair work from a process you already measure, and each one keeps a human on the approve button, which keeps risk bounded. The constraint is integration, not intelligence — an agent can only fix a stuck order if there is a clean API to fix it through, which is why this family usually starts as an integration project wearing an AI hat.

Agentforce, Einstein features, or custom LLM integration

Salesforce AI is not one product decision but a spectrum of build depth. Getting the tier right per use case is most of the architecture work.

Einstein features embedded in the clouds configure + prompt templates Agentforce agents: topics + actions ground + compose + test Custom LLM integration your models, your evals build + own everything control and engineering effort

Einstein features are the AI already embedded in Sales and Service Cloud: case classification, reply recommendations, email drafting, call and case summarisation, opportunity insights, plus Prompt Builder for your own templates grounded in record data. They run inside Salesforce’s trust tooling — data masking, grounding on records the user can see, audit trails. You configure rather than build, which makes them the fastest path to value and the least differentiated. If a shipped feature covers the use case, buying it beats rebuilding it.

Agentforce is the agentic layer: you define agents by topics, natural-language instructions and — critically — actions, which are implemented as Flows, invocable Apex, prompt templates or API calls. The reasoning engine plans multi-step work across those actions, and agents deploy to customer channels or to employees inside Salesforce. This is the right tier when the job requires deciding-then-doing across several systems, not just generating text. It is also where testing stops being optional: an agent is a system whose behaviour emerges from instructions, grounding and actions together, and it needs a regression suite of real conversations before every change. Our Agentforce practice treats agent instructions and actions as code — versioned, reviewed and tested like any other deployable.

Custom LLM integration means going around or beneath the packaged layer: bring-your-own-model patterns that connect external models into the Salesforce AI stack, or direct integration with an LLM provider through Named Credentials, Apex callouts or middleware, often with retrieval over your own vector store. You choose this when requirements exceed the platform’s control surface — a specific model, custom evaluation pipelines, an agent that must live across Salesforce and non-Salesforce surfaces, or latency and cost profiles the packaged tiers cannot hit. The price is that everything the platform did for you — masking, grounding, audit, cost governance — becomes your engineering backlog. The classic build-versus-configure discipline applies with more force here, because the thing you are choosing to own is harder to test than Apex.

Product boundaries and packaging in this area change fast — several times in recent years — so verify current capabilities and pricing against Salesforce documentation before committing an architecture to paper.

Data readiness is the real prerequisite

Every AI tier above is a thin reasoning layer over your data, and it inherits your data’s flaws with perfect fidelity. Four checks before any build starts:

  • Knowledge quality. Deflection is retrieval over your knowledge base. Stale, duplicated or contradictory articles become confident wrong answers. An audit — coverage against actual contact drivers, freshness, deduplication, ownership — is the first sprint of any service agent project, not a parallel workstream.
  • Unified customer data. An agent answering “where is my order” needs the order, which often lives in an ERP or commerce platform, and it needs to know which customer is asking across systems that each hold a fragment of the identity. This is the job Data Cloud exists for: identity resolution, harmonised profiles, and retrieval grounding over both structured and unstructured data. Simple prompt templates can ground on CRM records alone; ambitious agents usually cannot.
  • Permissions and exposure. Agents act with defined access, and the design question is what the agent may see and do per channel. An internal assist agent can read broadly; a customer-facing agent must be provably unable to surface another customer’s data. Field-level security, sharing and PII masking stop being compliance paperwork and become runtime behaviour.
  • APIs behind actions. Every action an agent takes is an integration. If order status, rebooking or refunds have no clean, authorised API today, that is the real project — see our integration patterns guide for the seams that hold up.

ROI thinking without invented numbers

Most AI business cases we review are arithmetic on someone else’s numbers — a vendor benchmark multiplied by your headcount. Refuse that. The defensible method is boring: instrument the baseline before the pilot, then measure your own delta.

For service, the honest chain is: baseline contact volume and cost per contact, then measured containment (conversations completed without handoff), then verified resolution — sampled transcripts scored by humans, because containment without correctness is customers giving up. Watch for volume that merely shifts channel rather than disappearing, and watch reopen rates for deflected contacts. For sales assist, be suspicious of self-reported “hours saved”; prefer observable outcomes — response latency, follow-up coverage, completeness of CRM data — and accept that some value is real but unmeasurable. For ops automation, use the metrics automation teams have always used: touchless rate, exception rate, rework, cycle time.

Count the full cost side too: usage-based consumption pricing (model conversation volumes before signing, not after the first invoice), the data remediation work above — usually the largest line item — and the permanent engineering cost of evaluation, prompt maintenance and monitoring. A pilot that cannot articulate its baseline metric is not a pilot; it is a demo with a budget.

Failure modes we keep seeing

  • Demo-driven scope. The agent handles five rehearsed intents brilliantly and dies on the long tail of real ones. Fix: scope from contact-driver data, ship a narrow agent that escalates everything else gracefully.
  • Ungoverned knowledge. The knowledge base was written for humans who could spot a stale article; the agent cannot. Without ownership and review cadence, answer quality decays silently after launch.
  • No escalation design. Handoff to a human arrives without transcript, context or captured intent, so the customer starts over — angrier. Escalation is a first-class flow to design and test, not an error path.
  • No evaluation harness. Prompt and instruction changes ship on vibes. Treat them as code: versioned, peer-reviewed and run against a regression set of real conversations before deploy — the same discipline as our code review standard, applied to a probabilistic component.
  • Over-permissioned agents. Built with admin-like access to make the demo work, never narrowed. The failure is invisible until it is a disclosure incident.
  • Wrong altitude. An LLM asked to do deterministic work — pricing, eligibility, routing rules — that Flow or Apex would do correctly, cheaply and auditably every time. Use the model for language and judgment; use code for rules.

None of these are model problems, which is the point. Since 2010 Clouderia has built the systems AI now sits on top of — CRM, revenue, service and integration layers — and our 46 certified experts approach agents the same way: as production software with an unusual runtime, engineered accordingly.

Frequently asked questions

Should we start with Agentforce or with Einstein features?

Start from the workflow, not the product. If the job is assistance inside an existing screen — summarise, draft, classify — Einstein features and Prompt Builder are faster to ship and easier to govern. If the job needs multi-step reasoning and actions across records and systems, that is agent territory. Many teams ship an Einstein-level use case first to build data and governance muscle, then graduate to Agentforce.

Is Data Cloud required for Salesforce AI?

Not universally, but it is the intended grounding layer. Simple prompt templates can ground on CRM records alone. Retrieval over documents and knowledge at scale, identity resolution across systems, and several Agentforce grounding patterns lean on Data Cloud. Treat it as required when your answers depend on data that lives outside clean CRM fields — which, for service deflection, is most of the time.

Can we use our own LLM instead of Salesforce-provided models?

Yes, through more than one door. Salesforce supports bring-your-own-model patterns for connecting external models into its AI stack, and you can always integrate an external LLM API through Named Credentials and Apex or middleware. The trade is real: outside the platform tooling you own masking, audit, evaluation and cost control yourself. Check current Salesforce documentation for supported models and patterns.

How do we measure whether a service agent is actually working?

Instrument before launch: baseline contact volume, cost per contact, resolution rate and satisfaction. Then track containment, correct-resolution rate verified by sampling transcripts, escalation quality and downstream reopen rates. Containment alone is a vanity metric — an agent that deflects customers into frustration contains conversations and destroys satisfaction at the same time.

What does AI on Salesforce cost?

Plan for three layers: licensing and usage-based consumption, which varies by product and volume — check current Salesforce pricing; the data work, usually the largest line item, covering knowledge cleanup, integration and permissions; and ongoing engineering for testing, evaluation and prompt maintenance. Usage-based pricing means volume modelling belongs in the business case, not after the first invoice.

Related reading

Salesforce Agentforce servicesHow Clouderia designs, builds and ships production AI agents. Agentforce implementation guideThe delivery path from scoped pilot to governed production agent. Salesforce Data Cloud servicesUnified customer data as the grounding layer for AI. Salesforce integration patternsThe seams behind every agent action that touches another system. When to write ApexChoosing between configuration, Flow, Apex and external services.
Scoping AI on Salesforce?

Bring the hard part to a senior Salesforce engineering team.

Talk to the builders about AI use cases