Agent skill
devops-infrastructure
Manage deployment, Docker, CI/CD, server hardening, and infrastructure security. EXCLUSIVE to devops-engineer agent.
Install this agent skill to your Project
npx add-skill https://github.com/htooayelwinict/claude-config/tree/main/skills/devops-infrastructure
SKILL.md
DevOps Infrastructure
Exclusive to: devops-engineer agent
📚 Context7 (Memory) — Up-to-Date Docs
Lookup latest deployment patterns and configs:
mcp_context7_resolve-library-id(libraryName="docker", query="multi-stage build")
mcp_context7_query-docs(libraryId="/docker/docs", query="compose healthcheck")
Instructions
- Review existing infrastructure files (Dockerfile, docker-compose, .github/workflows)
- Understand deployment requirements
- Propose configuration with rollback plan
- Implement with safety checks
- Verify deployment succeeds
Docker Patterns
Multi-stage Build
FROM composer:2 AS vendor
# Install dependencies
FROM node:20-alpine AS assets
# Build frontend
FROM php:8.3-fpm-alpine
# Final production image
Docker Compose
services:
app:
build: .
db:
image: mysql:8.0
redis:
image: redis:alpine
CI/CD Workflow
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: composer test
Deployment Checklist
- Tests pass
- Environment variables set
- Database migrations ready
- Backup exists
- SSL configured
Examples
- "Create Dockerfile for Laravel"
- "Set up GitHub Actions pipeline"
- "Configure production environment"
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
documentation-management
Keep project documentation accurate when behavior changes. EXCLUSIVE to project-manager agent.
brainstorming
Brainstorm and advise on technical decisions using structured process and MCP helpers. EXCLUSIVE to brainstormer agent. Does NOT implement — only advises.
fullstack-implementation
Implement features end-to-end in Laravel 12 + Inertia.js + React 19 + TypeScript OR Python + FastAPI + LangChain. Use when building new features, wiring controllers to pages, or implementing CRUD operations. EXCLUSIVE to fullstack-developer agent.
deepagent
Expert guidance for DeepAgents framework - simplified agent creation with tool integration for LangChain/LangGraph workflows.
ui-ux-design
Design and implement UI/UX changes using existing components and Tailwind tokens; ensure accessibility. EXCLUSIVE to ui-ux-designer agent.
bugfix-and-debug
Diagnose errors and failing tests in Laravel + React + Python applications. Use when encountering bugs, exceptions, stack traces, 500 errors, TypeErrors, failing tests, or unexpected behavior. EXCLUSIVE to debugger agent.
Didn't find tool you were looking for?