salesloft-prod-checklist

Featured

Production readiness checklist for SalesLoft API integrations. Use when deploying SalesLoft integrations to production, preparing for launch, or validating go-live requirements. Trigger: "salesloft production", "deploy salesloft", "salesloft go-live checklist".

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

# SalesLoft Production Checklist ## Overview Go-live checklist for SalesLoft API integrations covering auth, error handling, monitoring, rate limits, and rollback procedures. ## Pre-Launch Checklist ### Authentication & Secrets - [ ] Production OAuth app created (separate from dev/staging) - [ ] Tokens stored in secret manager (AWS Secrets Manager, GCP Secret Manager, Vault) - [ ] Token refresh logic tested (simulated expired token) - [ ] Webhook signing secret rotated from dev value ### Error Handling - [ ] 401 triggers automatic token refresh (not crash) - [ ] 429 handled with backoff using `Retry-After` header - [ ] 5xx retried with exponential backoff (max 3 attempts) - [ ] 422 validation errors logged with request payload - [ ] Circuit breaker prevents cascade during SalesLoft outages ### Rate Limiting - [ ] Cost-based budget calculated for expected volume - [ ] Deep pagination avoided (page > 100 costs 3-30x) - [ ] Bulk operations use `p-queue` or similar throttle - [ ] Rate limit headers logged for capacity planning ### Monitoring & Alerting ```typescript // Health check endpoint app.get('/health', async (req, res) => { try { const start = Date.now(); await api.get('/me.json'); res.json({ status: 'healthy', salesloft: { connected: true, latencyMs: Date.now() - start }, }); } catch { res.status(503).json({ status: 'degraded', salesloft: { connected: false } }); } }); ``` - [ ] Health check includes SalesLoft connectivity - [...

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

salesforce-prod-checklist

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesloft-ci-integration

Set up CI/CD pipelines for SalesLoft integrations with GitHub Actions. Use when automating SalesLoft integration tests, validating OAuth tokens, or running cadence sync validation in CI. Trigger: "salesloft CI", "salesloft GitHub Actions", "salesloft automated tests".

2,266 Updated today
jeremylongshore
AI & Automation Featured

appfolio-prod-checklist

Production readiness checklist for AppFolio integrations. Trigger: "appfolio production checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-prod-checklist

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

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