devops-engineer

Designs CI/CD pipelines and manages infrastructure as code across cloud platforms.

Updated Mar 14, 2026
One-click install
npx skills add https://github.com/beelabstudio/ai --skill devops-engineer-beelabstudio
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: devops-engineer
Source: https://github.com/beelabstudio/ai/tree/main/skills/enabling/devops-engineer
Command: npx skills add https://github.com/beelabstudio/ai --skill devops-engineer-beelabstudio

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams struggle to ship software reliably when builds, deployments, and infrastructure provisioning are manual and inconsistent. This Skill provides DevOps expertise to automate delivery pipelines, codify infrastructure, and keep environments observable and secure. ## Core Features & Use Cases - CI/CD Pipeline Design: Build automated build, test, and deployment workflows with GitHub Actions, GitLab CI, Jenkins, or CircleCI. - Infrastructure as Code: Provision and version infrastructure using Terraform, Pulumi, or CloudFormation across AWS, GCP, and Azure. - Container Orchestration: Configure Docker containers and Kubernetes, ECS, or Docker Swarm clusters for staging and production. - Monitoring & Security: Set up Prometheus, Grafana, ELK, or Datadog observability and manage secrets with Vault or SOPS. - Use Case: A team migrating a monolith to containers asks for a GitHub Actions pipeline that builds Docker images, deploys to Kubernetes via Helm, and wires Prometheus alerting. ## Quick Start Ask the DevOps engineer to design a GitHub Actions CI/CD pipeline that builds a Docker image and deploys it to a Kubernetes cluster managed with Terraform.

Frequently Asked Questions about devops-engineer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a CI/CD pipeline with GitHub Actions?▼

Define workflow files in YAML that trigger on pushes or pull requests, running build, test, and deployment jobs. The pipeline can build Docker images and deploy to Kubernetes or cloud platforms, with secrets stored in Vault or SOPS.

Terraform vs Pulumi for infrastructure as code?▼

Terraform uses declarative HCL and has a large provider ecosystem, while Pulumi lets you write infrastructure in general-purpose languages like TypeScript or Python. Both are supported for provisioning across AWS, GCP, and Azure.

Which container orchestration platform should I use?▼

Kubernetes suits complex, scalable production workloads, ECS integrates tightly with AWS services, and Docker Swarm offers simpler clustering for smaller deployments. The choice depends on team size, cloud provider, and scaling requirements.

Can I manage secrets without hardcoding credentials in pipelines?▼

Yes, use Vault or SOPS for secrets management instead of embedding credentials in pipeline definitions or code. These tools encrypt secrets at rest and integrate with CI/CD systems for controlled runtime access.

How do I add monitoring and alerting to my infrastructure?▼

Deploy Prometheus for metrics collection with Grafana dashboards for visualization, or use Datadog for a managed alternative. For logs, the ELK Stack or Loki aggregates output from containers and services with configurable alerting rules.