Skip to content
OpenSmartRoute
Skillv1.0.0

intercom-incident-runbook

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 f

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/saas-packs/intercom-pack/skills/intercom-incident-runbook/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill intercom-incident-runbook. Copyright stays with the author (MIT).

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.

  1. Assign severity. Match the symptom to the table above; this sets your clock and who you page.

  2. 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.

  3. 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.

  4. 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.

  5. Communicate. Post the internal Slack status update on a fixed cadence using the template in references/templates.md.

  6. 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/:

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.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-intercom-inci-b7cb3f/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-intercom-inci-b7cb3f.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-intercom-inci-b7cb3f",
  "kind": "skill",
  "name": "intercom-incident-runbook",
  "description": "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\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "support",
      "messaging",
      "intercom",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/intercom-pack/skills/intercom-incident-runbook/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/intercom-pack/skills/intercom-incident-runbook/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/intercom-pack/skills/intercom-incident-runbook/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Bash(curl:*),",
      "Bash(kubectl:*)"
    ],
    "license": "MIT"
  },
  "instructions": "# Intercom Incident Runbook\n\n## Overview\n\nRapid incident response procedures for Intercom integration failures. The runbook\ntakes you from alert to resolution in four phases — triage, decision, mitigation,\nand postmortem — with HTTP-status-code-driven branching so you always know whether\nthe fault is yours or Intercom's. High-level workflow lives here; the full\ncopy-paste scripts and templates live in `references/`.\n\n## Prerequisites\n\n- `INTERCOM_ACCESS_TOKEN` exported in your shell (a workspace admin token).\n- `curl` and `jq` installed for API + status-page probing.\n- `kubectl` access to the ",
  "cost": {
    "context_tokens": 1307
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-intercom-inci-b7cb3f/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.