Back to Home

ZeroExport Ask Agent

Ask questions about the Word documents attached to any Salesforce record, answered from the document itself and cited by section.

ZeroExport Ask Agent is a separate installable app under the ZeroExport umbrella. It lets an Agentforce agent answer questions about the Word documents attached to a Salesforce record, reading the file at the moment the question is asked.

It installs and runs on its own. ZeroExport is not a prerequisite.

What it does

Open a record, ask a question in plain language:

"What's the target resolution for a Severity 1 issue?"

Severity 1 (Critical Outage) has a target resolution window of 4 hours, with a 15-minute first response, escalating to the VP of Engineering. (Section: 2. Targets - Enterprise_SLA_2026.docx)

Three things are happening there, and each one is the point.

  • It read the document just now. Not an index built last week. If the file was uploaded a minute ago, the answer reflects it.
  • It cited where the answer came from. Every fact is traceable to a section of a named document, so it can be checked rather than trusted.
  • It did not fill in the gaps. Ask about something the document does not cover and it says so, and names the document it searched.

What ships

Three agent actions, ready to add to any Agentforce agent, plus one permission set. No custom objects, no scheduled jobs, no configuration screens, no data model to learn.

ActionWhat it does
ZeroExport Read Attached DocumentAnswers a question from a document attached to the record
ZeroExport List Attached DocumentsLists what is attached, and what can be read
ZeroExport Ask Agent Help DocumentAnswers questions about the product itself, grounded in its own docs

What it reads

FormatSupportedNotes
Word (.docx)YesHeadings, paragraphs, tables and lists all preserved
PDF (.pdf)Not yetOn the roadmap
Anything elseNoThe agent says so rather than guessing

Limits worth knowing. Documents up to roughly 1.5 MB of internal markup, which is several hundred pages of ordinary text. Scanned or image-only documents contain no text to read, and the agent will say so rather than inventing content. Deleted tracked changes and field codes are ignored, so the agent reads the document as a person sees it.

File size is not text size. A 1.77 MB Word file we tested turned out to be 99% embedded fonts; the actual text came to 962 characters. Size on disk tells you very little about whether a document will read.

Security

  • Your document is never copied out of Salesforce. The file is opened and parsed in Apex, inside your org, using the platform's own ZIP and XML support. No middleware touches it. No copy is stored, indexed, or retained.
  • The extracted text is passed to Agentforce for a single answer, the same path as any other Agentforce prompt, through the Einstein Trust Layer. Nothing is written back, and nothing persists after the answer.
  • Access follows your existing sharing rules. The agent reads as the user who asked. If someone cannot open a file themselves, the agent cannot open it for them.
  • No callouts and no external endpoints. The package makes no outbound connections of any kind.

There is no ingestion step and no vector index, so nothing is copied into a second system and Data Cloud is not required.

How it works

  1. The agent resolves which document you mean. One attached file is used automatically, several prompt a question, and a named file is matched.
  2. Apex opens the .docx with the platform's native ZIP support and walks its XML.
  3. The document becomes clean Markdown: # headings, real tables, real lists.
  4. That text grounds a single answer, cited by section.

A one-page document costs about 240 tokens of agent context and 23 milliseconds of processing. There is nothing to provision, schedule, or keep warm.

Next steps

Roadmap

  • PDF support, the most requested format after Word.
  • Larger documents, via chunked retrieval beyond the current single-transaction limit.
  • More attachment sources, beyond files linked directly to a record.