duyeng-intercom-conversations
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install clawskills:clawskills~duyeng-intercom-conversationscURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/clawskills%3Aclawskills~duyeng-intercom-conversations/file -o duyeng-intercom-conversations.md# 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`