hubspot-prod-checklist

Featured

Execute HubSpot production deployment checklist and go-live procedures. Use when deploying HubSpot integrations to production, preparing for launch, or implementing health checks for HubSpot connectivity. Trigger with phrases like "hubspot production", "deploy hubspot", "hubspot go-live", "hubspot launch checklist", "hubspot health check".

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 Production Checklist ## Overview Complete checklist for deploying HubSpot CRM integrations to production with health checks, monitoring, and rollback procedures. ## Prerequisites - Staging environment tested and verified - Production private app token with minimal scopes - Deployment pipeline configured - Monitoring/alerting ready ## Instructions ### Step 1: Pre-Deployment Verification - [ ] Production private app created with minimal scopes - [ ] Access token stored in secret manager (not env file) - [ ] `.env` files in `.gitignore` - [ ] No hardcoded tokens in source (`grep -r "pat-na1" src/`) - [ ] Webhook endpoints use HTTPS only - [ ] Webhook signature verification implemented (v3) - [ ] Error handling covers 401, 403, 404, 409, 429, 5xx - [ ] Rate limiting/backoff implemented (`numberOfApiCallRetries: 3`) - [ ] Batch operations used where possible (max 100/batch) - [ ] All tests passing against developer test account ### Step 2: Health Check Endpoint ```typescript import * as hubspot from '@hubspot/api-client'; interface HealthCheckResult { status: 'healthy' | 'degraded' | 'unhealthy'; hubspot: { connected: boolean; latencyMs: number; rateLimitRemaining?: number; }; timestamp: string; } async function hubspotHealthCheck(): Promise<HealthCheckResult> { const client = new hubspot.Client({ accessToken: process.env.HUBSPOT_ACCESS_TOKEN!, }); const start = Date.now(); try { // Cheapest possible API call: fetch 1 conta...

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

hootsuite-prod-checklist

Execute Hootsuite production deployment checklist and rollback procedures. Use when deploying Hootsuite integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "hootsuite production", "deploy hootsuite", "hootsuite go-live", "hootsuite launch checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

elevenlabs-prod-checklist

Execute ElevenLabs production deployment checklist with health checks and rollback. Use when deploying TTS/voice integrations to production, preparing for launch, or implementing go-live procedures for ElevenLabs-powered apps. Trigger: "elevenlabs production", "deploy elevenlabs", "elevenlabs go-live", "elevenlabs launch checklist", "production TTS".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fireflies-prod-checklist

Execute Fireflies.ai production deployment checklist with health checks and rollback. Use when deploying Fireflies.ai integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "fireflies production", "deploy fireflies", "fireflies go-live", "fireflies launch checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

bamboohr-prod-checklist

Execute BambooHR production deployment checklist and rollback procedures. Use when deploying BambooHR integrations to production, preparing for launch, or implementing go-live procedures with BambooHR API. Trigger with phrases like "bamboohr production", "deploy bamboohr", "bamboohr go-live", "bamboohr launch checklist", "bamboohr prod ready".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-prod-checklist

Execute Klaviyo production deployment checklist and validation procedures. Use when deploying Klaviyo integrations to production, preparing for launch, or implementing go-live procedures for email/SMS marketing. Trigger with phrases like "klaviyo production", "deploy klaviyo", "klaviyo go-live", "klaviyo launch checklist", "klaviyo prod ready".

2,266 Updated today
jeremylongshore