TopRank Skills

Home / Claw Skills / Search / Intercom Conversations
Official OpenClaw rules 36%

Intercom Conversations

Clawhub Skill: Intercom Conversations Read

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Intercom Conversations 技能。 若已安装,则直接安装 Intercom Conversations 技能。

Overview

Skill Key
duyeng/intercom-conversations
Author
duyeng
Source Repo
openclaw/skills
Version
-
Source Path
skills/duyeng/intercom-conversations
Latest Commit SHA
66eabe39c461850928b239154c8a6ea44788aa20

Extracted Content

SKILL.md excerpt

# Clawhub Skill: Intercom Conversations (Read)

Clawhub loads this Node module and calls `default(input)`.

## Required env

- `INTERCOM_ACCESS_TOKEN` (required)

## Install

```bash
npm install
```

## Inputs

### List
```json
{ "action": "conversations.list", "per_page": 50, "starting_after": "cursor" }
```

### Find
```json
{ "action": "conversations.find", "conversation_id": "123", "display_as": "plaintext" }
```

### Search
```json
{ "action": "conversations.search", "query": { "operator": "AND", "value": [] }, "pagination": { "per_page": 50 } }
```

## Outputs

All successful responses include `ok: true` and echo the `action`.

- list/search: `{ ok, action, conversations, next_starting_after }`
- find: `{ ok, action, conversation }`

Errors: `{ ok: false, error, supported_actions? }`

## Contracts / metadata

- OpenAPI spec: `openapi.yaml`
- Skill registry metadata: `clawhub.skill.json`

Related Claw Skills