intercom-deploy-integration

Featured

Deploy Intercom integrations to Vercel, Fly.io, and Cloud Run with proper secrets. Use when deploying Intercom-powered applications to production, configuring platform-specific secrets, or setting up webhook endpoints. Trigger with phrases like "deploy intercom", "intercom Vercel", "intercom production deploy", "intercom Cloud Run", "intercom Fly.io".

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

# Intercom Deploy Integration ## Overview Deploy Intercom-powered applications to Vercel, Fly.io, or Google Cloud Run with proper secret management, webhook endpoint configuration, and health checks. ## Prerequisites - Intercom production access token - Platform CLI installed (`vercel`, `flyctl`, or `gcloud`) - Application with Intercom integration ready for deployment ## Instructions ### Step 1: Vercel Deployment ```bash # Add Intercom secrets to Vercel vercel env add INTERCOM_ACCESS_TOKEN production vercel env add INTERCOM_WEBHOOK_SECRET production # Deploy to production vercel --prod ``` **API Route for Webhooks (Vercel Serverless):** ```typescript // api/webhooks/intercom.ts (Vercel serverless function) import crypto from "crypto"; export const config = { api: { bodyParser: false } }; export default async function handler(req: any, res: any) { if (req.method !== "POST") return res.status(405).end(); const chunks: Buffer[] = []; for await (const chunk of req) chunks.push(chunk); const body = Buffer.concat(chunks); // Verify signature const signature = req.headers["x-hub-signature"] as string; const expected = "sha1=" + crypto .createHmac("sha1", process.env.INTERCOM_WEBHOOK_SECRET!) .update(body) .digest("hex"); if (!crypto.timingSafeEqual(Buffer.from(signature || ""), Buffer.from(expected))) { return res.status(401).json({ error: "Invalid signature" }); } const event = JSON.parse(body.toString()); console.log(`Intercom...

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-deploy-integration

Deploy Klaviyo integrations to Vercel, Fly.io, and Cloud Run platforms. Use when deploying Klaviyo-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy klaviyo", "klaviyo Vercel", "klaviyo production deploy", "klaviyo Cloud Run", "klaviyo Fly.io".

2,266 Updated today
jeremylongshore
AI & Automation Featured

attio-deploy-integration

Deploy Attio integrations to Vercel, Fly.io, Railway, and Cloud Run with proper secrets, health checks, and webhook endpoint configuration. Trigger: "deploy attio", "attio Vercel", "attio production deploy", "attio Cloud Run", "attio Fly.io", "attio Railway".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-deploy-integration

Deploy HubSpot integrations to Vercel, Fly.io, and Cloud Run platforms. Use when deploying HubSpot-powered applications, configuring platform secrets, or setting up deployment pipelines with HubSpot access tokens. Trigger with phrases like "deploy hubspot", "hubspot Vercel", "hubspot Cloud Run", "hubspot Fly.io", "hubspot production deploy".

2,266 Updated today
jeremylongshore
AI & Automation Solid

webflow-deploy-integration

Deploy Webflow-powered applications to Vercel, Fly.io, and Google Cloud Run with proper secrets management and Webflow-specific health checks. Trigger with phrases like "deploy webflow", "webflow Vercel", "webflow production deploy", "webflow Cloud Run", "webflow Fly.io".

2,266 Updated today
jeremylongshore
AI & Automation Featured

bamboohr-deploy-integration

Deploy BambooHR integrations to Vercel, Fly.io, and Cloud Run platforms. Use when deploying BambooHR-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy bamboohr", "bamboohr Vercel", "bamboohr production deploy", "bamboohr Cloud Run", "bamboohr Fly.io".

2,266 Updated today
jeremylongshore