agentsclimarketplace

Flyio prod checklist

Skill jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/flyio-pack/skills/flyio-prod-checklist

'Execute Fly.io production deployment checklist with health checks,From its SKILL.md

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill flyio-prod-checklist

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

4.2 KB, 930 tokens by cl100k_base, as published. Nobody here has run it

Fly.io Production Checklist

Overview

Fly.io runs applications on edge infrastructure across 30+ regions with Machines, Volumes, and managed Postgres. A production deployment requires multi-region redundancy, proper secret management, health checks, and rollback procedures. Misconfigured auto-scaling means cold starts; missing volume backups mean data loss. This checklist ensures your Fly.io app is production-hardened.

Authentication & Secrets

  • FLY_API_TOKEN stored in CI secrets (never in fly.toml or source)
  • All app secrets set via fly secrets (not [env] block)
  • Deploy tokens scoped per app (not org-wide personal tokens)
  • Key rotation scheduled (quarterly, or after team changes)
  • No hardcoded secrets in Dockerfile or codebase

API Integration

  • Production base URL: app deployed to https://<app>.fly.dev
  • force_https = true in fly.toml http_service
  • Custom domain with TLS certificate active and auto-renewing
  • min_machines_running = 1 to avoid cold starts
  • Machines deployed in 2+ regions for redundancy
  • Concurrency limits tuned (soft_limit/hard_limit per workload)
  • Volumes backed up if using persistent storage

Error Handling & Resilience

  • Health check endpoint configured with appropriate grace period
  • Graceful shutdown handles SIGTERM within 10s window
  • Auto-stop/auto-start configured for cost optimization
  • Postgres standby replica provisioned for database apps
  • Rollback procedure tested: fly releases rollback <N>
  • Dockerfile builds and runs identically local vs deployed

Monitoring & Alerting

  • fly logs streaming configured for centralized logging
  • Machine health monitored via fly machine status
  • Platform status checked: https://status.flyio.net
  • Alert on health check failures across any region
  • VM resource utilization tracked (fly scale show)

Validation Script

async function checkFlyioReadiness(): Promise<void> {
  const checks: { name: string; pass: boolean; detail: string }[] = [];
  // Fly.io API connectivity
  try {
    const res = await fetch('https://api.machines.dev/v1/apps', {
      headers: { Authorization: `Bearer ${process.env.FLY_API_TOKEN}` },
    });
    checks.push({ name: 'Fly API', pass: res.ok, detail: res.ok ? 'Connected' : `HTTP ${res.status}` });
  } catch (e: any) { checks.push({ name: 'Fly API', pass: false, detail: e.message }); }
  // Token present
  checks.push({ name: 'API Token Set', pass: !!process.env.FLY_API_TOKEN, detail: process.env.FLY_API_TOKEN ? 'Present' : 'MISSING' });
  // Platform status
  try {
    const res = await fetch('https://status.flyio.net/api/v2/status.json');
    const data = await res.json();
    const status = data?.status?.indicator || 'unknown';
    checks.push({ name: 'Platform Status', pass: status === 'none', detail: status === 'none' ? 'Operational' : status });
  } catch (e: any) { checks.push({ name: 'Platform Status', pass: false, detail: e.message }); }
  for (const c of checks) console.log(`[${c.pass ? 'PASS' : 'FAIL'}] ${c.name}: ${c.detail}`);
}
checkFlyioReadiness();

Error Handling

CheckRisk if SkippedPriority
Multi-region deploymentSingle region outage = full downtimeP1
Volume backupsData loss on machine replacementP1
Health check configDead machines receive trafficP2
SIGTERM handlingDropped requests during deploysP2
Rollback procedureStuck on broken releaseP3

Resources

Next Steps

See flyio-security-basics for network policies and secret management.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.