Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计提醒

devops-incident-responderDevOps 事件响应者

Agent Skill

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

总安装

2,545

周安装

105

GitHub Stars

76

下载量

832
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于辅助云资源、部署、容器和基础设施管理,适合检查配置、整理部署步骤或生成排障思路。

  • 适用于需要自动化运维、CI/CD 流水线搭建或多环境部署的场景。
  • 通过 GitHub 安装,提供事件响应手册和根因分析模板。
  • 使用时需明确目标环境、账号权限和资源组,区分测试与生产操作。
  • 涉及删除或修改网络配置时应先评估影响范围,避免误操作导致服务中断。

SKILL.md

Incident Response Engineer

Purpose

Provides incident management and reliability engineering expertise specializing in rapid outage response, root cause analysis, and automated remediation. Focuses on minimizing MTTR (Mean Time To Recovery) through effective triage, communication, and prevention strategies.

When to Use

  • Responding to active production incidents (Outage, Latency spike, Error rate increase)
  • Establishing or improving On-Call rotation and escalation policies
  • Writing or executing Runbooks/Playbooks
  • Conducting Blameless Postmortems (RCA)
  • Setting up ChatOps (Slack/Teams integration with PagerDuty)
  • Implementing automated remediation (Self-healing systems)


2. Decision Framework

Incident Severity Levels

LevelCriteriaResponseSLA (Response)
SEV-1Critical user impact (Site Down, Data Loss).Wake up everyone. CEO notified.15 mins
SEV-2Major feature broken (Checkout fails).Wake up on-call.30 mins
SEV-3Minor issue (Internal tool slow).Handle next business day.8 business hours
SEV-4Trivial bug / Cosmetic.Backlog.N/A

Triage Methodology (USE Method)

For every resource (CPU, Memory, Disk), check:

  1. Utilization: % time busy (e.g., 99% CPU)
  2. Saturation: Queue length (e.g., Load Average)
  3. Errors: Count of error events

Response Roles (ICS Framework)

  • Incident Commander (IC): Leads the response. Makes decisions. Does NOT touch the keyboard.
  • Ops Lead: Technical lead making changes.
  • Comms Lead: Updates stakeholders/status page.

Red Flags → Escalate to security-engineer:

  • Evidence of compromise (Ransomware note, suspicious SSH logs)
  • DDoS attack patterns (verify with netstat / WAF logs)
  • Data exfiltration signals (High outbound bandwidth)


Workflow 2: Automated Remediation (StackStorm / Lambda)

Goal: Fix "Disk Full" alerts without human intervention.

Steps:

  1. Trigger

- Prometheus Alert: DiskSpaceLow (> 90%). - Webhook → Remediation Service.

  1. Action

- SSH to host / Pod exec. - Run cleanup: docker system prune -f or journalctl --vacuum-time=1d. - Expand Volume (EBS Modify).

  1. Notification

- Post to Slack: "Disk space low on host-123. Cleanup ran. Space reclaimed: 5GB."



4. Patterns & Templates

Pattern 1: Circuit Breaker

Use case: Preventing cascading failures when a dependency acts up.

# Istio DestinationRule
apiVersion: networking.istio.io/v1beta1
kind: DestinationRule
metadata:
  name: reviews
spec:
  host: reviews
  trafficPolicy:
    connectionPool:
      http:
        http1MaxPendingRequests: 1
        maxRequestsPerConnection: 1
    outlierDetection:
      consecutive5xxErrors: 1
      interval: 1s
      baseEjectionTime: 3m
      maxEjectionPercent: 100

Pattern 2: Runbook Template

# Runbook: High Database CPU

**Severity:** SEV-2
**Trigger:** RDS CPU > 90% for 5 mins

## 1. Triage
- Check [Database Dashboard](link).
- Is it a specific query? (See "Top SQL" panel).

## 2. Mitigation Actions
- **Option A (Bad Query):** Kill the session.
  `SELECT pg_terminate_backend(pid) FROM pg_stat_activity WHERE ...`
- **Option B (Traffic Spike):** Scale Read Replicas (Terraform apply).
- **Option C (Maintenance):** Stop non-essential cron jobs.

## 3. Escalation
- If CPU remains > 95% for 15 mins, page @database-team.

Pattern 3: Status Page Update

Use case: Clear communication to users.

  • Investigating: "We are investigating reports of slow loading times on the dashboard. Our team is looking into it."
  • Identified: "We have identified the issue as a database connection pool limit. We are working on increasing capacity."
  • Monitoring: "A fix has been implemented and we are monitoring the results."
  • Resolved: "The issue has been resolved. All systems operational."


6. Integration Patterns

devops-engineer:

  • Handoff: Responder identifies "Drift" as cause → DevOps implements GitOps (ArgoCD) to enforce state.
  • Collaboration: Improving observability (adding logs/metrics) in the platform.
  • Tools: Terraform, Prometheus.

backend-developer:

  • Handoff: Responder identifies bug causing outage → Developer fixes bug.
  • Collaboration: Defining SLOs (Service Level Objectives) and Error Budgets.
  • Tools: Sentry, Datadog APM.

security-engineer:

  • Handoff: Responder notices weird traffic patterns → Security analyzes for DDoS/Breach.
  • Collaboration: Managing secrets rotation during incidents.
  • Tools: CloudTrail, WAF.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.74%
按下载量换算247

OpenCode

20.41%
按下载量换算170

Codex

17.48%
按下载量换算145

Gemini CLI

11.31%
按下载量换算94

Cursor

7.2%
按下载量换算60

Antigravity

3.08%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills