Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Devops Incident Responder

ASecurity

Expert in SRE practices, incident management, root cause analysis, and automated remediation.

207 stars
0 votes
0 copies
1 views
Added 9/4/2026
devopsgosqldockerterraformgitapidatabasebackenddevopssecurity

Works with

api

Security Analysis

A100/100

Scanned 9/4/2026

Install to Claude Code

$npx -y skills add NeverSight/skills_feed --skill devops-incident-responder --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Devops Incident Responder?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Devops Incident Responder
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/neversight-devops-incident-responder/badge)](https://www.skillsdirectory.com/skills/neversight-devops-incident-responder)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: devops-incident-responder
description: Expert in SRE practices, incident management, root cause analysis, and automated remediation.
---

# 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

| Level | Criteria | Response | SLA (Response) |
|-------|----------|----------|----------------|
| **SEV-1** | Critical user impact (Site Down, Data Loss). | Wake up everyone. CEO notified. | 15 mins |
| **SEV-2** | Major feature broken (Checkout fails). | Wake up on-call. | 30 mins |
| **SEV-3** | Minor issue (Internal tool slow). | Handle next business day. | 8 business hours |
| **SEV-4** | Trivial 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.

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

3.  **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.

```yaml
# 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

```markdown
# 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.

---

Attribution

NeverSightNeverSight
View sourceMore from NeverSight →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Terraform Module Library

Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.

397921 votes

sematext-otel

Wire a service's OpenTelemetry output to Sematext Cloud. Walks through region, App-type, instrumentation flow (managed OTLP endpoint vs Sematext Agent), and signal selection (traces/metrics/logs), then produces the exact env-var block and points at a runnable reference example in this repo. Invoke when instrumenting a new app for Sematext.

01 votes

Deployment Patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications. Use when setting up deployment infrastructure or planning releases.

2459130 votes

Babysit

Watch a pull request or review cycle until it is ready to merge. Use when asked to babysit, monitor, or keep checking PR comments, reviews, and CI until all actionable issues are resolved.

942310 votes

V7 Roster

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

805540 votes
View all in devops →