What problem does it solve? GitHub Actions workflows are frequently written with over-privileged tokens, mutable action tags, script-injection vulnerabilities, and long-lived cloud secrets, creating supply-chain and blast-radius risks across an organization's repositories. ## Core Features & Use Cases - Security-first workflow authoring: Enforces floor-level permissions:, SHA-pinning of third-party actions, script-injection-safe run: steps via env: bindings, and OIDC federation to AWS/GCP/Azure instead of long-lived secrets. - Complete syntax reference: Covers triggers, contexts, expressions, workflow commands, environment files, dependency caching, reusable workflows, composite actions, matrices, concurrency, and environment protection rules. - Supply-chain attestation track: Guides build-provenance attestations, SBOM generation, SLSA Build L3 posture, and Sigstore policy-controller enforcement for release artifacts. - Use Case: When reviewing a PR that adds a deploy workflow, apply the six non-negotiables to flag a pull_request_target step that interpolates ${{ github.event.pull_request.title }} directly into a shell command and rewrite it using an env: binding. ## Quick Start Ask the AI to write a CI workflow for your repository that builds, tests, and deploys to AWS using OIDC, and it will produce a SHA-pinned, least-privilege workflow following the mandatory prologue.