# Send Gong to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gong",
    "name": "Gong",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jdrhyne/gong",
    "canonicalUrl": "https://clawhub.ai/jdrhyne/gong",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gong",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gong",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/gong.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gong"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gong",
    "downloadUrl": "https://openagent3.xyz/downloads/gong",
    "agentUrl": "https://openagent3.xyz/skills/gong/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gong/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gong/agent.md"
  }
}
```
## Documentation

### Gong

Access Gong conversation intelligence - calls, transcripts, users, and analytics.

### Setup

Store credentials in ~/.config/gong/credentials.json:

{
  "base_url": "https://us-XXXXX.api.gong.io",
  "access_key": "YOUR_ACCESS_KEY",
  "secret_key": "YOUR_SECRET_KEY"
}

Get credentials from Gong: Settings → Ecosystem → API → Create API Key.

### Authentication

GONG_CREDS=~/.config/gong/credentials.json
GONG_BASE=$(jq -r '.base_url' $GONG_CREDS)
GONG_AUTH=$(jq -r '"\\(.access_key):\\(.secret_key)"' $GONG_CREDS | base64)

curl -s "$GONG_BASE/v2/endpoint" \\
  -H "Authorization: Basic $GONG_AUTH" \\
  -H "Content-Type: application/json"

### List Users

curl -s "$GONG_BASE/v2/users" -H "Authorization: Basic $GONG_AUTH" | \\
  jq '[.users[] | {id, email: .emailAddress, name: "\\(.firstName) \\(.lastName)"}]'

### List Calls (with date range)

curl -s -X POST "$GONG_BASE/v2/calls/extensive" \\
  -H "Authorization: Basic $GONG_AUTH" \\
  -H "Content-Type: application/json" \\
  -d '{
    "filter": {
      "fromDateTime": "2025-01-01T00:00:00Z",
      "toDateTime": "2025-01-31T23:59:59Z"
    },
    "contentSelector": {}
  }' | jq '{
    total: .records.totalRecords,
    calls: [.calls[] | {
      id: .metaData.id,
      title: .metaData.title,
      started: .metaData.started,
      duration_min: ((.metaData.duration // 0) / 60 | floor),
      url: .metaData.url
    }]
  }'

### Get Call Transcript

curl -s -X POST "$GONG_BASE/v2/calls/transcript" \\
  -H "Authorization: Basic $GONG_AUTH" \\
  -H "Content-Type: application/json" \\
  -d '{"filter": {"callIds": ["CALL_ID"]}}' | \\
  jq '.callTranscripts[0].transcript[] | "\\(.speakerName // "Speaker"): \\(.sentences[].text)"' -r

### Get Call Details

curl -s -X POST "$GONG_BASE/v2/calls/extensive" \\
  -H "Authorization: Basic $GONG_AUTH" \\
  -H "Content-Type: application/json" \\
  -d '{
    "filter": {"callIds": ["CALL_ID"]},
    "contentSelector": {"exposedFields": {"content": true, "parties": true}}
  }' | jq '.calls[0]'

### Activity Stats

curl -s -X POST "$GONG_BASE/v2/stats/activity/aggregate" \\
  -H "Authorization: Basic $GONG_AUTH" \\
  -H "Content-Type: application/json" \\
  -d '{
    "filter": {
      "fromDateTime": "2025-01-01T00:00:00Z",
      "toDateTime": "2025-01-31T23:59:59Z"
    }
  }'

### Endpoints Reference

EndpointMethodUse/v2/usersGETList users/v2/calls/extensivePOSTList/filter calls/v2/calls/transcriptPOSTGet transcripts/v2/stats/activity/aggregatePOSTActivity stats/v2/meetingsGETScheduled meetings

### Pagination

Responses include cursor for pagination:

{"records": {"totalRecords": 233, "cursor": "eyJ..."}}

Include cursor in next request: {"cursor": "eyJ..."}

### Date Helpers

# Last 7 days
FROM=$(date -v-7d +%Y-%m-%dT00:00:00Z 2>/dev/null || date -d "7 days ago" +%Y-%m-%dT00:00:00Z)
TO=$(date +%Y-%m-%dT23:59:59Z)

### Notes

Rate limit: ~3 requests/second
Call IDs are large integers as strings
Transcripts may take time to process after call ends
Date format: ISO 8601 (e.g., 2025-01-15T00:00:00Z)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jdrhyne
- Version: 1.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gong)
- [Send to Agent page](https://openagent3.xyz/skills/gong/agent)
- [JSON manifest](https://openagent3.xyz/skills/gong/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gong/agent.md)
- [Download page](https://openagent3.xyz/downloads/gong)