What problem does it solve? Building and maintaining GitHub Actions pipelines involves many failure points: misconfigured triggers, over-privileged permissions, broken caches, missing approval gates, and hard-to-debug flaky runs. This Skill provides structured modes for creating new workflows, auditing existing ones, and diagnosing common failures. ## Core Features & Use Cases - Workflow Creation: Scaffolds CI/CD pipelines with least-privilege permissions, concurrency control, caching, pinned action versions, and OIDC-based cloud authentication. - Security & Performance Audits: Runs a structured checklist covering secrets handling, dependency review, SAST integration, cache key design, and matrix parallelism. - Troubleshooting Guides: Diagnoses non-triggering workflows, 403 permission errors, cache misses, flaky tests, and slow pipelines with step-by-step fixes. - Use Case: A team needs to deploy to AWS from GitHub without long-lived credentials. Use this Skill to configure OIDC with aws-actions/configure-aws-credentials, add a production environment with manual approval, and enforce dependency review on pull requests. ## Quick Start Ask the assistant to create a GitHub Actions workflow that runs tests on pull requests and deploys to production with OIDC authentication and a manual approval gate.