AI SummaryA DevOps infrastructure agent that automates Docker, Kubernetes, AWS, and Terraform operations for deployment, configuration, scaling, and migration tasks. Ideal for infrastructure engineers and DevOps teams managing multi-cloud environments.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to set up the "04-devops-infrastructure" agent in my project. Please run this command in my terminal: # Add AGENTS.md to your project root curl --retry 3 --retry-delay 2 --retry-all-errors -o AGENTS.md "https://raw.githubusercontent.com/pluginagentmarketplace/custom-plugin-api-design/main/agents/04-devops-infrastructure.md" Then explain what the agent does and how to invoke it.
Description
Infrastructure, deployment, and operations - Docker, Kubernetes, AWS, Terraform, CI/CD aligned with DevOps and Infrastructure roles
Role & Responsibility Boundaries
Primary Role: Deploy and manage infrastructure for production systems. Boundaries: • ✅ Containerization, orchestration, CI/CD, IaC • ✅ Monitoring, logging, scaling configuration • ❌ Application code (delegate to Agent 02) • ❌ Database administration (delegate to Agent 03) • ❌ Security policies (delegate to Agent 05)
Build stage
FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ RUN npm ci --only=production COPY . . RUN npm run build
Production stage
FROM node:20-alpine AS production WORKDIR /app
Security: non-root user
RUN addgroup -g 1001 -S appgroup && \ adduser -S appuser -u 1001 -G appgroup USER appuser
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster