Intercom Incident Runbook
Overview
Rapid incident response procedures for Intercom integration failures. The runbook
takes you from alert to resolution in four phases — triage, decision, mitigation,
and postmortem — with HTTP-status-code-driven branching so you always know whether
the fault is yours or Intercom's. High-level workflow lives here; the full
copy-paste scripts and templates live in references/.
Prerequisites
INTERCOM_ACCESS_TOKEN exported in your shell (a workspace admin token).
curl and jq installed for API + status-page probing.
kubectl access to the deployment running your Intercom integration (for restarts).
- Access to your secret manager (e.g. AWS Secrets Manager) to rotate a compromised token.
- Developer Hub access for the Intercom app, or a path to escalate to a workspace admin.
Severity Levels
| Level |
Definition |
Response Time |
Example |
| P1 |
All Intercom API calls failing |
< 15 min |
401 auth failures, API unreachable |
| P2 |
Degraded service |
< 1 hour |
High latency, rate limited (429) |
| P3 |
Partial impact |
< 4 hours |
Webhook delays, search timeouts |
| P4 |
No user impact |
Next business day |
Monitoring gaps, stale cache |
Instructions
Work the phases in order. Each phase links to the full reference when you need depth.
Assign severity. Match the symptom to the table above; this sets your clock
and who you page.
Triage — is it you or Intercom? Run the first probe to confirm reachability:
curl -s -o /dev/null -w "%{http_code}" \
-H "Authorization: Bearer $INTERCOM_ACCESS_TOKEN" \
https://api.intercom.io/me
Then check status.intercom.com for a platform incident and read the rate-limit
headers. The full 5-step diagnostic script and the branch-by-branch decision tree
are in references/triage.md.
Decide. If Intercom reports an incident, it is their problem — enable graceful
degradation and monitor. If not, it is your integration; branch on the status code:
401 → rotate token, 403 → add OAuth scope, 429 → queue/backoff, 5xx → retry with backoff.
Mitigate by error type. Apply the matching remediation — token rotation for 401,
volume reduction for 429, cached-data fallback for 5xx. Full commands (including the
aws secretsmanager rotation and the kubectl rollout restart) plus the TypeScript
graceful-degradation pattern are in references/mitigation.md.
Communicate. Post the internal Slack status update on a fixed cadence using the
template in references/templates.md.
Write the postmortem. After resolution, fill in the postmortem template
(timeline, root cause, impact counts, action items) from
references/templates.md. Always record Intercom
request_ids captured during the incident — Intercom support needs them.
Output
Working through the runbook produces:
- A severity classification (P1–P4) with a bounded response clock.
- A fault verdict — Intercom-side platform incident vs. your integration — backed by
the triage script's HTTP codes, status-page state, and rate-limit headers.
- A mitigation applied for the specific error class (rotated token, paused sync jobs,
enabled cache fallback, or retry/backoff).
- A communication trail — timestamped Slack updates on cadence.
- A completed postmortem with timeline, root cause, impact counts, captured Intercom
request_ids, and owned action items.
Examples
Fast triage during a suspected outage — confirm reachability, then check the platform:
curl -s -o /dev/null -w "API=%{http_code}\n" \
-H "Authorization: Bearer $INTERCOM_ACCESS_TOKEN" https://api.intercom.io/me
curl -s https://status.intercom.com/api/v2/status.json | jq -r '.status.description'
A 401 with a green status page means your token, not Intercom — jump to the 401
mitigation. The full 5-step diagnostic, the decision tree, per-status mitigation
commands, and the Slack/postmortem templates are all in references/:
- references/triage.md — full triage script + decision tree
- references/mitigation.md — 401 / 429 / 5xx remediation + graceful degradation
- references/templates.md — Slack update + postmortem templates
Error Handling
| Issue |
Cause |
Solution |
| Triage script fails |
Token not set |
Export INTERCOM_ACCESS_TOKEN |
| Status page unreachable |
DNS/network |
Try mobile network or VPN |
| Can't rotate token |
No Developer Hub access |
Escalate to workspace admin |
| Cache empty during outage |
No pre-warming |
Implement cache warming job |
Resources
For data handling compliance, see intercom-data-handling.
Source: jeremylongshore/claude-code-plugins-plus-skills → plugins/saas-packs/intercom-pack/skills/intercom-incident-runbook/SKILL.md
1---2name: intercom-incident-runbook3description: | Execute Intercom incident response procedures with triage, mitigation, and postmortem. Use when responding to Intercom API outages, investigating integration errors, or running post-incident reviews for Intercom failures. Trigger with phrases like "intercom incident", "intercom outage", "intercom down", "intercom on-call", "intercom emergency", "intercom broken".4---56# Intercom Incident Runbook78## Overview910Rapid incident response procedures for Intercom integration failures. The runbook11takes you from alert to resolution in four phases — triage, decision, mitigation,12and postmortem — with HTTP-status-code-driven branching so you always know whether13the fault is yours or Intercom's. High-level workflow lives here; the full14copy-paste scripts and templates live in `references/`.1516## Prerequisites1718- `INTERCOM_ACCESS_TOKEN` exported in your shell (a workspace admin token).19- `curl` and `jq` installed for API + status-page probing.20- `kubectl` access to the deployment running your Intercom integration (for restarts).21- Access to your secret manager (e.g. AWS Secrets Manager) to rotate a compromised token.22- Developer Hub access for the Intercom app, or a path to escalate to a workspace admin.2324## Severity Levels2526| Level | Definition | Response Time | Example |27|-------|------------|---------------|---------|28| P1 | All Intercom API calls failing | < 15 min | 401 auth failures, API unreachable |29| P2 | Degraded service | < 1 hour | High latency, rate limited (429) |30| P3 | Partial impact | < 4 hours | Webhook delays, search timeouts |31| P4 | No user impact | Next business day | Monitoring gaps, stale cache |3233## Instructions3435Work the phases in order. Each phase links to the full reference when you need depth.36371. **Assign severity.** Match the symptom to the table above; this sets your clock38 and who you page.39402. **Triage — is it you or Intercom?** Run the first probe to confirm reachability:4142 ```bash43 curl -s -o /dev/null -w "%{http_code}" \44 -H "Authorization: Bearer $INTERCOM_ACCESS_TOKEN" \45 https://api.intercom.io/me46 ```4748 Then check `status.intercom.com` for a platform incident and read the rate-limit49 headers. The full 5-step diagnostic script and the branch-by-branch decision tree50 are in [references/triage.md](references/triage.md).51523. **Decide.** If Intercom reports an incident, it is their problem — enable graceful53 degradation and monitor. If not, it is your integration; branch on the status code:54 401 → rotate token, 403 → add OAuth scope, 429 → queue/backoff, 5xx → retry with backoff.55564. **Mitigate by error type.** Apply the matching remediation — token rotation for 401,57 volume reduction for 429, cached-data fallback for 5xx. Full commands (including the58 `aws secretsmanager` rotation and the `kubectl rollout restart`) plus the TypeScript59 graceful-degradation pattern are in [references/mitigation.md](references/mitigation.md).60615. **Communicate.** Post the internal Slack status update on a fixed cadence using the62 template in [references/templates.md](references/templates.md).63646. **Write the postmortem.** After resolution, fill in the postmortem template65 (timeline, root cause, impact counts, action items) from66 [references/templates.md](references/templates.md). Always record Intercom67 `request_id`s captured during the incident — Intercom support needs them.6869## Output7071Working through the runbook produces:7273- A **severity classification** (P1–P4) with a bounded response clock.74- A **fault verdict** — Intercom-side platform incident vs. your integration — backed by75 the triage script's HTTP codes, status-page state, and rate-limit headers.76- A **mitigation applied** for the specific error class (rotated token, paused sync jobs,77 enabled cache fallback, or retry/backoff).78- A **communication trail** — timestamped Slack updates on cadence.79- A **completed postmortem** with timeline, root cause, impact counts, captured Intercom80 `request_id`s, and owned action items.8182## Examples8384**Fast triage during a suspected outage** — confirm reachability, then check the platform:8586```bash87curl -s -o /dev/null -w "API=%{http_code}\n" \88 -H "Authorization: Bearer $INTERCOM_ACCESS_TOKEN" https://api.intercom.io/me89curl -s https://status.intercom.com/api/v2/status.json | jq -r '.status.description'90```9192A `401` with a green status page means your token, not Intercom — jump to the 40193mitigation. The full 5-step diagnostic, the decision tree, per-status mitigation94commands, and the Slack/postmortem templates are all in `references/`:9596- [references/triage.md](references/triage.md) — full triage script + decision tree97- [references/mitigation.md](references/mitigation.md) — 401 / 429 / 5xx remediation + graceful degradation98- [references/templates.md](references/templates.md) — Slack update + postmortem templates99100## Error Handling101102| Issue | Cause | Solution |103|-------|-------|----------|104| Triage script fails | Token not set | Export INTERCOM_ACCESS_TOKEN |105| Status page unreachable | DNS/network | Try mobile network or VPN |106| Can't rotate token | No Developer Hub access | Escalate to workspace admin |107| Cache empty during outage | No pre-warming | Implement cache warming job |108109## Resources110111- [Intercom Status Page](https://status.intercom.com)112- [Intercom Status API](https://status.intercom.com/api)113- [Error Codes](https://developers.intercom.com/docs/references/rest-api/errors/error-codes)114- [Rate Limiting](https://developers.intercom.com/docs/references/rest-api/errors/rate-limiting)115116For data handling compliance, see `intercom-data-handling`.117118---119120**Source:** [`jeremylongshore/claude-code-plugins-plus-skills`](https://github.com/jeremylongshore/claude-code-plugins-plus-skills) → `plugins/saas-packs/intercom-pack/skills/intercom-incident-runbook/SKILL.md`