Intercom core workflow a
Skill jeremylongshore/claude-code-plugins-plus-skills/skills/.curated/intercom-core-workflow-a
425 plugins, 2,810 skills, 200 agents for Claude Code. Open-source marketplace at tonsofskills.com with the ccpi CLI package manager.
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill intercom-core-workflow-aAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
'Manage Intercom contacts: create, search, update, merge leads into users.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
5.9 KB, as published. Nobody here has run it
Intercom Contacts & Contact Management
Overview
Primary workflow for managing Intercom contacts. Covers creating users and leads, searching with filters, updating custom attributes, merging leads into users, and listing segments. This SKILL.md gives you the high-level workflow and the first example; drill into references/implementation.md for the full step-by-step code and references/examples.md for end-to-end flows.
Prerequisites
- Completed
intercom-install-authsetup - Understanding of Intercom contact model (users vs leads)
- Valid API credentials with contacts read/write scope
Instructions
The contact workflow is six operations against the intercom-client SDK. Instantiate the client once, then call the operation you need:
import { IntercomClient } from "intercom-client";
const client = new IntercomClient({
token: process.env.INTERCOM_ACCESS_TOKEN!,
});
// Create an identified user (has external_id)
const user = await client.contacts.create({
role: "user",
externalId: "customer-9001",
email: "[email protected]",
name: "Alice Johnson",
customAttributes: { plan: "enterprise" },
});
The six operations, in the order you typically reach for them:
- Create contacts —
contacts.createwithrole: "user"(identified, needsexternalId) orrole: "lead"(anonymous). - Search contacts —
contacts.searchwith a single filter or a compoundAND/ORquery, plus pagination and sort. - Update a contact —
contacts.updatebycontactIdto change name or custom attributes. - Merge a lead into a user —
contacts.merge({ from: leadId, into: userId }); the lead's conversations, events, and tags transfer to the user. - List segments —
contacts.listSegments({ contactId })to see which segments a contact belongs to. - Paginate all contacts —
contacts.listwithstartingAftercursor to stream the full contact base.
Full code for every step, including compound-search filters and the async-generator pagination helper, is in references/implementation.md.
Output
Each operation returns a typed response from the SDK:
create/update— a singlecontactobject:{ type: "contact", id, role, email, name, customAttributes, created_at, ... }. Theidis the Intercom-generated handle you pass to later calls.search—{ data: Contact[], totalCount, pages }. Iteratedata; readtotalCountfor the match count; usepages.next.startingAfterto page.merge— the survivingusercontact (theintotarget); thefromlead is deleted.listSegments—{ data: Segment[] }, each{ id, name }.list— one page{ data: Contact[], pages }; followpages.next.startingAfteruntil it is absent.
Contact Data Model
| Field | Type | Description |
|---|---|---|
id | string | Intercom-generated unique ID |
external_id | string | Your system's user ID |
role | "user" or "lead" | Contact type |
email | string | Email address |
name | string | Full name |
phone | string | Phone number |
custom_attributes | object | Custom key-value data |
created_at | number | Unix timestamp |
last_seen_at | number | Last activity timestamp |
signed_up_at | number | Signup timestamp |
tags | object | Applied tags list |
companies | object | Associated companies |
location | object | GeoIP location data |
Error Handling
| Error | HTTP Code | Cause | Solution |
|---|---|---|---|
not_found | 404 | Contact ID doesn't exist | Verify with search first |
conflict | 409 | Duplicate external_id or email | Search before creating |
parameter_invalid | 422 | Bad field value or missing required field | Check field types and names |
rate_limit_exceeded | 429 | Over 10,000 req/min (private apps) | Add backoff, batch operations |
merge_not_possible | 400 | Merging user into lead (reversed) | from must be lead, into must be user |
Examples
Quick create-then-search flow:
const user = await client.contacts.create({
role: "user",
externalId: "customer-9001",
email: "[email protected]",
name: "Alice Johnson",
});
const found = await client.contacts.search({
query: { field: "email", operator: "=", value: "[email protected]" },
});
console.log(`Found ${found.totalCount} match(es)`);
Three fuller worked flows — lead-to-user lifecycle, segmenting recent enterprise signups, and streaming every contact for an export — are in references/examples.md.
Resources
Next Steps
For conversation management (creating, replying to, and searching conversations), see the companion skill intercom-core-workflow-b, which builds on the contact IDs produced by this workflow.