Skip to content
Skillv1.0.0

gamma-prod-checklist

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

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (skills/.curated/gamma-prod-checklist/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill gamma-prod-checklist. Copyright stays with the author (MIT).

Gamma Production Checklist

Instructions

Attach evidence or an owner decision to each control, run a fictional-content canary, verify publishing/visibility/privacy and rollback behavior, and stop promotion on an access, destination, or health failure.

Output

Create a go-live receipt with completed controls, aggregate canary results, approver, exceptions, rollback owner, and follow-up date. Exclude private content, viewer data, and credentials.

Error Handling

Pause publishing and integrations on policy failures, restore the prior configuration, and keep only redacted incident evidence.

Examples

Publish a fictional staging deck, revoke a test viewer, and simulate a failed integration. Promote only after the owner records that access and rollback worked correctly.

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

  • Production API key obtained (not development key)
  • API key stored in secret manager (not env file)
  • Key rotation procedure documented and tested
  • Minimum required scopes configured
  • No secrets in source code or logs
// Production client configuration
const gamma = new GammaClient({
  apiKey: await secretManager.getSecret('GAMMA_API_KEY'),
  timeout: 30000,  # 30000: 30 seconds in ms
  retries: 3,
});

2. Error Handling

  • All API calls wrapped in try/catch
  • Exponential backoff for rate limits
  • Graceful degradation for API outages
  • User-friendly error messages
  • Error tracking integration (Sentry, etc.)
import * as Sentry from '@sentry/node';

try {
  await gamma.presentations.create({ ... });
} catch (err) {
  Sentry.captureException(err, {
    tags: { service: 'gamma', operation: 'create' },
  });
  throw new UserError('Unable to create presentation. Please try again.');
}

3. Performance

  • Client instance reused (singleton pattern)
  • Connection pooling enabled
  • Appropriate timeouts configured
  • Response caching where applicable
  • Async operations for long tasks

4. Monitoring & Logging

  • Request/response logging (sanitized)
  • Latency metrics collection
  • Error rate alerting
  • Rate limit monitoring
  • Health check endpoint
// Health check
app.get('/health/gamma', async (req, res) => {
  try {
    await gamma.ping();
    res.json({ status: 'healthy', service: 'gamma' });
  } catch (err) {
    res.status(503).json({ status: 'unhealthy', error: err.message });  # HTTP 503 Service Unavailable
  }
});

5. Rate Limiting

  • Rate limit tier confirmed with Gamma
  • Request queuing implemented
  • Backoff strategy in place
  • Usage monitoring alerts
  • Burst protection enabled

6. Data Handling

  • PII handling compliant with policies
  • Data retention policies documented
  • Export data properly secured
  • User consent for AI processing
  • GDPR/CCPA compliance verified

7. Disaster Recovery

  • Fallback behavior defined
  • Circuit breaker implemented
  • Recovery procedures documented
  • Backup API key available
  • Incident response plan ready
import CircuitBreaker from 'opossum';

const breaker = new CircuitBreaker(
  (opts) => gamma.presentations.create(opts),
  {
    timeout: 30000,  # 30000: 30 seconds in ms
    errorThresholdPercentage: 50,
    resetTimeout: 30000,  # 30 seconds in ms
  }
);

breaker.fallback(() => ({
  error: 'Service temporarily unavailable',
  retry: true,
}));

8. Testing

  • Integration tests passing
  • Load testing completed
  • Failure scenario testing done
  • API mock for CI/CD
  • Staging environment validated

9. Documentation

  • API integration documented
  • Runbooks for common issues
  • Architecture diagrams updated
  • On-call procedures defined
  • Team trained on Gamma features

Final Verification Script

#!/bin/bash
set -euo pipefail
# prod-verify.sh

echo "Gamma Production Verification"

# Check API key
if [ -z "$GAMMA_API_KEY" ]; then
  echo "FAIL: GAMMA_API_KEY not set"
  exit 1
fi

# Test connection
curl -s -o /dev/null -w "%{http_code}" \
  -H "Authorization: Bearer $GAMMA_API_KEY" \
  https://api.gamma.app/v1/ping | grep -q "200" \  # HTTP 200 OK
  && echo "OK: API connection" \
  || echo "FAIL: API connection"

echo "Verification complete"

Resources

Next Steps

Proceed to gamma-upgrade-migration for version upgrades.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-gamma-prod-checklist/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-gamma-prod-checklist.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-gamma-prod-checklist",
  "kind": "skill",
  "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\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "gamma",
      "deployment",
      "golang",
      "audit",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/gamma-prod-checklist/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/gamma-prod-checklist/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/gamma-prod-checklist/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Gamma Production Checklist\n\n## Instructions\n\nAttach evidence or an owner decision to each control, run a fictional-content canary, verify publishing/visibility/privacy and rollback behavior, and stop promotion on an access, destination, or health failure.\n\n## Output\n\nCreate a go-live receipt with completed controls, aggregate canary results, approver, exceptions, rollback owner, and follow-up date. Exclude private content, viewer data, and credentials.\n\n## Error Handling\n\nPause publishing and integrations on policy failures, restore the prior configuration, and keep only redacted incident ev",
  "cost": {
    "context_tokens": 1205
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-gamma-prod-checklist/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.