Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

senior-devops高级开发人员

Agent Skill

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

总安装

533

周安装

22

GitHub Stars

公开资料未说明

下载量

174
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add rickydwilson-dcs/claude-skills --skill "senior-devops"

简介

senior-devops 用于辅助云资源、部署、容器、基础设施和运维自动化任务。

  • 它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。
  • 使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源或修改网络配置时应先确认影响范围。
  • 通过 GitHub 安装,使用 npx skills add rickydwilson-dcs/claude-skills --skill "senior-devops" 命令即可集成。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。

SKILL.md

name
senior-devops
title
Senior Devops Skill Package
description
Comprehensive DevOps skill for CI/CD, infrastructure automation, containerization, and cloud platforms (AWS, GCP, Azure). Includes pipeline setup, infrastructure as code, deployment automation, and monitoring. Use when setting up pipelines, deploying applications, managing infrastructure, implementing monitoring, or optimizing deployment processes.
domain
engineering
subdomain
devops-operations
difficulty
advanced
time-saved
TODO: Quantify time savings
frequency
TODO: Estimate usage frequency
use-cases
related-agents
[]
related-skills
[]
related-commands
[]
orchestrated-by
[]
dependencies
scripts
[pipeline_generator.py, terraform_scaffolder.py, deployment_manager.py, servicenow_change_manager.py]
references
[cicd_pipeline_guide.md, infrastructure_as_code.md, deployment_strategies.md, servicenow_change_mgmt.md]
assets
[servicenow-change-template.json]
compatibility
python-version
3.8+
platforms
[macos, linux, windows]
tech-stack
[Python 3.8+, Markdown]
examples
title
Example Usage
input
TODO: Add example input for senior-devops
output
TODO: Add expected output
stats
downloads
0
stars
0
rating
0.0
reviews
0
version
v1.0.0
author
Claude Skills Team
contributors
[]
created
2025-10-19
updated
2025-11-23
license
MIT
tags
[automation, ci/cd, cloud, devops, engineering, senior, servicenow, change-management, itsm]
featured
false
verified
true

Senior Devops

Complete toolkit for senior devops with modern tools and best practices.

Overview

This skill provides comprehensive DevOps capabilities through three core Python automation tools and extensive reference documentation. Whether setting up CI/CD pipelines, automating infrastructure, deploying containerized applications, or implementing monitoring, this skill delivers production-ready DevOps solutions.

Senior DevOps engineers use this skill for continuous integration/deployment, infrastructure as code (Terraform), containerization (Docker, Kubernetes), cloud platforms (AWS, GCP, Azure), pipeline automation (GitHub Actions, CircleCI), and observability (Prometheus, Grafana). The skill covers deployment strategies, infrastructure automation, and reliability engineering.

Core Value: Accelerate deployment pipelines by 75%+ while improving reliability, consistency, and infrastructure automation through proven DevOps patterns and tools.

Quick Start

Main Capabilities

This skill provides four core capabilities through automated scripts:

# Script 1: Pipeline Generator
python scripts/pipeline_generator.py [options]

# Script 2: Terraform Scaffolder
python scripts/terraform_scaffolder.py [options]

# Script 3: Deployment Manager
python scripts/deployment_manager.py [options]

# Script 4: ServiceNow Change Manager - ITIL change request automation
python scripts/servicenow_change_manager.py --deployment-file deploy.json --change-type normal

Core Capabilities

  • CI/CD Pipeline Setup - GitHub Actions, CircleCI, GitLab CI configuration with automated testing, building, and deployment
  • Infrastructure as Code - Terraform scaffolding for AWS, GCP, Azure with modular architecture and state management
  • Container Orchestration - Docker and Kubernetes configuration, Helm charts, service mesh setup
  • Deployment Automation - Blue-green, canary, rolling deployments with automated rollback strategies
  • Monitoring & Observability - Prometheus, Grafana dashboards, logging (ELK/EFK), alerting, and incident response
  • Security & Compliance - Secret management, RBAC, network policies, security scanning in pipelines

Python Tools

1. Pipeline Generator

Generate production-ready CI/CD pipelines for multiple platforms.

Key Features:

  • GitHub Actions workflow generation
  • CircleCI config creation
  • GitLab CI pipeline templates
  • Multi-stage builds (test, build, deploy)
  • Automated testing integration
  • Docker image building and pushing

Common Usage:

# Generate GitHub Actions pipeline
python scripts/pipeline_generator.py --platform github --language nodejs --output .github/workflows/

# CircleCI pipeline
python scripts/pipeline_generator.py --platform circleci --language python --test pytest

# Full stack pipeline
python scripts/pipeline_generator.py --platform github --stack fullstack --deploy kubernetes

# Help
python scripts/pipeline_generator.py --help

Use Cases:

  • Setting up CI/CD for new projects
  • Standardizing pipelines across teams
  • Adding deployment stages to existing pipelines

2. Terraform Scaffolder

Scaffold infrastructure as code with Terraform best practices.

Key Features:

  • Modular Terraform structure generation
  • AWS, GCP, Azure provider templates
  • Remote state configuration (S3, GCS, Azure Blob)
  • Module organization (networking, compute, database)
  • Variable and output management
  • Security best practices built-in

Common Usage:

# Scaffold AWS infrastructure
python scripts/terraform_scaffolder.py --provider aws --modules vpc,eks,rds --output infrastructure/

# GCP infrastructure
python scripts/terraform_scaffolder.py --provider gcp --modules gke,cloudsql --remote-state gcs

# Multi-environment setup
python scripts/terraform_scaffolder.py --provider aws --environments dev,staging,prod

# Help
python scripts/terraform_scaffolder.py --help

Use Cases:

  • Starting new infrastructure projects
  • Organizing existing Terraform code
  • Creating reusable infrastructure modules

3. Deployment Manager

Automate application deployments with multiple strategies.

Key Features:

  • Blue-green deployment automation
  • Canary release management
  • Rolling update strategies
  • Automated rollback on failure
  • Health check integration
  • Multi-environment deployment

Common Usage:

# Blue-green deployment
python scripts/deployment_manager.py --strategy blue-green --app myapp --version v2.0

# Canary deployment
python scripts/deployment_manager.py --strategy canary --app myapp --version v2.0 --canary-percentage 10

# Rollback
python scripts/deployment_manager.py --rollback --app myapp --to-version v1.9

# Help
python scripts/deployment_manager.py --help

Use Cases:

  • Zero-downtime deployments
  • Testing new releases with minimal risk
  • Automating deployment workflows

4. ServiceNow Change Manager

Generate ServiceNow change request payloads from deployment configurations for ITIL-compliant change management.

Key Features:

  • Change request generation (Standard, Normal, Emergency)
  • Automatic risk assessment based on deployment scope
  • Backout plan documentation from deployment config
  • Test plan generation with validation steps
  • CMDB Configuration Item linking
  • CAB approval workflow support
  • curl command generation for API testing

Common Usage:

# Generate normal change request from deployment
python scripts/servicenow_change_manager.py \
  --deployment-file deploy-config.json \
  --change-type normal \
  --ci-names "pandora-api-prod,pandora-db-prod" \
  --start-time "2025-01-15T10:00:00Z" \
  --end-time "2025-01-15T12:00:00Z" \
  --output json

# Generate standard change (pre-approved)
python scripts/servicenow_change_manager.py \
  --deployment-file deploy-config.json \
  --change-type standard \
  --output curl

# Generate emergency change for hotfix
python scripts/servicenow_change_manager.py \
  --deployment-file hotfix.json \
  --change-type emergency \
  --output curl

# Help
python scripts/servicenow_change_manager.py --help

Use Cases:

  • ITIL-compliant deployment change management
  • Audit trail for production deployments
  • CAB approval automation
  • Compliance tracking (SOX, PCI-DSS)
  • Linking deployments to CMDB Configuration Items

See servicenow_change_mgmt.md for change management best practices.

See cicd_pipeline_guide.md for comprehensive documentation.

Reference Documentation

Cicd Pipeline Guide

Comprehensive guide available in references/cicd_pipeline_guide.md:

  • Detailed patterns and practices
  • Code examples
  • Best practices
  • Anti-patterns to avoid
  • Real-world scenarios

Infrastructure As Code

Complete workflow documentation in references/infrastructure_as_code.md:

  • Step-by-step processes
  • Optimization strategies
  • Tool integrations
  • Performance tuning
  • Troubleshooting guide

Deployment Strategies

Technical reference guide in references/deployment_strategies.md:

  • Technology stack details
  • Configuration examples
  • Integration patterns
  • Security considerations
  • Scalability guidelines

ServiceNow Change Management

ITIL change management integration guide in references/servicenow_change_mgmt.md:

  • Change request types (Standard, Normal, Emergency)
  • Deployment-to-change workflow automation
  • Change Request API patterns
  • CAB approval workflows
  • CI/CD pipeline integration (GitHub Actions, Jenkins)
  • Risk assessment and impact analysis
  • Backout plan documentation
  • Post-implementation review

Tech Stack

Languages: TypeScript, JavaScript, Python, Go, Swift, Kotlin Frontend: React, Next.js, React Native, Flutter Backend: Node.js, Express, GraphQL, REST APIs Database: PostgreSQL, Prisma, NeonDB, Supabase DevOps: Docker, Kubernetes, Terraform, GitHub Actions, CircleCI Cloud: AWS, GCP, Azure

Key Workflows

1. CI/CD Pipeline Setup

Time: 2-3 hours for complete pipeline

  1. Define Pipeline Stages - Test, build, scan, deploy stages with appropriate triggers
  2. Generate Pipeline Configuration - Use pipeline generator for platform-specific config
   # Generate GitHub Actions pipeline
   python scripts/pipeline_generator.py --platform github --language nodejs --deploy kubernetes
  1. Configure Secrets - Setup repository secrets for cloud credentials, API keys
  2. Test Pipeline - Trigger test run, validate all stages execute correctly
  3. Enable Branch Protection - Require pipeline success before merging

See cicd_pipeline_guide.md for pipeline patterns.

2. Infrastructure Provisioning with Terraform

Time: 4-6 hours for initial infrastructure

  1. Design Infrastructure - Define required resources (networking, compute, database, storage)
  2. Scaffold Terraform - Generate modular Terraform structure
   # Scaffold AWS infrastructure
   python scripts/terraform_scaffolder.py --provider aws --modules vpc,eks,rds --output infrastructure/
  1. Configure Remote State - Setup S3/GCS backend for state management
  2. Apply Infrastructure - Plan and apply Terraform configuration
   terraform init
   terraform plan -out=tfplan
   terraform apply tfplan
  1. Document Architecture - Create diagrams and runbooks

See infrastructure_as_code.md for IaC best practices.

3. Kubernetes Application Deployment

Time: 3-4 hours for initial deployment

  1. Containerize Application - Create optimized Dockerfile with multi-stage build
  2. Create Kubernetes Manifests - Deployment, Service, Ingress, ConfigMap, Secret
  3. Deploy Application - Use deployment manager for controlled rollout
   # Blue-green deployment
   python scripts/deployment_manager.py --strategy blue-green --app myapp --version v1.0
  1. Configure Monitoring - Setup Prometheus metrics, Grafana dashboards
  2. Test & Validate - Health checks, load testing, rollback testing

4. Monitoring & Alerting Setup

Time: 2-3 hours for complete observability stack

  1. Deploy Monitoring Stack - Prometheus, Grafana, Alertmanager
  2. Configure Metrics Collection - Application metrics, infrastructure metrics, logs
  3. Create Dashboards - Service health, resource usage, error rates
  4. Setup Alerts - Error rate thresholds, latency SLOs, capacity warnings
  5. Test Incident Response - Validate alerting, runbooks, escalation

See deployment_strategies.md for deployment and monitoring patterns.

Development Workflow

1. Setup and Configuration

# Install dependencies
npm install
# or
pip install -r requirements.txt

# Configure environment
cp .env.example .env

2. Run Quality Checks

# Use the analyzer script
python scripts/terraform_scaffolder.py .

# Review recommendations
# Apply fixes

3. Implement Best Practices

Follow the patterns and practices documented in:

  • references/cicd_pipeline_guide.md
  • references/infrastructure_as_code.md
  • references/deployment_strategies.md

Best Practices Summary

Code Quality

  • Follow established patterns
  • Write comprehensive tests
  • Document decisions
  • Review regularly

Performance

  • Measure before optimizing
  • Use appropriate caching
  • Optimize critical paths
  • Monitor in production

Security

  • Validate all inputs
  • Use parameterized queries
  • Implement proper authentication
  • Keep dependencies updated

Maintainability

  • Write clear code
  • Use consistent naming
  • Add helpful comments
  • Keep it simple

Common Commands

# Development
npm run dev
npm run build
npm run test
npm run lint

# Analysis
python scripts/terraform_scaffolder.py .
python scripts/deployment_manager.py --analyze

# Deployment
docker build -t app:latest .
docker-compose up -d
kubectl apply -f k8s/

Troubleshooting

Common Issues

Check the comprehensive troubleshooting section in references/deployment_strategies.md.

Getting Help

  • Review reference documentation
  • Check script output messages
  • Consult tech stack documentation
  • Review error logs

Resources

  • Pattern Reference: references/cicd_pipeline_guide.md
  • Workflow Guide: references/infrastructure_as_code.md
  • Technical Guide: references/deployment_strategies.md
  • ServiceNow Guide: references/servicenow_change_mgmt.md
  • ServiceNow Template: assets/servicenow-change-template.json
  • Tool Scripts: scripts/ directory

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

29.38%
按下载量换算51

windsurf

23.77%
按下载量换算41

trae

18.05%
按下载量换算31

OpenCode

14.07%
按下载量换算24

Codex

8.65%
按下载量换算15

Antigravity

3.9%
按下载量换算7

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills