jeremylongshore/claude-code-plugins-plus-skills
linear-pack
plugins/saas-packs/linear-pack/skills/linear-prod-checklist/SKILL.md
January 22, 2026
Select agents to install to:
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/blob/main/plugins/saas-packs/linear-pack/skills/linear-prod-checklist/SKILL.md -a claude-code --skill linear-prod-checklistInstallation paths:
.claude/skills/linear-prod-checklist/# Linear Production Checklist ## Overview Comprehensive checklist for deploying Linear integrations to production. ## Prerequisites - Working development integration - Production Linear workspace - Deployment infrastructure ready ## Pre-Production Checklist ### 1. Authentication & Security ``` [ ] Production API key generated (separate from dev) [ ] API key stored in secure secret management (not .env files) [ ] OAuth credentials configured for production redirect URIs [ ] Webhook secrets are unique per environment [ ] All secrets rotated from development values [ ] HTTPS enforced for all endpoints [ ] Webhook signature verification implemented ``` ### 2. Error Handling ``` [ ] All API errors caught and handled gracefully [ ] Rate limiting with exponential backoff implemented [ ] Timeout handling for long-running operations [ ] Graceful degradation when Linear is unavailable [ ] Error logging with context (no secrets in logs) [ ] Alerts configured for critical errors ``` ### 3. Performance ``` [ ] Pagination implemented for all list queries [ ] Caching layer for frequently accessed data [ ] Request batching for bulk operations [ ] Query complexity monitored and optimized [ ] Connection pooling configured [ ] Response times monitored ``` ### 4. Monitoring & Observability ``` [ ] Health check endpoint implemented [ ] API latency metrics collected [ ] Error rate monitoring configured [ ] Rate limit usage tracked [ ] Structured logging implemented [ ] Distributed tracing (if applicable) ``` ### 5. Data Handling ``` [ ] No PII logged or exposed [ ] Data retention policies defined [ ] Backup strategy for synced data [ ] Webhook event idempotency handled [ ] Stale data detection and refresh ``` ### 6. Infrastructure ``` [ ] Deployment pipeline configured [ ] Rollback procedure documented [ ] Auto-scaling configured (if needed) [ ] Load testing completed [ ] Disaster recovery plan documented ``` ## Production Configuration Template ```typescript // config/product