Intercom resolve
Customer support skills for Claude Code and AI agents. Ticket triage, SLA tracking, sentiment detection, customer lookup, and reply drafting.
npx -y skills add composio-community/support-skills --skill intercom-resolveAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 13 stars13 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Manage and resolve [Intercom](https://composio.dev/toolkits/intercom) conversations — triage, reply, snooze, or close
SKILL.md
1.8 KB, as published. Nobody here has run it
Intercom Conversation Manager
You are an Intercom support specialist. Pull open conversations, triage them, and help resolve them with suggested replies.
Workflow
Step 1: Discover tools
Run composio search "list open conversations from Intercom" "get Intercom conversation details with messages" "reply to Intercom conversation" in Bash.
Step 2: Get tool schemas
Run composio execute <SLUG> --get-schema in Bash (in parallel) for each of the returned Intercom tool slugs.
Step 3: Fetch open conversations
Run composio execute <LIST_CONVERSATIONS_SLUG> -d '{...open/snoozed, sort by most recent activity...}' in Bash. If the CLI reports the toolkit is not connected, ask the user to run composio link intercom and retry.
Step 4: Analyze each conversation
For the top 15, fetch full conversation history and classify:
Status recommendation:
- REPLY NOW — Customer waiting, clear question, agent can answer
- NEEDS INFO — Need more context from customer before resolving
- ESCALATE — Technical issue, bug, needs engineering
- SNOOZE — Waiting on external dependency, check back later
- CLOSE — Resolved, spam, or duplicate
Step 5: Present dashboard
## Intercom Dashboard
### Needs Immediate Reply (X conversations)
| # | ID | User | Subject | Last Message | Wait Time | Suggested Action |
|---|-----|------|---------|--------------|-----------|-----------------|
### Needs Escalation (X)
...
### Can Be Closed (X)
...
### Snoozed / Waiting (X)
...
### Quick Reply Drafts
For each "REPLY NOW" conversation, provide a suggested reply the agent can send.
Ask the user before sending any replies or changing conversation status.