What problem does it solve? When CI/CD deployments fail or containers crash on startup but cannot be reproduced locally, this Skill helps you reproduce and diagnose the issue directly in the GitHub Actions environment using the gh CLI. ## Core Features & Use Cases - Debug Workflow Creation: Generates a workflow_dispatch-triggered GitHub Actions workflow that mirrors your build and Docker Compose startup steps, with mandatory timeouts to avoid resource waste. - Remote Triggering and Monitoring: Triggers workflows with gh workflow run and tracks run status, enforcing verification with gh run view before reading logs. - Failure Log Retrieval: Fetches failed or complete job logs via gh run view --job=<job_id> --log-failed for root-cause analysis. - Use Case: Your Docker container crashes only in CI. Create a debug workflow, trigger it remotely, monitor the run, verify its final state, and pull the last 100 lines of container logs to find the crash cause. ## Quick Start Create a debug workflow for my failing deployment, trigger it with gh CLI, monitor the run, and show me the failure logs.