ClawSkills logoClawSkills

MeetGeek

从 CLI 查询 MeetGeek 会议智能 - 列出会议、获取 AI 摘要、文字记录、行动项目,并使用自然语言搜索所有通话

介绍

# MeetGeek Skill

从 MeetGeek 获取会议智能信息——包括摘要、文字记录、待办事项,并跨通话进行搜索。

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

## 安装

```bash npm install -g meetgeek-cli ```

## 设置

```bash meetgeek auth # Interactive API key setup ```

在此处获取您的 API 密钥:MeetGeek → Integrations → Public API Integration

## 命令

### 列出最近的会议 ```bash meetgeek list meetgeek list --limit 20 ```

### 获取会议详情 ```bash meetgeek show <meeting-id> ```

### 获取 AI 摘要(含待办事项) ```bash meetgeek summary <meeting-id> ```

### 获取完整文字记录 ```bash meetgeek transcript <meeting-id> meetgeek transcript <meeting-id> -o /tmp/call.txt # save to file ```

### 获取高亮片段 ```bash meetgeek highlights <meeting-id> ```

### 搜索会议 ```bash # 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" ```

### 身份验证管理 ```bash meetgeek auth --show # check API key status meetgeek auth # interactive setup meetgeek auth --clear # remove saved key ```

## 使用模式

### 查找特定通话 ```bash # 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 ```

### 获取通话中的待办事项 ```bash meetgeek summary <meeting-id> # Look for the "✅ Action Items" section ```

### 查找关于某个主题的讨论内容 ```bash # Search across all meetings meetgeek ask "pricing discussion"

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

### 导出文字记录以供参考 ```bash meetgeek transcript <meeting-id> -o ~/call-transcript.txt ```

## 注意事项

- 会议 ID 为 UUID——列表中仅显示前 8 个字符 - 文字记录包含发言人姓名和时间戳 - 摘要由 AI 生成,包含关键点和待办事项 - 搜索基于文字记录文本中的关键词

## 配置

API 密钥存储位置:`~/.config/meetgeek/config.json`

更多产品