
Tekunda Team

Tekunda Team

Short answer: agentic apps go through the same AppExchange security review as any other managed package. What changes is the surface it covers. Salesforce scopes its testing by following the data, and in an LLM-backed app customer data now travels into a prompt, often out to a model, and back as text that can trigger an action. Prepare three answers before you submit: what goes into the prompt, what leaves the org, and what the agent is allowed to do on a user's behalf.
An agentic app, for review purposes, is any package that ships agent actions, topics or prompt templates, or that calls a language model from Apex or Flow. The review guidelines have not been rewritten around it (Salesforce Developers). The scope has simply grown, because Salesforce determines what to test with a follow-the-data approach, and there is far more data movement to follow than in a classic CRM package.
In a classic managed package the risky paths were finite: SOQL, sharing, a couple of callouts, some Visualforce output. In an agentic app the same package also constructs prompts from customer records, sends them somewhere, and then acts on the answer. Every one of those hops is a place a reviewer will look.
Be ready to show, in the Developer Edition org you submit, exactly where prompt text comes from and what constrains it. In practice that means five things:
This is the question classic packages rarely had to answer well, and it is where agentic submissions lose weeks. If any component sits outside Salesforce, the submission requires the URLs and login credentials for those external components, a Checkmarx scan report and a dynamic application security test report (Salesforce Developers). Add to that, from experience, what your reviewer will want spelled out:
Where you place the trust boundary decides how much of the review lands on you. Use the platform's own AI services and the boundary is largely Salesforce's. Call an external model directly from your package and it is entirely yours to evidence: the endpoint, the authentication, the failure behaviour when the provider is down or returns garbage, and the tenant isolation between subscribers. Give reviewers working test access to that external component, not a description of it.
The moment an action writes, deletes, sends or pays, the review stops being about code and starts being about authority. Grant the narrowest permission set the action needs, run in user context, require a human confirmation for anything irreversible, and write an audit record of what the agent did and on whose behalf. Salesforce framed the standard plainly when it opened its agent marketplace to partners:
You need to be able to trust the AI. That means we need to understand permissions and respect guardrails, and our enterprise customers need to stay compliant with their solutions. (Alice Steinglass, EVP and GM, Salesforce Platform, diginomica)
The first four are the documented submission materials. The fifth is not, and it is the one that turns a multi-round review into a single pass.
AgentExchange opened at TDX 2025 with more than 200 partners publishing four component types: actions, prompt templates, topics and agent templates, all of which Salesforce says passed security review (diginomica). Treat it as the same trust bar applied to smaller units. A single action carries the same three questions as a full app, with less code to hide behind.
Tekunda is a Salesforce PDO, and we have taken packages through security review in healthcare, logistics and manufacturing, including the Syntilio CareHub managed package now serving 12 or more care organisations on the AppExchange. If you are packaging an agentic app, talk to us before your first submission rather than after your first rejection.
Does an AI feature require a separate security review?
No. It is reviewed with your package, but it widens the scope, because the data path now leaves the objects and travels through a prompt.
Can I ship my own model API key inside the package?
You can architect it either way, but be explicit about which you chose. A shared key makes tenant isolation and per-subscriber consent your responsibility to prove.
Do I need to enforce sharing on data used for grounding?
Yes. Grounding is a read. The usual sharing and field-level security rules apply, and a summary that leaks a hidden field fails the same way a raw query would.
What is the most common reason an agentic submission comes back?
Undocumented egress. The code is often fine; what is missing is a clear statement of which customer data leaves the org, where it goes and how long it stays there.