alert-management

aj-geddes/useful-ai-prompts · updated Apr 8, 2026

$npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill alert-management
0 commentsdiscussion
summary

Design and implement sophisticated alert management systems with PagerDuty integration, escalation policies, alert routing, and incident coordination.

skill.md

Alert Management

Table of Contents

Overview

Design and implement sophisticated alert management systems with PagerDuty integration, escalation policies, alert routing, and incident coordination.

When to Use

  • Setting up alert routing
  • Managing on-call schedules
  • Coordinating incident response
  • Creating escalation policies
  • Integrating alerting systems

Quick Start

Minimal working example:

// pagerduty-client.js
const axios = require("axios");

class PagerDutyClient {
  constructor(apiToken) {
    this.apiToken = apiToken;
    this.baseUrl = "https://api.pagerduty.com";
    this.eventUrl = "https://events.pagerduty.com/v2/enqueue";

    this.client = axios.create({
      baseURL: this.baseUrl,
      headers: {
        Authorization: `Token token=${apiToken}`,
        Accept: "application/vnd.pagerduty+json;version=2",
      },
    });
  }

  async triggerEvent(config) {
    const event = {
      routing_key: config.routingKey,
      event_action: config.eventAction || "trigger",
      dedup_key: config.dedupKey || `event-${Date.now()}`,
      payload: {
        summary: config.summary,
// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

Guide Contents
PagerDuty Client Integration PagerDuty Client Integration
Alertmanager Configuration Alertmanager Configuration
Alert Handler Middleware Alert Handler Middleware
Alert Routing Engine Alert Routing Engine
Docker Compose Alert Stack Docker Compose Alert Stack

Best Practices

✅ DO

  • Set appropriate thresholds
  • Implement alert deduplication
  • Use clear alert names
  • Include runbook links
  • Configure escalation properly
  • Test alert rules
  • Monitor alert quality
  • Set repeat intervals
  • Track alert metrics
  • Document alert meanings

❌ DON'T

  • Alert on every anomaly
  • Ignore alert fatigue
  • Set thresholds arbitrarily
  • Skip runbooks
  • Alert without action
  • Disable alerts in production
  • Use vague alert names
  • Forget escalation policies
  • Re-alert too frequently

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.570 reviews
  • Amina Li· Dec 28, 2024

    alert-management fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Xiao Li· Dec 24, 2024

    alert-management is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Kaira Harris· Dec 20, 2024

    alert-management reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Alexander Khanna· Dec 20, 2024

    Registry listing for alert-management matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Dhruvi Jain· Dec 8, 2024

    alert-management is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Anika Anderson· Dec 8, 2024

    alert-management fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Alexander Sharma· Dec 4, 2024

    Registry listing for alert-management matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Alexander Wang· Nov 27, 2024

    We added alert-management from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Oshnikdeep· Nov 23, 2024

    Keeps context tight: alert-management is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • James Thomas· Nov 23, 2024

    Solid pick for teams standardizing on skills: alert-management is focused, and the summary matches what you get after install.

showing 1-10 of 70

1 / 7