flyio-debug-bundle

Featured

Collect Fly.io debug evidence for support tickets including machine status, logs, health checks, volume state, and networking diagnostics. Trigger: "fly.io debug", "fly.io support", "fly.io diagnostic", "fly doctor".

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

# Fly.io Debug Bundle ## Overview Collect machine state, app health, volume status, deploy history, network connectivity, and platform diagnostics into a single archive for Fly.io support tickets. This bundle captures everything needed to troubleshoot stuck deployments, machine boot failures, volume corruption, and edge networking problems. ## Debug Collection Script ```bash #!/bin/bash set -euo pipefail APP="${1:?Usage: fly-debug.sh <app-name>}" BUNDLE="debug-flyio-${APP}-$(date +%Y%m%d-%H%M%S)" mkdir -p "$BUNDLE" # Environment check echo "=== Fly.io Debug Bundle: $APP ===" | tee "$BUNDLE/summary.txt" echo "Generated: $(date -u +%Y-%m-%dT%H:%M:%SZ)" >> "$BUNDLE/summary.txt" echo "FLY_API_TOKEN: ${FLY_API_TOKEN:+[SET]}" >> "$BUNDLE/summary.txt" echo "flyctl: $(fly version 2>/dev/null || echo 'not found')" >> "$BUNDLE/summary.txt" # API connectivity HTTP=$(curl -s -o /dev/null -w "%{http_code}" \ -H "Authorization: Bearer ${FLY_API_TOKEN}" \ https://api.machines.dev/v1/apps 2>/dev/null || echo "000") echo "Machines API: HTTP $HTTP" >> "$BUNDLE/summary.txt" # App status and machine state fly status -a "$APP" > "$BUNDLE/status.txt" 2>&1 || true fly machine list -a "$APP" --json > "$BUNDLE/machines.json" 2>&1 || true # Recent logs (last 200 lines) fly logs -a "$APP" --no-tail 2>&1 | tail -200 > "$BUNDLE/logs.txt" || true # Volumes, releases, and doctor fly volumes list -a "$APP" > "$BUNDLE/volumes.txt" 2>&1 || true fly releases -a "$APP" > "$BUNDLE/releases.txt" 2>&1...

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

fireflies-debug-bundle

Collect Fireflies.ai debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Fireflies.ai problems. Trigger with phrases like "fireflies debug", "fireflies support bundle", "collect fireflies logs", "fireflies diagnostic".

2,266 Updated today
jeremylongshore
AI & Automation Featured

flexport-debug-bundle

Collect Flexport API debug evidence for support tickets and troubleshooting. Use when encountering persistent API issues, preparing support tickets, or collecting diagnostic information for Flexport logistics problems. Trigger: "flexport debug", "flexport support bundle", "flexport diagnostic".

2,266 Updated today
jeremylongshore
AI & Automation Featured

appfolio-debug-bundle

Collect AppFolio API debug evidence for support tickets. Trigger: "appfolio debug".

2,266 Updated today
jeremylongshore
AI & Automation Featured

firecrawl-debug-bundle

Collect Firecrawl debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Firecrawl problems. Trigger with phrases like "firecrawl debug", "firecrawl support bundle", "collect firecrawl logs", "firecrawl diagnostic".

2,266 Updated today
jeremylongshore
AI & Automation Solid

webflow-debug-bundle

Collect Webflow debug evidence for support tickets and troubleshooting. Gathers SDK version, token validation, rate limit status, site connectivity, CMS health, and error logs into a single diagnostic bundle. Trigger with phrases like "webflow debug", "webflow support bundle", "collect webflow logs", "webflow diagnostic", "webflow troubleshoot".

2,266 Updated today
jeremylongshore