alert-management
Implement comprehensive alert management with PagerDuty, escalation policies, and incident coordination. Use when setting up alerting systems, managing on-call schedules, or coordinating incident response.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o alert-management.zip https://jpskill.com/download/21318.zip && unzip -o alert-management.zip && rm alert-management.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21318.zip -OutFile "$d\alert-management.zip"; Expand-Archive "$d\alert-management.zip" -DestinationPath $d -Force; ri "$d\alert-management.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
alert-management.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
alert-managementフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 7
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
アラート管理
目次
概要
PagerDuty連携、エスカレーションポリシー、アラートルート、インシデント調整機能を備えた高度なアラート管理システムを設計・実装します。
使用場面
- アラートルートの設定
- オンコールスケジュールの管理
- インシデント対応の調整
- エスカレーションポリシーの作成
- アラートシステムの統合
クイックスタート
最小限の動作例:
// 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,
// ... (完全な実装についてはリファレンスガイドを参照してください)
リファレンスガイド
references/ ディレクトリにある詳細な実装:
| ガイド | 内容 |
|---|---|
| PagerDuty Client Integration | PagerDutyクライアント統合 |
| Alertmanager Configuration | Alertmanager設定 |
| Alert Handler Middleware | アラートハンドラーミドルウェア |
| Alert Routing Engine | アラートルートエンジン |
| Docker Compose Alert Stack | Docker Composeアラートスタック |
ベストプラクティス
✅ 実施すべきこと
- 適切なしきい値を設定する
- アラートの重複排除を実装する
- 明確なアラート名を使用する
- ランブックのリンクを含める
- エスカレーションを適切に設定する
- アラートルールをテストする
- アラートの品質を監視する
- 繰り返し間隔を設定する
- アラートメトリクスを追跡する
- アラートの意味を文書化する
❌ 実施すべきでないこと
- すべての異常でアラートを出す
- アラート疲労を無視する
- しきい値を恣意的に設定する
- ランブックを省略する
- アクションなしでアラートを出す
- 本番環境でアラートを無効にする
- 曖昧なアラート名を使用する
- エスカレーションポリシーを忘れる
- 頻繁に再アラートを出す
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
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
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (2,761 bytes)
- 📎 references/alert-handler-middleware.md (2,836 bytes)
- 📎 references/alert-routing-engine.md (1,569 bytes)
- 📎 references/alertmanager-configuration.md (1,341 bytes)
- 📎 references/docker-compose-alert-stack.md (790 bytes)
- 📎 references/pagerduty-client-integration.md (3,719 bytes)
- 📎 scripts/validate-api.sh (440 bytes)