templates/analytics/.builder/skills/gong/SKILL.md
Search sales call recordings, transcripts, and participants via Gong. Use this skill when the user asks about sales calls, customer conversations, or call transcripts.
npx skillsauth add BuilderIO/agent-native gongInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
https://us-65885.api.gong.io/v2 (region-specific)Base64($GONG_ACCESS_KEY:$GONG_ACCESS_SECRET)GONG_ACCESS_KEY, GONG_ACCESS_SECRETserver/lib/gong.ts| Function | Description |
| --------------------------- | ----------------------------------------- |
| getCalls(filters?) | List calls (cursor-paginated) |
| getCall(callId) | Get single call detail |
| getCallTranscript(callId) | Get call transcript |
| getUsers() | List Gong users |
| searchCalls(query, days) | List + client-side filter by company name |
| Route | Description |
| --------------------- | ----------------- |
| GET /api/gong/calls | List/search calls |
| GET /api/gong/users | List users |
# Recent calls with a customer
pnpm action gong-calls --company="Example Inc" --days=30
# Get call transcript
pnpm action gong-calls --transcript=<callId>
# List Gong users
pnpm action gong-calls --users
GET /v2/calls — lists calls (with fromDateTime, toDateTime, cursor params)POST /v2/calls — uploading/creating calls (NOT listing). Using this for listing returns 400 errors about missing fields.POST /v2/calls/extensive — detailed call data with party infoPOST /v2/calls/transcript — get transcriptsGET /v2/calls?fromDateTime=..., then filter client-side by company name matching against call title. No server-side company name search.speakerId (numeric), topic (string or null), sentences array with start/end (ms) and text. Speaker IDs need cross-referencing with call parties.tools
Public booking flow — the state machine, animations, and URL/app-state sync.
tools
Trigger-based automations — reminders, follow-ups, webhooks — across the booking lifecycle.
tools
Team event types, round-robin assignment, collective bookings, host weights, and no-show calibration.
development
The pure `computeAvailableSlots` function — inputs, outputs, invariants, and debugging guide.