Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

devops-cloud

verified

Master DevOps, cloud infrastructure, containerization, CI/CD, Kubernetes, and infrastructure as code. Use when deploying applications, setting up infrastructure, or managing cloud services.

View on GitHub

Marketplace

pluginagentmarketplace-typescript

pluginagentmarketplace/custom-plugin-typescript

Plugin

typescript-developer-plugin

Repository

pluginagentmarketplace/custom-plugin-typescript
1stars

skills/devops/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/pluginagentmarketplace/custom-plugin-typescript/blob/main/skills/devops/SKILL.md -a claude-code --skill devops-cloud

Installation paths:

Claude
.claude/skills/devops-cloud/
Powered by add-skill CLI

Instructions

# DevOps & Cloud Infrastructure Skill

## Quick Start - Docker

```dockerfile
FROM node:18-alpine

WORKDIR /app

COPY package*.json ./
RUN npm ci --only=production

COPY . .

EXPOSE 3000

CMD ["node", "server.js"]
```

```bash
# Build image
docker build -t myapp:1.0 .

# Run container
docker run -p 3000:3000 myapp:1.0
```

## Core Technologies

### Containerization
- Docker (images, containers, compose)
- Container registries
- Multi-stage builds
- Container security

### Orchestration
- Kubernetes (K8s)
- Helm package management
- Operators and controllers
- GitOps (ArgoCD, Flux)

### Cloud Platforms
- **AWS**: EC2, S3, RDS, Lambda, ECS, EKS
- **GCP**: Compute Engine, Cloud Run, Dataflow
- **Azure**: VMs, App Service, AKS

### CI/CD
- GitHub Actions
- GitLab CI/CD
- Jenkins
- CircleCI

### Infrastructure as Code
- Terraform
- CloudFormation
- Ansible
- Pulumi

### Monitoring
- Prometheus + Grafana
- ELK Stack (Elasticsearch, Logstash, Kibana)
- DataDog, New Relic
- CloudWatch

## Best Practices

1. **Automation** - Automate everything
2. **Infrastructure as Code** - Version control infrastructure
3. **Monitoring** - Comprehensive observability
4. **Security** - Defense in depth
5. **Documentation** - Keep runbooks current
6. **Testing** - Test infrastructure changes
7. **Versioning** - Version all configurations
8. **Disaster Recovery** - Regular DR testing

## Resources

- [Kubernetes Documentation](https://kubernetes.io/docs/)
- [Docker Documentation](https://docs.docker.com/)
- [Terraform Documentation](https://www.terraform.io/docs)
- [AWS Documentation](https://docs.aws.amazon.com/)

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1595 chars

Issues Found:

  • name_directory_mismatch