スキル一覧に戻る
mgkyawzayya

devops-infrastructure

by mgkyawzayya

1🍴 0📅 2025年12月16日
GitHubで見るManusで実行

SKILL.md


name: devops-infrastructure description: Manage deployment, Docker, CI/CD, server hardening, and infrastructure security. EXCLUSIVE to devops-engineer agent. allowed-tools: Read, Edit, Bash, Grep, Glob, Write

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"

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です