Loading...
Loading...
Comprehensive DevOps skill for CI/CD, infrastructure automation, containerization, and cloud platforms (AWS, GCP, Azure). Includes pipeline setup, infrastructure as code, deployment automation, and monitoring. Use when setting up pipelines, deploying applications, managing infrastructure, implementing monitoring, or optimizing deployment processes.
npx skill4agent add davila7/claude-code-templates senior-devops# Script 1: Pipeline Generator
python scripts/pipeline_generator.py [options]
# Script 2: Terraform Scaffolder
python scripts/terraform_scaffolder.py [options]
# Script 3: Deployment Manager
python scripts/deployment_manager.py [options]python scripts/pipeline_generator.py <project-path> [options]python scripts/terraform_scaffolder.py <target-path> [--verbose]python scripts/deployment_manager.py [arguments] [options]references/cicd_pipeline_guide.mdreferences/infrastructure_as_code.mdreferences/deployment_strategies.md# Install dependencies
npm install
# or
pip install -r requirements.txt
# Configure environment
cp .env.example .env# Use the analyzer script
python scripts/terraform_scaffolder.py .
# Review recommendations
# Apply fixesreferences/cicd_pipeline_guide.mdreferences/infrastructure_as_code.mdreferences/deployment_strategies.md# Development
npm run dev
npm run build
npm run test
npm run lint
# Analysis
python scripts/terraform_scaffolder.py .
python scripts/deployment_manager.py --analyze
# Deployment
docker build -t app:latest .
docker-compose up -d
kubectl apply -f k8s/references/deployment_strategies.mdreferences/cicd_pipeline_guide.mdreferences/infrastructure_as_code.mdreferences/deployment_strategies.mdscripts/