hubspot-incident-runbook

Featured

Execute HubSpot incident response with triage, mitigation, and postmortem. Use when responding to HubSpot API outages, investigating CRM errors, or running post-incident reviews for HubSpot integration failures. Trigger with phrases like "hubspot incident", "hubspot outage", "hubspot down", "hubspot on-call", "hubspot emergency", "hubspot broken".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# HubSpot Incident Runbook ## Overview Rapid incident response procedures for HubSpot CRM integration failures, including triage, mitigation, and postmortem templates. ## Prerequisites - Access to application logs and metrics - `HUBSPOT_ACCESS_TOKEN` available for manual testing - Communication channels (Slack, PagerDuty) ## Instructions ### Step 1: Quick Triage (< 2 minutes) ```bash #!/bin/bash # hubspot-triage.sh -- Run this first during any incident echo "=== HubSpot Quick Triage ===" echo "Time: $(date -u)" # 1. Is HubSpot itself down? echo "" echo "--- HubSpot Platform Status ---" curl -s https://status.hubspot.com/api/v2/summary.json | jq '{ status: .status.description, active_incidents: [.incidents[] | {name, status, updated_at}] }' # 2. Can we reach the API? echo "" echo "--- API Connectivity ---" STATUS=$(curl -so /dev/null -w "%{http_code}" \ https://api.hubapi.com/crm/v3/objects/contacts?limit=1 \ -H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN") echo "API Status: HTTP $STATUS" # 3. Rate limit state echo "" echo "--- Rate Limits ---" curl -sI https://api.hubapi.com/crm/v3/objects/contacts?limit=1 \ -H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" \ | grep -i "ratelimit\|retry-after" # 4. Check our health endpoint echo "" echo "--- Our Health Check ---" curl -sf https://your-app.com/health | jq '.services.hubspot' || echo "Health check failed" ``` ### Step 2: Decision Tree ``` Is HubSpot status page showing an incident? ├── YES → HubSpot-si...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

klaviyo-incident-runbook

Execute Klaviyo incident response procedures with triage, mitigation, and postmortem. Use when responding to Klaviyo-related outages, investigating API errors, or running post-incident reviews for Klaviyo integration failures. Trigger with phrases like "klaviyo incident", "klaviyo outage", "klaviyo down", "klaviyo on-call", "klaviyo emergency", "klaviyo broken".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-incident-runbook

Execute Salesforce incident response procedures with triage, mitigation, and postmortem. Use when responding to Salesforce-related outages, investigating API errors, or running post-incident reviews for Salesforce integration failures. Trigger with phrases like "salesforce incident", "salesforce outage", "salesforce down", "salesforce on-call", "salesforce emergency", "salesforce broken".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clickup-incident-runbook

Execute ClickUp API incident response: triage, diagnosis, mitigation, and postmortem for API failures and integration outages. Trigger: "clickup incident", "clickup outage", "clickup down", "clickup on-call", "clickup emergency", "clickup API broken".

2,266 Updated today
jeremylongshore
AI & Automation Featured

databricks-incident-runbook

Execute Databricks incident response procedures with triage, mitigation, and postmortem. Use when responding to Databricks-related outages, investigating job failures, or running post-incident reviews for pipeline failures. Trigger with phrases like "databricks incident", "databricks outage", "databricks down", "databricks on-call", "databricks emergency", "job failed".

2,266 Updated today
jeremylongshore
AI & Automation Featured

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 for Intercom failures. Trigger with phrases like "intercom incident", "intercom outage", "intercom down", "intercom on-call", "intercom emergency", "intercom broken".

2,266 Updated today
jeremylongshore