Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    mgkyawzayya

    devops-infrastructure

    mgkyawzayya/devops-infrastructure
    DevOps
    1

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Manage deployment, Docker, CI/CD, server hardening, and infrastructure security. EXCLUSIVE to devops-engineer agent.

    SKILL.md

    DevOps Infrastructure

    Exclusive to: devops-engineer agent

    Instructions

    1. Review existing infrastructure files (Dockerfile, docker-compose, .github/workflows)
    2. Understand deployment requirements
    3. Propose configuration with rollback plan
    4. Implement with safety checks
    5. 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 Servers
    Vercel
    Vercel
    Cloudflare
    Cloudflare
    Gitlab
    Gitlab
    Repository
    mgkyawzayya/claude-code-usage-flow
    Files