Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

migrate-from-intercom从对讲机迁移

Agent Skill

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

总安装

1,139

周安装

47

GitHub Stars

公开资料未说明

下载量

372
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gleapsdk/agent-skills --skill migrate-from-intercom

简介

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

  • 适用于需要根据关键词或任务场景进行信息检索的场景,支持多宿主环境。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认权限和维护状态。
  • 建议结合原始 README 核验用法,注意是否会触发联网或文件读写操作。
  • migrate-from-intercom 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Migrate from Intercom to Gleap

Guides users through replacing Intercom with Gleap in their codebase. Covers client-side SDK swap and server-side API migration.

Detect Intercom

Search the codebase for Intercom integration. Use Grep to find:

Package references

  • package.json: @intercom/messenger-js-sdk, intercom-client, @intercom/intercom-react-native
  • Podfile: pod 'Intercom'
  • build.gradle: io.intercom.android:intercom-sdk
  • pubspec.yaml: intercom_flutter
  • composer.json: intercom/intercom-php
  • Gemfile: intercom-rails, intercom-ruby

Code patterns (client-side JavaScript — used by ALL web frameworks)

  • JavaScript: Intercom(, window.intercomSettings, widget.intercom.io, @intercom/messenger-js-sdk
  • iOS: import Intercom, Intercom.setApiKey, Intercom.loginUser
  • Android: import com.intercom, Intercom.initialize, Intercom.client()
  • React Native: import Intercom from '@intercom/intercom-react-native', IntercomModule
  • Flutter: import 'package:intercom_flutter', Intercom.instance
  • Server: intercom-client, intercom-php, intercom-ruby, intercom-go, intercom-java, Intercom.Dotnet

Report all findings to the user before proceeding.

API Key Resolution

Before asking the user for their Gleap API key, check these locations in order:

  1. User provided it in the conversation — use it directly
  2. .env file in the project root — look for GLEAP_API_KEY=...
  3. Environment variable — check if GLEAP_API_KEY is set via echo $GLEAP_API_KEY
  4. Not found — ask the user (available at https://app.gleap.io > Project Settings > Security > API Key)

When a key is found or provided, offer to save it to .env (and add .env to .gitignore if needed).

Workflow

  1. Detect Intercom using the patterns above. Report which platforms and files are affected.
  2. Confirm scope with the user: which parts to migrate (client SDK, server API, or both).
  3. Resolve Gleap API key using the API Key Resolution steps above.
  4. Read the mapping file for the detected platform from this skill's directory.
  5. Remove Intercom SDK: Uninstall packages, remove script tags, delete imports and configuration.
  6. Install Gleap SDK: Follow the installation steps from the mapping file (or reference the gleap-sdk-setup skill if installed).
  7. Replace API calls: Use the mapping tables to convert every Intercom call to its Gleap equivalent. Use the resolved API key in initialization code.
  8. Migrate server-side code if applicable: Replace Intercom REST API calls with Gleap REST API calls. See mapping-server-api.md.
  9. Clean up: Remove Intercom-specific config (API keys, app IDs, intercomSettings, push notification handlers).
  10. Verify: Build and run the project. Search for any remaining intercom references.

Mapping Files

Read the appropriate file based on detected platform:

  • JavaScript / Web: mapping-javascript.md — also applies to all server-side web frameworks (Laravel, Django, Rails, ASP.NET, Spring Boot, Phoenix, etc.) since they all use the JavaScript SDK on the client side
  • iOS (Swift / Objective-C): mapping-ios.md
  • Android (Kotlin / Java): mapping-android.md
  • React Native: mapping-react-native.md
  • Flutter: mapping-flutter.md
  • Server-side REST API: mapping-server-api.md

For projects using multiple platforms, read all relevant files. Common combinations:

  • Web framework + server SDK (e.g., Laravel with intercom-php, Rails with intercom-ruby): Use mapping-javascript.md for client-side and mapping-server-api.md for server-side
  • React Native + server API: Use mapping-react-native.md and mapping-server-api.md

Important Notes

  • Intercom uses app_id + api_key (separate for iOS/Android). Gleap uses a single API key per project from https://app.gleap.io
  • Intercom's boot() combines initialization + user identification. In Gleap, these are separate: initialize() then identify()
  • Intercom's shutdown() = Gleap's clearIdentity()
  • Intercom's update() = Gleap's updateContact()
  • Intercom custom user attributes map to Gleap's customData object (max 35 keys, primitives only)
  • Intercom company data maps to Gleap's companyId + companyName fields in identify
  • Features without direct Gleap equivalent: product tours (startTour), tickets view (showTicket), news items (showNews). Note these to the user as requiring alternative approaches
  • Server-side: Intercom REST API uses Bearer token auth. Gleap uses Api-Token header (legacy) or Bearer + Project headers (v3 API)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.44%
按下载量换算139

Claude

30.92%
按下载量换算115

Cursor

19.74%
按下载量换算73

Gemini CLI

9.17%
按下载量换算34

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills