๐ŸŽฏ

alerting-oncall

๐ŸŽฏSkill

from bagelhole/devops-security-agent-skills

VibeIndex|
What it does

Automates on-call alert routing, escalation, and notification workflows for DevOps and security incidents across multiple communication channels and incident management platforms.

๐Ÿ“ฆ

Part of

bagelhole/devops-security-agent-skills(85 items)

alerting-oncall

Installation

git cloneClone repository
git clone https://github.com/bagelhole/DevOps-Security-Agent-Skills.git ~/.skills/devops-security
๐Ÿ“– Extracted from docs: bagelhole/devops-security-agent-skills
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# ๐Ÿ›ก๏ธ DevOps & Security Agent Skills

Your AI-Powered Second Brain for Infrastructure & Security

Stop Googling. Start Shipping.

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)

[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)

[![Agent Skills](https://img.shields.io/badge/Format-Agent%20Skills-blueviolet.svg)](https://agentskills.io)


[Explore Skills](#skill-catalog) ยท [Get Started](#quick-start) ยท [Contribute](CONTRIBUTING.md)


  

  

  

  

  

  

  

---

๐Ÿ’ก The Problem

You're a solo founder, indie hacker, or one-person DevOps team. You need to:

  • Set up CI/CD pipelines across 5 different platforms
  • Harden your Linux servers (but you forgot the sysctl parameters)
  • Write that Terraform module for the 47th time
  • Remember how CloudTrail works... again
  • Configure Kubernetes security contexts properly
  • Actually understand what SOC2 needs

You can't remember everything. You shouldn't have to.

---

๐Ÿš€ The Solution

This repo is a comprehensive knowledge base designed to be loaded into AI agents. It's your DevOps second brain โ€” battle-tested scripts, production-ready configs, and expert knowledge organized using the [Agent Skills](https://agentskills.io) format:

| Domain | What You Get |

|--------|--------------|

| ๐Ÿ”ง DevOps | CI/CD, containers, K8s, observability, release management |

| ๐Ÿ”’ Security | Scanning, secrets, hardening, network security, incident response |

| โ˜๏ธ Infrastructure | AWS, Azure, GCP, servers, networking, databases, storage |

| ๐Ÿ“‹ Compliance | SOC2, HIPAA, GDPR, PCI-DSS, governance, auditing |

---

โœจ What's Inside

This isn't just documentation. Each skill includes:

```

skill/

โ”œโ”€โ”€ SKILL.md # AI-readable instructions & knowledge

โ”œโ”€โ”€ scripts/ # Ready-to-run automation scripts

โ”œโ”€โ”€ references/ # Deep-dive guides & cheatsheets

โ””โ”€โ”€ assets/ # Config templates & examples

```

๐ŸŽฏ Real Examples

Need to debug a crashing pod?

```bash

./devops/orchestration/kubernetes-ops/scripts/pod-debug.sh my-pod

```

Hardening a fresh Linux server?

```bash

./security/hardening/linux-hardening/scripts/harden-system.sh --apply

```

Setting up Vault from scratch?

```bash

./security/secrets/hashicorp-vault/scripts/vault-init.sh

```

Collecting evidence during an incident?

```bash

./security/operations/incident-response/scripts/collect-evidence.sh INC-2024-001

```

---

๐Ÿง  How It Works

[Agent Skills](https://agentskills.io) is an open format for extending AI agent capabilities. Here's the flow:

```

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”

โ”‚ 1. DISCOVER 2. MATCH 3. ACTIVATE โ”‚

โ”‚ โ”‚

โ”‚ Agent scans โ†’ User asks about โ†’ Agent reads full โ”‚

โ”‚ skill folders Kubernetes SKILL.md + runs โ”‚

โ”‚ at startup debugging scripts as needed โ”‚

โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

```

Each SKILL.md has YAML frontmatter (name + description) that agents load at startup for matching, and markdown instructions that get loaded only when the skill is activated. This keeps context usage efficient.

๐Ÿ“– Full spec: [agentskills.io/specification](https://agentskills.io/specification)

---

๐Ÿƒ Quick Start

1. Download the Skills

```bash

# Clone to your skills directory

git clone https://github.com/bagelhole/DevOps-Security-Agent-Skills.git ~/.skills/devops-security

# Or add as a submodule to your project

git submodule add https://github.com/bagelhole/DevOps-Security-Agent-Skills.git .skills/devops-security

```

2. Integrate with Your Agent

Filesystem-based agents (Cursor, Claude with computer use, Cline, etc.) are the easiest โ€” the agent can read skills directly:

```bash

# Agent reads skill when needed

cat ~/.skills/devops-security/devops/orchestration/kubernetes-ops/SKILL.md

```

Tool-based agents need skills injected into the system prompt. Use the [skills-ref](https://github.com/agentskills/agentskills/tree/main/skills-ref) CLI:

```bash

# Generate XML for your agent's system prompt

skills-ref to-prompt ~/.skills/devops-security/devops/ci-cd/*

# Output:

#

#

# github-actions

# Build, test, and deploy with GitHub Actions workflows...

# ~/.skills/devops-security/devops/ci-cd/github-actions/SKILL.md

#

# ...

#

```

3. Validate Skills (Optional)

```bash

# Check skill format is correct

skills-ref validate ~/.skills/devops-security/security/secrets/hashicorp-vault

```

For Humans

No agent? No problem. Browse the skills, copy the scripts, use the configs. It's MIT licensed โ€” go wild.

---

๐Ÿ“š Skill Catalog

๐Ÿ”ง DevOps

CI/CD

| Skill | Description |

|-------|-------------|

| [github-actions](devops/ci-cd/github-actions/) | Build, test, and deploy with GitHub Actions |

| [gitlab-ci](devops/ci-cd/gitlab-ci/) | GitLab CI/CD pipelines and runners |

| [jenkins](devops/ci-cd/jenkins/) | Jenkins pipelines and shared libraries |

| [azure-devops](devops/ci-cd/azure-devops/) | Azure Pipelines and release management |

| [circleci](devops/ci-cd/circleci/) | CircleCI workflows and orbs |

Containers

| Skill | Description |

|-------|-------------|

| [docker-management](devops/containers/docker-management/) | Docker images, multi-stage builds, optimization |

| [docker-compose](devops/containers/docker-compose/) | Multi-container applications |

| [podman](devops/containers/podman/) | Rootless container management |

| [container-registries](devops/containers/container-registries/) | ECR, ACR, GCR, Docker Hub |

Orchestration

| Skill | Description |

|-------|-------------|

| [kubernetes-ops](devops/orchestration/kubernetes-ops/) | Deploy, scale, troubleshoot K8s |

| [helm-charts](devops/orchestration/helm-charts/) | Helm chart development and deployment |

| [argocd-gitops](devops/orchestration/argocd-gitops/) | GitOps with ArgoCD |

| [kustomize](devops/orchestration/kustomize/) | Kubernetes manifest customization |

| [openshift](devops/orchestration/openshift/) | OpenShift cluster management |

Observability

| Skill | Description |

|-------|-------------|

| [prometheus-grafana](devops/observability/prometheus-grafana/) | Metrics and dashboards |

| [elk-stack](devops/observability/elk-stack/) | Elasticsearch, Logstash, Kibana |

| [loki-logging](devops/observability/loki-logging/) | Grafana Loki log aggregation |

| [datadog](devops/observability/datadog/) | Datadog monitoring and APM |

| [new-relic](devops/observability/new-relic/) | New Relic observability |

| [alerting-oncall](devops/observability/alerting-oncall/

More from this repository10

๐ŸŽฏ
circleci๐ŸŽฏSkill

Skill

๐ŸŽฏ
systemd-services๐ŸŽฏSkill

Skill

๐ŸŽฏ
business-continuity๐ŸŽฏSkill

Generates comprehensive business continuity and disaster recovery plans by analyzing infrastructure configurations, identifying potential risks, and recommending resilience strategies across cloud ...

๐ŸŽฏ
gcp-gke๐ŸŽฏSkill

Automates Google Kubernetes Engine (GKE) cluster provisioning, configuration, and security hardening using best practices and infrastructure-as-code principles.

๐ŸŽฏ
database-backups๐ŸŽฏSkill

Automates database backup strategies, generating secure, consistent backup configurations and scripts across multiple database systems and cloud platforms.

๐ŸŽฏ
sast-scanning๐ŸŽฏSkill

Performs automated static application security testing (SAST) on source code to identify potential security vulnerabilities and coding risks before deployment.

๐ŸŽฏ
postgresql๐ŸŽฏSkill

Automates PostgreSQL database security hardening, configuration management, and best practices implementation for DevOps and cloud infrastructure.

๐ŸŽฏ
cis-benchmarks๐ŸŽฏSkill

Validates and recommends security configurations for infrastructure and systems against Center for Internet Security (CIS) benchmark standards and best practices.

๐ŸŽฏ
ssl-tls-management๐ŸŽฏSkill

Manages SSL/TLS certificate lifecycle, including generation, validation, rotation, and secure configuration across infrastructure and cloud environments.

๐ŸŽฏ
nfs-storage๐ŸŽฏSkill

Configures and manages Network File System (NFS) storage resources, providing automated setup and security best practices for distributed file storage in cloud and on-premises environments.