Token导航 LogoToken导航TokenDH.com
运维和基础设施external-servicegithub未标认证来源可访问clear审计异常

devops-engineer开发工程师

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

3,264

周安装

136

GitHub Stars

76

下载量

1,088
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:devops-engineer(开发工程师)
来源仓库:https://github.com/404kidwiz/claude-supercode-skills
仓库路径:skills/devops-engineer
安装命令:
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill devops-engineer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill devops-engineer

简介

提供高级 DevOps 工程能力,专注于 CI/CD 自动化、基础设施即代码和容器编排。

  • 适用于设计部署流水线、实现 IaC 方案、构建 Kubernetes 集群及设置监控平台。
  • 通过 Terraform、Ansible 等工具自动化云资源管理,优化部署流程与成本性能。
  • 安装命令:npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill devops-engineer
  • 需确认目标环境、账号权限与区域配置,避免在生产环境直接删除或重启关键服务

SKILL.md

DevOps Engineer

Purpose

Provides senior-level DevOps engineering expertise for CI/CD automation, infrastructure as code, container orchestration, and operational excellence. Specializes in building scalable deployment pipelines, cloud infrastructure automation, monitoring systems, and SRE practices across AWS, Azure, and GCP platforms.

When to Use

  • Designing end-to-end CI/CD pipelines from requirements to production
  • Implementing infrastructure as code (Terraform, Ansible, CloudFormation, Bicep)
  • Building container orchestration systems (Kubernetes, Docker, Helm)
  • Setting up monitoring and observability platforms (Prometheus, Grafana, ELK)
  • Automating deployment workflows and release management
  • Optimizing cloud infrastructure costs and performance
  • Implementing GitOps workflows and continuous delivery practices

Quick Start

Invoke this skill when:

  • Designing end-to-end CI/CD pipelines from requirements to production
  • Implementing infrastructure as code (Terraform, Ansible, CloudFormation)
  • Building container orchestration systems (Kubernetes, Docker, Helm)
  • Setting up monitoring and observability platforms (Prometheus, Grafana, ELK)
  • Automating deployment workflows and release management
  • Optimizing cloud infrastructure costs and performance

Do NOT invoke when:

  • Simple script automation exists (use backend-developer instead)
  • Only code review needed without DevOps context
  • Pure infrastructure architecture decisions (use cloud-architect for strategy)
  • Database-specific operations (use database-administrator)
  • Application-level debugging (use debugger skill)

Core Workflows Summary

Workflow 1: Build Complete CI/CD Pipeline from Scratch

Use case: Greenfield project needs full DevOps automation

Requirements Gathering Checklist:

  • Deployment Frequency (hourly/daily/weekly)
  • Tech Stack (language/framework, database, frontend)
  • Infrastructure (cloud provider, auto-scaling needs)
  • Testing (unit, integration, security scans)
  • Compliance (audit logging, approval gates, secrets management)

Workflow 2: Infrastructure as Code

Use case: Manage cloud resources declaratively with Terraform

Key Components:

  • State management (S3 backend with DynamoDB locking)
  • Module composition (VPC, EKS, RDS)
  • Environment separation (dev/staging/production)
  • Tagging strategy for cost allocation

Workflow 3: Container Orchestration

Use case: Deploy applications to Kubernetes

Key Components:

  • Helm charts for templating
  • Deployments with rolling updates
  • Services and Ingress configuration
  • ConfigMaps and Secrets management
  • Resource limits and health checks

Decision Framework

GitOps Workflow Selection

Deployment Strategy Selection
├─ Small team (<5 developers)
│   └─ Push-based CI/CD (GitHub Actions, GitLab CI)
│       • Simpler to set up
│       • Direct kubectl/helm in pipeline
│
├─ Medium team (5-20 developers)
│   └─ GitOps with ArgoCD
│       • Git as single source of truth
│       • Automatic sync with self-heal
│       • Audit trail for all changes
│
└─ Large enterprise (20+ developers)
    └─ GitOps with ArgoCD + ApplicationSets
        • Multi-cluster management
        • Environment promotion
        • Tenant isolation

Deployment Strategy Selection

StrategyRollback SpeedRiskComplexityUse Case
Rolling UpdateMedium (minutes)LowLowStandard deployments
Blue-GreenInstantVery LowMediumZero-downtime critical apps
CanaryFastVery LowHighGradual rollout with metrics
RecreateN/AHighLowDev/test environments only

Quality Checklist

CI/CD Pipeline

  • Build stage completes in <5 minutes
  • All tests pass (unit, integration, security scans)
  • Automated rollback on failure
  • Deployment notifications configured (Slack/email)
  • Pipeline as code (version controlled)

Infrastructure

  • All infrastructure defined as code (Terraform/CloudFormation)
  • Multi-environment support (dev/staging/production)
  • Auto-scaling policies configured
  • Disaster recovery tested (RTO/RPO documented)
  • Cost monitoring and budget alerts active

Containerization

  • Multi-stage Dockerfiles (optimized image size)
  • Security scanning passed (Trivy, Snyk)
  • Resource limits defined for all containers
  • Health checks implemented (liveness + readiness)
  • Runs as non-root user

Monitoring

  • Metrics collection configured (Prometheus/CloudWatch)
  • Dashboards created for key services
  • Alerts defined with runbooks
  • Log aggregation working (ELK/Loki)
  • Distributed tracing enabled (Jaeger/X-Ray)

Security

  • Secrets stored in vault (not in code)
  • RBAC configured (least privilege)
  • Network policies defined (zero trust)
  • Vulnerability scanning automated
  • Audit logging enabled

Documentation

  • Architecture diagrams created
  • Runbooks documented for common issues
  • Onboarding guide for new team members
  • Disaster recovery procedures tested
  • CI/CD pipeline documented

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

28.99%
按下载量换算315

Claude Code

22.8%
按下载量换算248

Codex

19.01%
按下载量换算207

Cursor

13.65%
按下载量换算149

Gemini CLI

7.83%
按下载量换算85

Antigravity

3.93%
按下载量换算43

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills