Gong
SkillSearchLets your agent search sales-call recordings and transcripts in Gong to find customer objections, risks, and next steps.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Gong skill
About this capability
Search Gong call metadata and transcript excerpts for sales-call analysis, customer conversations, objections, risks, and next steps.
What this skill tells your AI
The instructions your AI receives, as published by builderio/agent-native in templates/analytics/.agents/skills/gong/SKILL.md and read by ahel’s review.
Use Gong for sales-call evidence. Call metadata alone is not enough for a deep dive that asks what happened in customer conversations.
Actions
gong-native-insights— one provider-native qualitative synthesis operation (ask_account,ask_deal, orgenerate_brief) through Gong's connected MCP. Use it for themes, risks, summaries, and deck narrative when the native tools are connected. One action invocation makes at most one Gong AI request; omitoperationto inspect its schemas without spending a credit request, and setallowCreditRequest=trueonly for the one consolidated request you intend to send. Paid calls also require a workspace owner to enable them once withconfigure-gong-native-insights; the policy defaults off and disabling it never blocks the raw evidence path.account-deep-dive— first choice for named account/deal deep dives that need HubSpot plus Gong. It searches by account/deal/company/contact domain, loads Gong call details, and returns compact transcript excerpts for synthesis.gong-calls— bounded convenience reads: list recent calls, search by company/domain/person/email, fetch a single transcript by call ID, or return transcript excerpts for a small matching cohort. ItstranscriptQueryis a local scan after batched transcript retrieval, not Gong's server-side keyword search.
For broad or absence-sensitive Gong work, prefer the raw provider API surface:
use provider-api-catalog / provider-api-docs, then stage /calls/extensive
or another raw endpoint with provider-api-request. Reduce staged tracker or
call data with query-staged-dataset or a Data Program. Use
provider-corpus-job only when raw transcript bodies are required and no
native/indexed search can answer the question.
Route Synthesis and Evidence Separately
- Use
gong-native-insightsfor qualitative synthesis where Gong may retrieve and analyze evidence internally. Its result is provider synthesis: coverage is unknown and raw transcript evidence is unavailable. - Use
gong-callsorprovider-corpus-jobfor quotes, exact counts, transcript records, coverage-sensitive claims, and proof that something was absent. - Consolidate related native questions into one narrowly scoped request. Each native operation independently consumes Gong credits, so do not make one call per slide, bullet, or sub-question.
- From a sibling app, ask Analytics a natural-language question by default.
Analytics owns Gong/HubSpot routing, source coverage, credentials, transcript
strategy, joins, and synthesis. Use
call-agent's directaction+inputmode only when a trusted integration explicitly names one stable semantic read contract and supplies its complete bounded input. Never use direct actions as a workaround for a slow or failed delegated run.
Account Search Algorithm
Gong search pages POST /v2/calls/extensive directly with the requested date
window and party data (not GET /v2/calls, which returns no parties). Each call
is matched against both:
- Title variants: the call title contains a generated search variant.
- External parties: an external participant's name, email, or domain matches a generated search variant.
This catches calls titled "Builder <> Acme" when you search
"Acme Corp" by matching the "acme" name variant or "@acme.com" domain variant.
The lib generates variants by stripping deal suffixes (- New Deal, - Fusion),
corporate suffixes (Group, Inc, Corp, LLC), and deriving first word and
email domain — always including the raw original. Variants shorter than 3 chars
are filtered. This is why a broad company search can find more calls than an
exact-title search.
Customer-Voice Extraction (externalMonologues)
When analyzing customer sentiment, objections, or voice of the customer:
- Use
getEnrichedTranscript/ request enriched transcripts — it maps each monologue to speaker identity and affiliation. - Only use
externalMonologuesfor customer/prospect statements. Monologues withaffiliation === "Internal"are your own team's speech — never surface these as "what the customer said." - The
externalMonologuesfield on an enriched transcript is the pre-filtered customer-voice signal; use it directly.
Patterns
For account or deal deep dives:
- Call
account-deep-divefirst when the request also needs CRM context, contacts, stages, amount, close date, or an overall opportunity narrative. - Use
gong-callsfor targeted follow-up searches by account name, domain, person, or email. - Set
includeTranscripts=truewhen the user asks for context, risks, objections, next steps, decision process, sentiment, or a "deep dive". - Use
transcriptLimitaround 3-5 for a first pass. For broad coverage of a named account, increase to 10-20 — the action supports up to 50. Increase when the returned calls don't cover the time window or key people you need. For a bounded "review all calls" request with at most 50 matches, make one call withexhaustive=true,after,before, andincludeTranscripts=true; do not split discovery and transcripts into separate agent tool calls. - Use the compact transcript excerpts returned by
includeTranscripts=true. Do not fetch raw individual transcripts unless the user asks for exhaustive quoting, debugging, or export. - Ground qualitative findings in the transcript excerpts and state how many calls were inspected.
- For bounded account coverage, use
cursor/offset only when the cohort is intentionally bounded. If the action reports truncation, treat coverage as incomplete and switch to tracker staging withprovider-api-requestplusquery-staged-datasetor a Data Program, or toprovider-corpus-jobwhen raw transcript bodies are required. Do not increase the limit or keep paginggong-callsfor broad scans. Do not usegong-calls(exhaustive=true)or one blockingprovider-api-requestcall as the analysis. Stage the raw response and reduce it with a Data Program orquery-staged-dataset; useprovider-corpus-jobfor checkpointed transcript batches when raw bodies are necessary.
Quota and Coverage Rules
- Every Gong list or transcript page consumes provider quota. Budget pages and transcript batches before starting a broad scan; do not spend quota retrying the same bounded action after it reports incomplete coverage.
- A terminal HTTP 429 is terminal for that attempt. The shared provider
transport may perform bounded cooldown/retry handling from
Retry-After, but the agent must not add another retry loop. Report the rate-limit failure and switch to the staged tracker or checkpointedprovider-corpus-jobpath only if that route is still appropriate. - Exhaustive, count, and absence claims require complete coverage of the stated cohort. If any page, transcript batch, or provider request fails or is truncated, report the gap and do not make the claim.
Example:
gong-calls(company: "The Knot", days: 180, limit: 20, includeTranscripts: true, transcriptLimit: 10)
Gong search is best-effort: it matches title plus external participant names,
emails, and domains through /calls/extensive. Treat call details and transcript
excerpts as evidence; treat missing coverage as a gap, not proof that the topic
never came up.
Title/party matching is discovery only. Never use a title pre-filter as proof that a phrase is absent from transcripts.
If transcript loading fails for a call, report that gap instead of inferring the conversation content from title, date, or participants.
When a single transcript is needed, gong-calls(transcript: "...") returns
compact extracted text by default. Set rawTranscript=true only for
debugging/export, and never pass raw transcript payloads into save-analysis.
Complete-Coverage Transcript Scan
When the question is "do ANY of these calls mention X?" or "how many calls across
this cohort mention X?" — where missing a single call makes the answer wrong — do
NOT conclude absence from a sampled includeTranscripts result. Exhaustive
claims require complete coverage of every call in the stated cohort. Choose the
smallest complete path for the bounded cohort:
-
Configured keyword tracker. If the requested term is already a Gong keyword tracker exposed in API results, use
provider-api-requestagainst/calls/extensivewithcontentSelector.exposedFields.content.trackers. Stage the paginated calls, then flatten and filter tracker ids, names, or phrases withquery-staged-datasetor a Data Program. This is the preferred broad keyword path because Gong has already indexed the tracker. It does not answer arbitrary terms that are not configured as trackers. -
Named account, up to 50 calls, qualitative review. Make one
gong-callscall withexhaustive=true, a boundedafter/beforewindow, andincludeTranscripts=true. The action discovers every matching call and fetches transcript excerpts in batches, returningtranscriptCoverage. Do not fetch the same call IDs one at a time afterward. -
Bounded arbitrary mention/absence search, up to 200 calls. Make one
gong-callscall withexhaustive=true, the date window,transcriptQuery, and an adequatetranscriptScanLimit. This is a bounded local scan after batched transcript retrieval. Report its coverage fields and only make an absence claim when coverage is complete. -
Larger or multi-account arbitrary corpus. Use
provider-api-catalog(provider: "gong")and itscorpusRecipesif you need the exact shape. Stage call ids with the raw API, then useprovider-corpus-jobwithmode: "batch-search"and 20-call transcript batches. The canonical request isPOST /calls/transcriptwithbatch.itemBodyPath: "filter.callIds",batch.responseItemsPath: "callTranscripts",batch.batchSize: 20,search.textPaths: ["transcript"], andsearch.idPaths: ["callId"]. Feed the staged/discovered call ids throughbatch.inputDatasetId+batch.inputValuePathor throughbatch.items. This is a durable full scan, not a server-side keyword query; do not implement it as a per-call loop inrun-codeor a delegated agent.
When delegating a corpus chunk to an Agent Teams sub-agent, include the exact
staged dataset id or scratch/... path and the output/checkpoint path in the
task brief. The child starts with a clean context and must read the staged
input before making any provider request. If that input is unavailable, it
must report the missing input rather than re-fetching the entire Gong corpus.
- Use
run-codeonly for joins/reductions around the corpus path. After the transcript job exists, userun-code,query-staged-dataset, or job results to join hits back to deals/accounts, compute variants, dedupe, and format evidence. Arun-codeloop overgong-calls(transcript: id)is a fallback for small or awkward sets, not the default for broad scans.
Report coverage explicitly: deals in cohort, calls discovered, calls scanned, and matches found. Never turn "I inspected a sample" into "no call mentions X".
Limits (Current)
| Parameter | Default | Max |
|---|---|---|
limit (calls returned) | 8 | 200 |
transcriptLimit | 3 | 50 |
transcriptMaxChars | 8 000 | 100 000 |
For large account deep-dives or competitive analyses spanning many calls, use
limit: 50-200 and transcriptLimit: 20-50. For very large datasets, use the
checkpointed provider-corpus-job path rather than paging the full Gong call
list inside one agent action.
Signals
- GitHub stars
- 5k
- Forks
- 440
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
gong- Source
- github.com/builderio/agent-native