attio-prod-checklist

Featured

Production readiness checklist for Attio API integrations -- auth, error handling, rate limits, health checks, monitoring, and rollback. Trigger: "attio production", "deploy attio", "attio go-live", "attio launch checklist", "attio production ready".

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

# Attio Production Checklist ## Overview Systematic checklist for launching Attio API integrations in production. Covers the real failure modes observed in Attio integrations. ## Prerequisites - Staging environment tested - Production API token created with minimal scopes - Monitoring infrastructure available ## Instructions ### Phase 1: Authentication & Secrets ``` [ ] Production token created with minimal scopes (see attio-security-basics) [ ] Token stored in platform secrets manager (not env file on disk) [ ] Separate tokens for dev/staging/prod environments [ ] .env files in .gitignore [ ] No tokens in logs, error messages, or client-side bundles [ ] Token rotation procedure documented ``` **Verify:** ```bash # Confirm production token works curl -s -o /dev/null -w "%{http_code}" \ https://api.attio.com/v2/objects \ -H "Authorization: Bearer ${ATTIO_API_KEY_PROD}" # Must return 200 ``` ### Phase 2: Error Handling ``` [ ] All API calls wrapped in try/catch [ ] AttioApiError class distinguishes retryable (429, 5xx) from fatal errors [ ] Exponential backoff with jitter on 429 responses [ ] Retry-After header honored (Attio sends a date, not seconds) [ ] 5xx errors retried (Attio may have transient issues) [ ] 400/422 validation errors logged with request body for debugging [ ] 403 scope errors produce actionable log messages [ ] 404 errors handled gracefully (records can be deleted/merged) ``` ### Phase 3: Rate Limiting ``` [ ] Queue-based throttling implemen...

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

apollo-prod-checklist

Execute Apollo.io production deployment checklist. Use when preparing to deploy Apollo integrations to production, doing pre-launch verification, or auditing production readiness. Trigger with phrases like "apollo production checklist", "deploy apollo", "apollo go-live", "apollo production ready", "apollo launch checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clickup-prod-checklist

Production readiness checklist for ClickUp API v2 integrations covering auth, rate limits, error handling, monitoring, and rollback. Trigger: "clickup production", "clickup go-live", "clickup launch checklist", "clickup prod ready", "deploy clickup to production".

2,266 Updated today
jeremylongshore
AI & Automation Featured

customerio-prod-checklist

Execute Customer.io production deployment checklist. Use when preparing for production launch, auditing integration quality, or performing pre-launch validation. Trigger: "customer.io production", "customer.io checklist", "deploy customer.io", "customer.io go-live", "customer.io launch".

2,266 Updated today
jeremylongshore
AI & Automation Featured

intercom-prod-checklist

Execute Intercom production readiness checklist and rollback procedures. Use when deploying Intercom integrations to production, preparing for launch, or implementing go-live validation. Trigger with phrases like "intercom production", "deploy intercom", "intercom go-live", "intercom launch checklist", "intercom production readiness".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-prod-checklist

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

2,266 Updated today
jeremylongshore