# Send MeetGeek 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": "meetgeek",
    "name": "MeetGeek",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nexty5870/meetgeek",
    "canonicalUrl": "https://clawhub.ai/nexty5870/meetgeek",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/meetgeek",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meetgeek",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "meetgeek.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "meetgeek",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T11:36:46.670Z",
      "expiresAt": "2026-05-12T11:36:46.670Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meetgeek",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meetgeek",
        "contentDisposition": "attachment; filename=\"meetgeek-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "meetgeek"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/meetgeek"
    },
    "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/meetgeek",
    "downloadUrl": "https://openagent3.xyz/downloads/meetgeek",
    "agentUrl": "https://openagent3.xyz/skills/meetgeek/agent",
    "manifestUrl": "https://openagent3.xyz/skills/meetgeek/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/meetgeek/agent.md"
  }
}
```
## Documentation

### MeetGeek Skill

Retrieve meeting intelligence from MeetGeek - summaries, transcripts, action items, and search across calls.

npm: https://www.npmjs.com/package/meetgeek-cli
GitHub: https://github.com/nexty5870/meetgeek-cli

### Installation

npm install -g meetgeek-cli

### Setup

meetgeek auth   # Interactive API key setup

Get your API key from: MeetGeek → Integrations → Public API Integration

### List recent meetings

meetgeek list
meetgeek list --limit 20

### Get meeting details

meetgeek show <meeting-id>

### Get AI summary (with action items)

meetgeek summary <meeting-id>

### Get full transcript

meetgeek transcript <meeting-id>
meetgeek transcript <meeting-id> -o /tmp/call.txt  # save to file

### Get highlights

meetgeek highlights <meeting-id>

### Search meetings

# Search in a specific meeting
meetgeek ask "topic" -m <meeting-id>

# Search across all recent meetings
meetgeek ask "what did we discuss about the budget"

### Auth management

meetgeek auth --show   # check API key status
meetgeek auth          # interactive setup
meetgeek auth --clear  # remove saved key

### Find a specific call

# List meetings to find the one you want
meetgeek list --limit 10

# Then use the meeting ID (first 8 chars shown, use full ID)
meetgeek summary 81a6ab96-19e7-44f5-bd2b-594a91d2e44b

### Get action items from a call

meetgeek summary <meeting-id>
# Look for the "✅ Action Items" section

### Find what was discussed about a topic

# Search across all meetings
meetgeek ask "pricing discussion"

# Or in a specific meeting
meetgeek ask "timeline" -m <meeting-id>

### Export transcript for reference

meetgeek transcript <meeting-id> -o ~/call-transcript.txt

### Notes

Meeting IDs are UUIDs - the list shows first 8 chars
Transcripts include speaker names and timestamps
Summaries are AI-generated with key points + action items
Search is keyword-based across transcript text

### Config

API key stored in: ~/.config/meetgeek/config.json
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nexty5870
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T11:36:46.670Z
- Expires at: 2026-05-12T11:36:46.670Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/meetgeek)
- [Send to Agent page](https://openagent3.xyz/skills/meetgeek/agent)
- [JSON manifest](https://openagent3.xyz/skills/meetgeek/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/meetgeek/agent.md)
- [Download page](https://openagent3.xyz/downloads/meetgeek)