maintainx-prod-checklist

Featured

Production deployment checklist for MaintainX integrations. Use when preparing to deploy a MaintainX integration to production, verifying production readiness, or auditing existing deployments. Trigger with phrases like "maintainx production", "deploy maintainx", "maintainx go-live", "maintainx production checklist", "maintainx launch".

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

# MaintainX Production Checklist ## Overview Comprehensive pre-deployment and post-deployment checklist for MaintainX integrations covering security, reliability, observability, and data integrity. ## Prerequisites - MaintainX integration developed and tested - Production MaintainX account with API access - Deployment infrastructure ready (Cloud Run, K8s, or similar) ## Instructions ### Step 1: Authentication & Security ```bash # Verify production API key works curl -s -o /dev/null -w "HTTP %{http_code}" \ https://api.getmaintainx.com/v1/users?limit=1 \ -H "Authorization: Bearer $MAINTAINX_API_KEY_PROD" # Verify no secrets in codebase npx gitleaks detect --source . --no-git ``` - [ ] API key stored in secret manager (not env file or code) - [ ] `.env` and `*.key` files in `.gitignore` - [ ] Pre-commit hook blocking secret commits - [ ] API key rotation schedule set (every 90 days) - [ ] Input validation on all user-provided data (Zod or similar) ### Step 2: Error Handling & Resilience - [ ] Retry logic with exponential backoff for 429 and 5xx errors - [ ] `Retry-After` header honored on 429 responses - [ ] Circuit breaker for cascading failure prevention - [ ] Graceful degradation when MaintainX API is down - [ ] Request timeout set (30 seconds recommended) ```typescript // Verify retry logic is configured const client = axios.create({ baseURL: 'https://api.getmaintainx.com/v1', timeout: 30_000, // 30 second timeout headers: { Authorization: `Bearer ${api...

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

maintainx-deploy-integration

Deploy MaintainX integrations to production environments. Use when deploying to cloud platforms, configuring production environments, or automating deployment pipelines for MaintainX integrations. Trigger with phrases like "deploy maintainx", "maintainx deployment", "maintainx cloud deploy", "maintainx kubernetes", "maintainx docker".

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
AI & Automation Featured

groq-prod-checklist

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

2,266 Updated today
jeremylongshore
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

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