Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

intercom-automation对讲自动化

Agent Skill

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

总安装

19,967

周安装

671

GitHub Stars

89

下载量

6,897
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/claude-office-skills/skills --skill 'Intercom Automation'

简介

intercom-automation 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Intercom Automation

Comprehensive skill for automating Intercom customer communication and support workflows.

Core Workflows

1. Conversation Flow

CUSTOMER CONVERSATION FLOW:
┌─────────────────┐
│  User Message   │
│   (Inbound)     │
└────────┬────────┘
         ▼
┌─────────────────┐
│   Bot Triage    │
│  - Intent       │
│  - Route        │
└────────┬────────┘
         │
    ┌────┴────┐
    ▼         ▼
┌───────┐ ┌───────┐
│  Bot  │ │ Human │
│ Reply │ │ Agent │
└───┬───┘ └───┬───┘
    │         │
    └────┬────┘
         ▼
┌─────────────────┐
│   Resolution    │
│  - Close        │
│  - Follow-up    │
└─────────────────┘

2. Automation Rules

automations:
  - name: welcome_new_users
    trigger:
      event: user.created
      conditions:
        - signed_up_at: within_last_hour
    action:
      send_message:
        type: chat
        delay: 5_minutes
        message: |
          Hey {{first_name}}! 👋

          Welcome to {{company_name}}! I'm here to help you
          get started. What brings you here today?
        buttons:
          - "Explore features"
          - "I have a question"
          - "Just looking around"

  - name: trial_expiring
    trigger:
      event: user.attribute_changed
      attribute: trial_days_remaining
      value: 3
    action:
      send_message:
        type: email
        template: trial_expiring

  - name: feature_announcement
    trigger:
      segment: power_users
      event: feature_released
    action:
      send_message:
        type: in_app
        message: "🎉 New Feature: {{feature_name}}"

User Segmentation

Segment Definitions

segments:
  - name: trial_users
    filter:
      subscription_status: trial

  - name: power_users
    filter:
      sessions_count: "> 50"
      last_seen: "< 7 days"
      features_used: "> 5"

  - name: at_risk_users
    filter:
      subscription_status: active
      last_seen: "> 30 days"

  - name: enterprise_prospects
    filter:
      company_size: "> 100"
      plan: free

  - name: feature_requesters
    filter:
      tag: feature_request
      conversations_count: "> 0"

Dynamic Attributes

custom_attributes:
  - name: health_score
    type: number
    compute: |
      (sessions_last_30_days * 2) +
      (features_used * 3) +
      (team_members_active * 5)

  - name: lifecycle_stage
    type: string
    rules:
      - condition: signed_up_at < 7_days
        value: "onboarding"
      - condition: subscription_status == "trial"
        value: "trial"
      - condition: subscription_status == "active"
        value: "customer"
      - condition: subscription_status == "cancelled"
        value: "churned"

  - name: account_tier
    type: string
    source: company.plan

Messaging Campaigns

Onboarding Series

onboarding_campaign:
  name: "New User Onboarding"
  audience:
    segment: new_signups

  messages:
    - day: 0
      channel: in_app
      content: |
        Welcome to {{company}}! 🎉

        Let me show you around. Click below to take a
        quick 2-minute tour.
      cta: "Start Tour"

    - day: 1
      channel: email
      subject: "Quick tip: {{feature_1}}"
      content: |
        Hi {{first_name}},

        Did you know you can {{feature_1_benefit}}?

        Here's how: {{feature_1_tutorial_link}}

    - day: 3
      channel: in_app
      trigger:
        not_completed: "setup_wizard"
      content: |
        Hey {{first_name}}, I noticed you haven't
        finished setting up. Need any help?

    - day: 7
      channel: email
      subject: "How's it going?"
      content: |
        Hi {{first_name}},

        You've been using {{company}} for a week now.

        Any questions or feedback? Just reply to this email!

Product Tours

product_tours:
  - name: "Welcome Tour"
    trigger:
      event: first_login
    steps:
      - element: "#dashboard"
        title: "Your Dashboard"
        body: "This is where you'll see your key metrics"
        position: bottom

      - element: "#create-button"
        title: "Create New"
        body: "Click here to create your first project"
        position: left

      - element: "#help-menu"
        title: "Need Help?"
        body: "Find docs and contact support here"
        position: bottom

  - name: "Feature Tour: Reports"
    trigger:
      event: page_viewed
      url: "/reports"
      first_time: true
    steps:
      - element: "#date-picker"
        title: "Date Range"
        body: "Select your reporting period"

Support Workflows

Conversation Routing

routing_rules:
  - name: vip_priority
    conditions:
      - company.plan: enterprise
    actions:
      - set_priority: urgent
      - assign_team: enterprise_support
      - send_notification: slack_vip

  - name: billing_issues
    conditions:
      - message_contains: ["billing", "charge", "invoice", "refund"]
    actions:
      - add_tag: billing
      - assign_team: billing_support

  - name: technical_support
    conditions:
      - message_contains: ["error", "bug", "not working", "broken"]
    actions:
      - add_tag: technical
      - assign_team: tech_support
      - create_ticket: jira

Bot Responses

bot_responses:
  - intent: greeting
    patterns: ["hi", "hello", "hey"]
    response: |
      Hi there! 👋 How can I help you today?

  - intent: pricing
    patterns: ["pricing", "cost", "how much", "plans"]
    response: |
      Great question! Here's our pricing:

      • **Starter**: $29/mo
      • **Growth**: $79/mo
      • **Enterprise**: Custom

      Would you like me to connect you with sales?
    buttons:
      - "Yes, talk to sales"
      - "See full comparison"

  - intent: password_reset
    patterns: ["forgot password", "reset password", "can't login"]
    response: |
      No problem! You can reset your password here:
      {{password_reset_link}}

      The link will expire in 24 hours.
    auto_close: true

Analytics & Reporting

Conversation Metrics

SUPPORT METRICS - THIS WEEK
═══════════════════════════════════════

Conversations:
New:          234 (+12%)
Closed:       256 (+8%)
Open:         45

Response Times:
First Reply:  2.3 min (target: 5 min) ✓
Median:       8 min
Resolution:   2.4 hours

CSAT Score:   4.7/5 ⭐ (+0.2)

BY CHANNEL:
Chat      ████████████░░░░ 156
Email     ██████░░░░░░░░░░ 58
In-App    ████░░░░░░░░░░░░ 20

TOP TOPICS:
┌────────────────────┬───────┐
│ Topic              │ Count │
├────────────────────┼───────┤
│ Billing questions  │ 45    │
│ Feature requests   │ 38    │
│ Bug reports        │ 32    │
│ How-to questions   │ 28    │
└────────────────────┴───────┘

Engagement Dashboard

engagement_metrics:
  - name: message_open_rate
    formula: opened / sent * 100
    target: 40%

  - name: click_through_rate
    formula: clicked / opened * 100
    target: 10%

  - name: tour_completion_rate
    formula: completed / started * 100
    target: 60%

  - name: bot_resolution_rate
    formula: resolved_by_bot / total * 100
    target: 30%

Integration Workflows

CRM Sync

crm_integration:
  salesforce:
    sync_fields:
      - intercom: company.name
        salesforce: Account.Name
      - intercom: user.email
        salesforce: Contact.Email
      - intercom: custom.mrr
        salesforce: Account.MRR__c

    events:
      - trigger: conversation_closed
        action: log_activity
        type: "Support Interaction"

      - trigger: user.tag_added
        tag: "sales_qualified"
        action: create_lead

Slack Integration

slack_integration:
  notifications:
    - trigger: new_conversation
      channel: "#support-inbox"
      conditions:
        - priority: urgent
      message: "🚨 Urgent: {{user.name}} needs help"

    - trigger: conversation_assigned
      notify: assignee_dm
      message: "New conversation assigned to you"

  commands:
    /intercom:
      - lookup_user
      - send_message
      - add_tag

API Examples

Create or Update User

// Create/Update User
const user = await intercom.users.create({
  user_id: "12345",
  email: "user@example.com",
  name: "John Doe",
  signed_up_at: Math.floor(Date.now() / 1000),
  custom_attributes: {
    plan: "pro",
    team_size: 10,
    onboarding_complete: true
  }
});

// Send Message
await intercom.messages.create({
  message_type: "inapp",
  body: "Hey! New feature alert 🎉",
  from: {
    type: "admin",
    id: "admin_id"
  },
  to: {
    type: "user",
    user_id: "12345"
  }
});

// Search Conversations
const conversations = await intercom.conversations.search({
  query: {
    field: "state",
    operator: "=",
    value: "open"
  }
});

Best Practices

  1. Personalize Messages: Use user attributes
  2. Time Appropriately: Consider user timezone
  3. Don't Over-Message: Respect frequency limits
  4. Bot + Human: Know when to escalate
  5. Track Everything: Measure message effectiveness
  6. Segment Thoughtfully: Target the right users
  7. A/B Test: Optimize message content
  8. Quick Resolution: Minimize response time

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.36%
按下载量换算2,163

Claude

30.45%
按下载量换算2,100

Cursor

20.19%
按下载量换算1,393

Gemini CLI

9.98%
按下载量换算688

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills