Rami — DevOps Engineer AI Skill

ラミ — DevOpsエンジニア AI Skill

$24.00
セール価格  $24.00 通常価格 
製品情報へスキップ
Rami — DevOps Engineer AI Skill

ラミ — DevOpsエンジニア AI Skill

$24.00
セール価格  $24.00 通常価格 
Instant download Claude & ChatGPT Keep forever

Instant download · 30-day money-back guarantee. Pay once, keep forever — no subscription. Refund policy

支払い方法
  • American Express
  • Apple Pay
  • Bancontact
  • BLIK
  • Google Pay
  • Klarna
  • Maestro
  • Mastercard
  • MobilePay
  • PayPal
  • Union Pay
  • Visa

初回から確実に動作するCI/CD、Docker、Kubernetes、Terraformを手に入れましょう — インフラはコードで管理し、勘に頼りません。

  • キャッシュ、ロールバックトリガー、セキュリティスキャンを備えたCI/CD
  • マルチステージDockerfileとHelmチャート
  • ステートロック、多クラウドパターンを備えたTerraformモジュール
  • Prometheus/Grafanaによる可観測性とランブック

DevOpsおよびプラットフォームエンジニア、自分のインフラを管理する開発者。DevOpsの契約者は時給120ドル以上請求します — これは1つのファイルで、あなたのものです。

// what's inside

ClaudeにRamiを投入すれば、初回から動くCI/CDパイプライン、Dockerfile、Kubernetes設定、Terraformモジュールを書くシニアDevOpsエンジニアが手に入ります — Infrastructure as code、推測ではなく確実なインフラ構築を。

本番で壊れるコピペ設定はなし。Ramiは適切なキャッシュ、ロールバックトリガー、セキュリティスキャンを組み込んだパイプラインを設計し、問題発生時のためのランブックも提供します。GitHub Actions、Kubernetes、Terraform、AWS、完全な可観測性スタックが1つのskillファイルに。

提供内容

  • CI/CDパイプライン — GitHub Actions、GitLab CI、Jenkinsのマトリックスビルド、レイヤーキャッシュ、シークレット管理、ステージングゲート、自動ロールバックトリガー
  • Docker — マルチステージビルド、distrolessイメージ、Trivy/Snykセキュリティスキャン、タグ付け戦略、マルチアーキビルド、ローカル開発用docker-compose
  • Kubernetes — デプロイメント、HPA、PDB、Helmチャート、liveness/readinessプローブ、Ingress設定、完全なkubectlデバッグワークフロー
  • Infrastructure as code — S3ステートロッキング付きTerraformモジュール、Pulumi、Ansibleプレイブック、CloudFormation、AWS CDKスタック設計
  • AWS、GCP、Azure — VPC設計、EKS/GKE、ALB、Route 53、CloudFront、RDS、IAM最小権限ポリシー、マルチクラウドパターン
  • モニタリングスタック — Prometheus PromQL、Grafanaダッシュボード、ELK/EFKログ、PagerDutyアラート、SLI/SLO定義、エラーバジェット追跡
  • リリースエンジニアリング — ArgoCD/Fluxによるブルーグリーン、カナリア、GitOpsデプロイメント、Vaultによるシークレット管理、blamelessポストモーテムプロセス
📄 claude-devops-engineer.skill
2分以内でインストール完了
Claude、ChatGPT、あらゆるAIチャットに対応

インストール方法

.skillパッケージをダウンロード → Claudeを開く → SKILL.mdをProject Instructionsまたはsystem promptに貼り付け → インフラの問題を説明 → Claudeが設定を書きます。それだけです。

claude-devops-engineer.md
# Rami — DevOpsエンジニア AI Skill

あなたはRami、シニアDevOpsエンジニアです。インフラはコードとして管理し、推測で構築することはありません。コピー&ペーストした設定で本番環境が壊れることもありません。

## あなたの役割
- キャッシュ、ロールバック、セキュリティスキャンを備えたCI/CDパイプラインの構築
- Docker、Kubernetes、Terraform、そしてフルオブザーバビリティスタックの運用
- AWS/GCP/Azureの設計とリリースエンジニアリング

## あなたの働き方
1. 最初からキャッシュ、ゲート、ロールバックを備えたパイプラインを構築する
2. セキュリティスキャンを後付けではなく組み込む
3. 障害時のためのランブックを引き継ぐ

Excerpt from the actual file you'll download.

// try it
prompt
$name: CI/CD Pipeline on: push: branches: - main env: ECR_REGISTRY: .dkr.ecr..amazonaws.com ECR_REPOSITORY: your-node-app IMAGE_TAG: ${{ github.sha }} jobs: build: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - name: Set up Node.js uses: actions/setup-node@v3 with: node-version: '16' - name: Install dependencies run: npm install - name: Run tests run: npm test - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v2 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-region: - name: Login to Amazon ECR id: login-ecr uses: aws-actions/amazon-ecr-login@v1 - name: Build, tag, and push Docker image run: | docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG deploy: needs: build runs-on: ubuntu-latest steps: - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v2 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-region: - name: Setup kubectl uses: azure/setup-kubectl@v3 with: version: 'latest' - name: Update kubeconfig run: | aws eks update-kubeconfig --name --region - name: Deploy to EKS with rollback on failure run: | kubectl set image deployment/your-node-app your-node-app=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG kubectl rollout status deployment/your-node-app --timeout=120s || (kubectl rollout undo deployment/your-node-app && exit 1)
Ramiのリターン:キャッシュ、シークレット、ステージングゲートを備えたGitHub Actionsパイプライン → セキュリティスキャンを行うマルチステージDockerfile → プローブと自動ロールバックトリガーを備えたKubernetesマニフェスト → それでも問題が発生したときのためのランブック。
// how to install Under 2 minutes

Four steps. Any AI chat.

  1. 01
    Download the file

    After checkout, the download link lands in your inbox. Save the file anywhere on your device.

  2. 02
    Open your AI chat

    Claude, ChatGPT, Gemini, Grok, or Copilot — whichever one you already use.

  3. 03
    Paste the file contents

    Drop it into the system prompt, Project instructions, or custom instructions field.

  4. 04
    Start working

    Your AI is now configured as a specialist. Ask it anything inside its domain.

No technical knowledge required. No subscription. Pay once, keep forever.

// compatible with

Works with every major AI chat.

Drop the file into your AI's system prompt, Project instructions, or custom instructions. No setup. No code. No vendor lock-in.

  • Claude
  • ChatGPT
  • Gemini
  • Grok
  • Copilot

Works with any AI chat that accepts a system prompt or custom instructions.

Ready to specialise your AI?

One drop-in file. Pay once, keep forever — works with Claude & ChatGPT.

// faq

この製品に関する質問

こちらもおすすめ