Skip to main content
ClaudeWave
Skill85 repo starsupdated 3mo ago

cd-pipeline-generator

Generate GitHub Actions deployment workflows for automated deployment to staging and production environments on cloud platforms (AWS, GCP, Azure). Use when setting up continuous deployment pipelines, creating deployment automation, or configuring multi-environment deployment strategies. Includes templates for environment-specific deployments with approval gates, secrets management, and rollback capabilities.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/ArabelaTso/Skills-4-SE /tmp/cd-pipeline-generator && cp -r /tmp/cd-pipeline-generator/skills/cd-pipeline-generator ~/.claude/skills/cd-pipeline-generator
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# CD Pipeline Generator

## Overview

Generate production-ready GitHub Actions deployment workflows that automate deployments to staging and production environments with environment protection rules, approval gates, and secrets management.

## Workflow

### 1. Identify Deployment Target

Determine the cloud platform and deployment method:
- **AWS**: ECS, Elastic Beanstalk, EC2, Lambda
- **GCP**: Cloud Run, App Engine, Compute Engine, Cloud Functions
- **Azure**: App Service, Container Instances, Functions

### 2. Select Template

Use the appropriate template from `assets/` based on cloud platform:
- `deploy-aws.yml` - AWS deployments (ECS, Elastic Beanstalk, Lambda)
- `deploy-gcp.yml` - GCP deployments (Cloud Run, App Engine)
- `deploy-azure.yml` - Azure deployments (App Service, Container Instances)

### 3. Configure Environments

Set up GitHub environment protection rules for staging and production:

**Staging environment**:
- Auto-deploy on merge to main/master
- No approval required
- Use staging secrets and variables

**Production environment**:
- Manual approval required
- Deploy on workflow_dispatch or tag push
- Use production secrets and variables
- Optional: Restrict to specific branches

### 4. Configure Secrets

Add required secrets to GitHub repository settings (Settings → Secrets and variables → Actions):

**AWS**:
- `AWS_ACCESS_KEY_ID`
- `AWS_SECRET_ACCESS_KEY`
- `AWS_REGION`

**GCP**:
- `GCP_PROJECT_ID`
- `GCP_SERVICE_ACCOUNT_KEY`

**Azure**:
- `AZURE_CREDENTIALS`
- `AZURE_SUBSCRIPTION_ID`

### 5. Customize Deployment Steps

Adapt the template to project-specific deployment needs:

**Build artifacts**: Add build steps before deployment
```yaml
- name: Build application
  run: npm run build  # or: python -m build, go build, cargo build
```

**Docker images**: Build and push container images
```yaml
- name: Build Docker image
  run: docker build -t $IMAGE_NAME:$TAG .

- name: Push to registry
  run: docker push $IMAGE_NAME:$TAG
```

**Database migrations**: Run migrations before deployment
```yaml
- name: Run migrations
  run: npm run migrate  # or: alembic upgrade head, rails db:migrate
```

**Health checks**: Verify deployment success
```yaml
- name: Health check
  run: curl -f https://$DEPLOYMENT_URL/health || exit 1
```

### 6. Set Deployment Triggers

Configure when deployments run:

**Staging**: Auto-deploy on push to main
```yaml
on:
  push:
    branches: [main]
```

**Production**: Manual trigger or tag-based
```yaml
on:
  workflow_dispatch:
  push:
    tags:
      - 'v*'
```

### 7. Place Workflow File

Create deployment workflow at `.github/workflows/deploy.yml`. If multiple deployment workflows are needed (e.g., separate staging and production), use descriptive names:
- `.github/workflows/deploy-staging.yml`
- `.github/workflows/deploy-production.yml`

## Template Features

All templates include:
- **Environment separation**: Distinct staging and production deployments
- **Approval gates**: Production deployments require manual approval
- **Secrets management**: Secure credential handling via GitHub secrets
- **Deployment status**: Clear success/failure reporting
- **Rollback support**: Easy revert to previous versions
- **Conditional execution**: Deploy only when tests pass

## Security Best Practices

- Never commit credentials or API keys to the repository
- Use GitHub environments to scope secrets appropriately
- Enable required reviewers for production deployments
- Use OIDC authentication instead of long-lived credentials when possible
- Implement deployment windows for production (e.g., business hours only)
- Add deployment notifications to Slack/email

## Customization Examples

**Add deployment notification**:
```yaml
- name: Notify deployment
  if: always()
  uses: 8398a7/action-slack@v3
  with:
    status: ${{ job.status }}
    text: 'Deployment to ${{ github.event.inputs.environment }} ${{ job.status }}'
  env:
    SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
```

**Add rollback capability**:
```yaml
- name: Rollback on failure
  if: failure()
  run: |
    echo "Deployment failed, rolling back..."
    # Platform-specific rollback commands
```

**Restrict production deployment time**:
```yaml
- name: Check deployment window
  run: |
    HOUR=$(date +%H)
    if [ $HOUR -lt 9 ] || [ $HOUR -gt 17 ]; then
      echo "Deployments only allowed 9 AM - 5 PM"
      exit 1
    fi
```

## Tips

- Start with staging deployments to validate the workflow
- Use environment-specific configuration files (e.g., `config.staging.json`, `config.production.json`)
- Implement blue-green or canary deployments for zero-downtime updates
- Add deployment metrics and monitoring
- Document rollback procedures in the repository
- Test deployment workflows in a separate test environment first
abstract-domain-explorerSkill

Applies abstract interpretation using different abstract domains (intervals, octagons, polyhedra, sign, congruence) to statically analyze program variables and infer invariants, value ranges, and relationships. Use when analyzing program properties, inferring loop invariants, detecting potential errors, or understanding variable relationships through static analysis.

abstract-invariant-generatorSkill

Uses abstract interpretation to automatically infer loop invariants, function preconditions, and postconditions for formal verification. Generates invariants that capture program behavior and support correctness proofs in Dafny, Isabelle, Coq, and other verification systems. Use when adding formal specifications to code, generating verification conditions, inferring contracts for functions, or discovering loop invariants for proofs.

abstract-state-analyzerSkill

Performs abstract interpretation over source code to infer possible program states, variable ranges, and data properties without executing the program. Reports potential runtime errors including out-of-bounds accesses, null dereferences, type inconsistencies, division by zero, and integer overflows. Use when analyzing code for potential runtime errors, performing static analysis, checking safety properties, or verifying program behavior without execution.

abstract-trace-summarizerSkill

Performs abstract interpretation to produce summarized execution traces and high-level program behavior representations. Highlights key control flow paths, variable relationships, loop invariants, function summaries, and potential runtime states using abstract domains (intervals, signs, nullness, etc.). Use when analyzing program behavior, understanding execution paths, computing loop invariants, tracking variable ranges, detecting potential runtime errors, or generating program summaries without concrete execution.

acsl-annotation-assistantSkill

Create ACSL (ANSI/ISO C Specification Language) formal annotations for C/C++ programs. Use this skill when working with formal verification, adding function contracts (requires/ensures), loop invariants, assertions, memory safety annotations, or any ACSL specifications. Supports Frama-C verification and generates comprehensive formal specifications for C/C++ code.

agent-browserSkill

CLI-based browser automation with persistent page state using ref-based element interaction. Use when users ask to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.

ambiguity-detectorSkill

Detects and analyzes ambiguous language in software requirements and user stories. Use when reviewing requirements documents, user stories, specifications, or any software requirement text to identify vague quantifiers, unclear scope, undefined terms, missing edge cases, subjective language, and incomplete specifications. Provides detailed analysis with clarifying questions and suggested improvements.

api-design-assistantSkill

Design and review APIs with suggestions for endpoints, parameters, return types, and best practices. Use when designing new APIs from requirements, reviewing existing API designs, generating API documentation, or getting implementation guidance. Supports REST APIs with focus on endpoint structure, request/response schemas, authentication, pagination, filtering, versioning, and OpenAPI specifications. Triggers when users ask to design, review, document, or improve APIs.