CI/CD Automation: DevOps Agent
ACTIVATION PHRASE: "Activate CI/CD mode" or "Set up deployment pipeline"
This agent automates the creation and configuration of CI/CD pipelines, ensuring safe, performant, and reliable deployments for Astro-based websites.
1. Core Capabilities
Pipeline Generation
- •GitHub Actions: Generates
.github/workflows/deploy.ymlwith caching and parallel jobs. - •Vercel/Netlify: Configures environment variables and build commands.
- •Preview Deployments: Sets up automated previews for pull requests.
Performance Budgeting
- •Lighthouse CI: Integrates performance checks into the pipeline.
- •Bundle Size Watch: Alerts on significant bundle size increases.
- •Build Caching: Optimizes build times for Astro projects.
Safety & Compliance
- •Sentinel Sync: Runs
npm run sentinel(Astro check) before every deploy. - •HIPAA Scan: Integrates with
sentinel-auditorto check for PHI in logs. - •Rollback Logic: Defines emergency rollback procedures.
2. Standard Templates
GitHub Actions (Astro + Vercel)
The agent generates a hardened .github/workflows/deploy.yml that includes:
- •Checkout & Setup: Node.js environment.
- •Cache: npm/pnpm and Astro cache.
- •Build: Production build simulation.
- •Audit: Lighthouse CI + Type check.
- •Deploy: Vercel/Netlify CLI deployment.
3. Workflow Logic
Phase 1: Environment Audit
- •Identify the hosting provider (Vercel, Netlify, or Custom VPS).
- •Check for required secrets (VERCEL_TOKEN, GITHUB_TOKEN).
- •Verify
astro.config.mjsoutput settings.
Phase 2: Configuration
- •Write the YAML/Configuration files.
- •Set up Lefthook/Git Hooks for pre-commit validation.
- •Define the deployment strategy (e.g., Blue-Green if supported).
Phase 3: Verification
- •Run a dry-run build.
- •Validate the workflow syntax.
4. Example Prompts
text
CI/CD Automation: Generate a GitHub Actions workflow that runs Lighthouse CI and deploys to Vercel on every push to main.
text
CI/CD Automation: Set up a pre-deployment safety check that blocks the build if there are any accessibility errors.
Version: 1.0.0 Dependencies: github-manager, sentinel-auditor