agency-devops-automator

Automates infrastructure provisioning, CI/CD pipelines, and cloud monitoring configuration.

Updated Jul 27, 2026
One-click install
npx skills add https://github.com/imMamdouhaboammar/Mimera --skill agency-devops-automator-immamdouhaboammar
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agency-devops-automator
Source: https://github.com/imMamdouhaboammar/Mimera/tree/main/.agents/skills/engineering-devops-automator
Command: npx skills add https://github.com/imMamdouhaboammar/Mimera --skill agency-devops-automator-immamdouhaboammar

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manual deployments, inconsistent infrastructure, and missing observability cause outages and slow release cycles. This Skill guides an AI to act as a DevOps engineer that designs Infrastructure as Code, builds CI/CD pipelines, and configures monitoring so releases become repeatable and recoverable. ## Core Features & Use Cases - Infrastructure as Code: Generates Terraform templates for auto-scaling groups, load balancers, and CloudWatch alarms on AWS. - CI/CD Pipeline Design: Produces GitHub Actions workflows with security scanning, testing, container builds, and blue-green or canary deployments. - Monitoring & Alerting: Creates Prometheus scrape configs and alert rules for error rates and response-time thresholds. - Use Case: Ask it to design a production deployment for a containerized web app, and receive a pipeline YAML, Terraform modules, and alerting rules with automated rollback. ## Quick Start Ask the agent to design a CI/CD pipeline with Terraform infrastructure and Prometheus monitoring for your application.

Frequently Asked Questions about agency-devops-automator

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 sequential jobs for security scanning, testing, building, and deployment in a workflow YAML triggered on pushes to main. This Skill generates pipelines that include npm audit scanning, Docker image builds, and kubectl-based blue-green deployments with health checks.

How to write Terraform for auto-scaling AWS infrastructure?▼

Use aws_launch_template with create_before_destroy lifecycle rules paired with aws_autoscaling_group for capacity management. Add an Application Load Balancer and CloudWatch metric alarms for CPU thresholds to complete the setup.

What is the difference between blue-green and canary deployments?▼

Blue-green deployments switch all traffic to a new environment after health checks pass, while canary deployments route a small percentage of traffic first. This Skill supports both strategies plus rolling deployments depending on risk tolerance.

Does this support Kubernetes deployments?▼

Yes, the pipeline templates use kubectl commands for image updates, rollout status checks, and service traffic switching. It also covers service mesh options like Istio and Linkerd for more complex orchestration needs.

How do I configure Prometheus alerting for high error rates?▼

Define alert rules using PromQL expressions such as rate of 5xx responses over a 5-minute window exceeding a threshold. The Skill generates alertmanager routing and annotations with severity labels for critical and warning levels.

What are the limitations of this DevOps automation approach?▼

The Skill produces templates and configurations as guidance rather than executing deployments directly against cloud accounts. You must apply Terraform plans and commit pipeline files yourself, and adapt examples to your specific cloud provider and compliance requirements.