What problem does it solve? Writing CI/CD pipeline configuration by hand is error-prone and platform-specific, especially when targeting multiple platforms like GitHub Actions and Gitea Actions that have subtle compatibility differences. This Skill guides the design, implementation, and validation of pipeline workflows across four major CI/CD platforms. ## Core Features & Use Cases - Multi-Platform Pipeline Generation: Creates workflow files for GitHub Actions (.github/workflows/), Gitea Actions (.gitea/workflows/), GitLab CI (.gitlab-ci.yml), and Jenkins (Jenkinsfile). - Gitea Actions Compatibility Rules: Applies a detailed checklist covering ignored syntax (concurrency, permissions, timeout-minutes), unsupported status functions, PAT-based registry auth, and CodeQL replacement with Trivy or Semgrep. - Structured Five-Step Workflow: Walks through platform selection, pipeline architecture design, implementation, validation, and deployment monitoring. - Use Case: A team migrating from GitHub to a self-hosted Gitea instance needs their workflows ported. The Skill rewrites the pipelines, removes unsupported syntax, swaps token authentication for PATs, and replaces CodeQL with Trivy scanning. ## Quick Start Ask the assistant to create a CI/CD pipeline for your project on GitHub Actions or Gitea Actions, including test, build, security scan, and deployment stages.