| name | gamma-prod-checklist |
| description | Production readiness checklist for Gamma integration.
Use when preparing to deploy Gamma integration to production,
or auditing existing production setup.
Trigger with phrases like "gamma production", "gamma prod ready",
"gamma go live", "gamma deployment checklist", "gamma launch".
|
| allowed-tools | Read, Write, Edit, Grep |
| version | 1.13.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","gamma","deployment","golang","audit"] |
| compatibility | Designed for Claude Code, also compatible with Codex and OpenClaw |
Gamma Production Checklist
Overview
Comprehensive checklist to ensure your Gamma integration is production-ready.
Prerequisites
- Completed development and testing
- Staging environment validated
- Monitoring infrastructure ready
Production Checklist
1. Authentication & Security
const gamma = new GammaClient({
apiKey: await secretManager.getSecret('GAMMA_API_KEY'),
timeout: 30000, # 30000: 30 seconds in ms
retries: 3,
});
2. Error Handling
import * as Sentry from '@sentry/node';
try {
gamma..({ ... });
} (err) {
.(err, {
: { : , : },
});
();
}