setting-up-devops

Automate CI/CD pipelines and infrastructure as code deployments.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/sekka/dotfiles --skill setting-up-devops
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: setting-up-devops
Source: https://github.com/sekka/dotfiles/tree/main/home/.claude/skills/setting-up-devops
Command: npx skills add https://github.com/sekka/dotfiles --skill setting-up-devops

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

CI/CDパイプライン設計・運用自動化とIaCによるインフラ管理を支援します。

Core Features & Use Cases

  • パイプライン設計と自動テスト統合
  • デプロイ戦略(Blue-Green、Canary、ローリング)
  • IaCと監視設計

Quick Start

まずは簡易CI/CDパイプラインの雛形を作成します。

Frequently Asked Questions about setting-up-devops

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

FAQPage Schema
How do I set up a CI/CD pipeline for automated deployments?

A CI/CD pipeline automates building, testing, and deploying code through stages. Design your pipeline to trigger on commits, run tests, and deploy to staging and production using tools like Terraform for infrastructure and Kubernetes for container orchestration, reducing manual configuration errors.

What deployment strategies should I use to minimize downtime?

Blue-Green, Canary, and rolling deployments are core strategies. Blue-Green switches traffic between environments instantly; Canary gradually routes to new versions; rolling replaces instances progressively. Choose based on risk tolerance and rollback requirements.

How do I manage infrastructure as code with CI/CD?

Infrastructure as code (IaC) integrates Terraform or CloudFormation into your pipeline to version-control and automate infrastructure provisioning. Version control IaC templates, validate in CI stages, and deploy automatically to staging and production environments.

Can I automate security scanning within my deployment pipeline?

Yes, security scanning integrates into CI/CD workflows as a pipeline stage. Scan dependencies, container images, and code before staging and production deployment to catch vulnerabilities early and enforce compliance automatically.

How do I add monitoring and observability to automated deployments?

Observability integration monitors code, staging, and production stages post-deployment. Configure logging, metrics, and alerting alongside pipeline stages to detect issues immediately and correlate deployments with system behavior.