Generate CI/CD pipeline configurations for GitHub Actions, GitLab CI, etc.
---
name: ci-pipeline-generator
description: Generate CI/CD pipeline configurations
version: 1.4.0
---
# CI/CD Pipeline Generator
Create optimized CI/CD pipelines for your project.
## Supported Platforms
- GitHub Actions
- GitLab CI
- CircleCI
- Jenkins
- Azure DevOps
## Pipeline Types
- Build & Test
- Deploy to staging
- Deploy to production
- Release automation
- Security scanning
## Example Output (GitHub Actions)
```yaml
name: CI/CD
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- run: npm test
- run: npm run lint
build:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
deploy:
needs: build
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- run: ./deploy.sh
```AI Agent Skills are reusable workflow packages that extend your AI coding assistant with multi-step capabilities. Install ci-pipeline-generator by following these steps.
.cursor/skills/ or .codex/skills/ directory