Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

intercom-automation对讲自动化

Agent Skill

intercom-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

605

周安装

26

GitHub Stars

52

下载量

212
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:intercom-automation(对讲自动化)
来源仓库:https://github.com/aaaaqwq/claude-code-skills
仓库路径:skills/intercom-automation
安装命令:
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill intercom-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill intercom-automation

简介

intercom-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 它通过 Composio 的 Intercom toolkit 实现自动化操作,支持对话管理、客户数据查询和任务触发。
  • 使用时需先配置 Rube MCP 并确保 Intercom 连接为活跃状态,再调用相关工具完成工作流。
  • 安装命令为 npx skills add https://github.com/aaaaqwq/claude-code-skills --skill intercom-automation。
  • 注意确认权限范围、维护状态及是否涉及联网或命令执行,避免误操作敏感数据。

SKILL.md

Intercom Automation via Rube MCP

Automate Intercom operations through Composio's Intercom toolkit via Rube MCP.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Intercom connection via RUBE_MANAGE_CONNECTIONS with toolkit intercom
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit intercom
  3. If connection is not ACTIVE, follow the returned auth link to complete Intercom OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Manage Conversations

When to use: User wants to create, list, search, or manage support conversations

Tool sequence:

  1. INTERCOM_LIST_ALL_ADMINS - Get admin IDs for assignment [Prerequisite]
  2. INTERCOM_LIST_CONVERSATIONS - List all conversations [Optional]
  3. INTERCOM_SEARCH_CONVERSATIONS - Search with filters [Optional]
  4. INTERCOM_GET_CONVERSATION - Get conversation details [Optional]
  5. INTERCOM_CREATE_CONVERSATION - Create a new conversation [Optional]

Key parameters:

  • from: Object with type ('user'/'lead') and id for conversation creator
  • body: Message body (HTML supported)
  • id: Conversation ID for retrieval
  • query: Search query object with field, operator, value

Pitfalls:

  • CREATE_CONVERSATION requires a contact (user/lead) as the from field, not an admin
  • Conversation bodies support HTML; plain text is auto-wrapped in <p> tags
  • Search query uses structured filter objects, not free-text search
  • Conversation IDs are numeric strings

2. Reply and Manage Conversation State

When to use: User wants to reply to, close, reopen, or assign conversations

Tool sequence:

  1. INTERCOM_GET_CONVERSATION - Get current state [Prerequisite]
  2. INTERCOM_REPLY_TO_CONVERSATION - Add a reply [Optional]
  3. INTERCOM_ASSIGN_CONVERSATION - Assign to admin/team [Optional]
  4. INTERCOM_CLOSE_CONVERSATION - Close conversation [Optional]
  5. INTERCOM_REOPEN_CONVERSATION - Reopen closed conversation [Optional]

Key parameters:

  • conversation_id / id: Conversation ID
  • body: Reply message body (HTML supported)
  • type: Reply type ('admin' or 'user')
  • admin_id: Admin ID for replies from admin, assignment, and close/reopen
  • assignee_id: Admin or team ID for assignment
  • message_type: 'comment' (default) or 'note' (internal)

Pitfalls:

  • admin_id is REQUIRED for admin replies, close, reopen, and assignment operations
  • Always fetch admin IDs first with LIST_ALL_ADMINS or IDENTIFY_AN_ADMIN
  • Duplicate sends can occur on retry; implement idempotency checks
  • Internal notes use message_type: 'note'; visible only to workspace members
  • Closing requires an admin_id and optional body message

3. Manage Contacts

When to use: User wants to search, view, or manage contacts (users and leads)

Tool sequence:

  1. INTERCOM_SEARCH_CONTACTS - Search contacts with filters [Required]
  2. INTERCOM_GET_A_CONTACT - Get specific contact [Optional]
  3. INTERCOM_SHOW_CONTACT_BY_EXTERNAL_ID - Look up by external ID [Optional]
  4. INTERCOM_LIST_CONTACTS - List all contacts [Optional]
  5. INTERCOM_LIST_TAGS_ATTACHED_TO_A_CONTACT - Get contact tags [Optional]
  6. INTERCOM_LIST_ATTACHED_SEGMENTS_FOR_CONTACT - Get contact segments [Optional]
  7. INTERCOM_DETACH_A_CONTACT - Remove contact from company [Optional]

Key parameters:

  • contact_id: Contact ID for retrieval
  • external_id: External system ID for lookup
  • query: Search filter object with field, operator, value
  • pagination: Object with per_page and starting_after cursor

Pitfalls:

  • SEARCH_CONTACTS uses structured query filters, not free-text; format: {field, operator, value}
  • Supported operators: =, !=, >, <, ~ (contains), !~ (not contains), IN, NIN
  • Contact types are 'user' (identified) or 'lead' (anonymous)
  • LIST_CONTACTS returns paginated results; use starting_after cursor for pagination
  • External IDs are case-sensitive

4. Manage Admins and Teams

When to use: User wants to list workspace admins or identify specific admins

Tool sequence:

  1. INTERCOM_LIST_ALL_ADMINS - List all admins and teams [Required]
  2. INTERCOM_IDENTIFY_AN_ADMIN - Get specific admin details [Optional]

Key parameters:

  • admin_id: Admin ID for identification

Pitfalls:

  • LIST_ALL_ADMINS returns both admins and teams
  • Admin IDs are required for conversation replies, assignment, close, and reopen
  • Teams appear in the admins list with type: 'team'

5. View Segments and Counts

When to use: User wants to view segments or get aggregate counts

Tool sequence:

  1. INTERCOM_LIST_SEGMENTS - List all segments [Optional]
  2. INTERCOM_LIST_ATTACHED_SEGMENTS_FOR_CONTACT - Segments for a contact [Optional]
  3. INTERCOM_LIST_ATTACHED_SEGMENTS_FOR_COMPANIES - Segments for a company [Optional]
  4. INTERCOM_GET_COUNTS - Get aggregate counts [Optional]

Key parameters:

  • contact_id: Contact ID for segment lookup
  • company_id: Company ID for segment lookup
  • type: Count type ('conversation', 'company', 'user', 'tag', 'segment')
  • count: Sub-count type

Pitfalls:

  • GET_COUNTS returns approximate counts, not exact numbers
  • Segment membership is computed; changes may not reflect immediately

6. Manage Companies

When to use: User wants to list companies or manage company-contact relationships

Tool sequence:

  1. INTERCOM_LIST_ALL_COMPANIES - List all companies [Required]
  2. INTERCOM_LIST_ATTACHED_SEGMENTS_FOR_COMPANIES - Get company segments [Optional]
  3. INTERCOM_DETACH_A_CONTACT - Remove contact from company [Optional]

Key parameters:

  • company_id: Company ID
  • contact_id: Contact ID for detachment
  • page: Page number for pagination
  • per_page: Results per page

Pitfalls:

  • Company-contact relationships are managed through contact endpoints
  • DETACH_A_CONTACT removes the contact-company association, not the contact itself

Common Patterns

Search Query Filters

Single filter:

{
  "field": "email",
  "operator": "=",
  "value": "user@example.com"
}

Multiple filters (AND):

{
  "operator": "AND",
  "value": [
    {"field": "role", "operator": "=", "value": "user"},
    {"field": "created_at", "operator": ">", "value": 1672531200}
  ]
}

Supported fields for contacts: email, name, role, created_at, updated_at, signed_up_at, last_seen_at, external_id

Supported fields for conversations: created_at, updated_at, source.type, state, open, read

Pagination

  • Most list endpoints use cursor-based pagination
  • Check response for pages.next with starting_after cursor
  • Pass cursor in pagination.starting_after for next page
  • Continue until pages.next is null

Admin ID Resolution

1. Call INTERCOM_LIST_ALL_ADMINS to get all admins
2. Find the desired admin by name or email
3. Use admin.id for replies, assignments, and state changes

Known Pitfalls

Admin ID Requirement:

  • Admin ID is required for: reply (as admin), assign, close, reopen
  • Always resolve admin IDs first with LIST_ALL_ADMINS

HTML Content:

  • Conversation bodies are HTML
  • Plain text is auto-wrapped in paragraph tags
  • Sanitize HTML input to prevent rendering issues

Idempotency:

  • Replies and conversation creation are not idempotent
  • Duplicate sends can occur on retry or timeout
  • Track message IDs to prevent duplicates

Rate Limits:

  • Default: ~1000 requests per minute (varies by plan)
  • 429 responses include rate limit headers
  • Implement exponential backoff for retries

Quick Reference

TaskTool SlugKey Params
List conversationsINTERCOM_LIST_CONVERSATIONS(pagination)
Search conversationsINTERCOM_SEARCH_CONVERSATIONSquery
Get conversationINTERCOM_GET_CONVERSATIONid
Create conversationINTERCOM_CREATE_CONVERSATIONfrom, body
Reply to conversationINTERCOM_REPLY_TO_CONVERSATIONconversation_id, body, admin_id
Assign conversationINTERCOM_ASSIGN_CONVERSATIONconversation_id, admin_id, assignee_id
Close conversationINTERCOM_CLOSE_CONVERSATIONid, admin_id
Reopen conversationINTERCOM_REOPEN_CONVERSATIONid, admin_id
Search contactsINTERCOM_SEARCH_CONTACTSquery
Get contactINTERCOM_GET_A_CONTACTcontact_id
Contact by external IDINTERCOM_SHOW_CONTACT_BY_EXTERNAL_IDexternal_id
List contactsINTERCOM_LIST_CONTACTS(pagination)
Contact tagsINTERCOM_LIST_TAGS_ATTACHED_TO_A_CONTACTcontact_id
Contact segmentsINTERCOM_LIST_ATTACHED_SEGMENTS_FOR_CONTACTcontact_id
Detach contactINTERCOM_DETACH_A_CONTACTcontact_id, company_id
List adminsINTERCOM_LIST_ALL_ADMINS(none)
Identify adminINTERCOM_IDENTIFY_AN_ADMINadmin_id
List segmentsINTERCOM_LIST_SEGMENTS(none)
Company segmentsINTERCOM_LIST_ATTACHED_SEGMENTS_FOR_COMPANIEScompany_id
Get countsINTERCOM_GET_COUNTStype, count
List companiesINTERCOM_LIST_ALL_COMPANIESpage, per_page

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.01%
按下载量换算78

Claude

29.73%
按下载量换算63

Cursor

18.17%
按下载量换算39

Gemini CLI

9.04%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills