jpskill.com
📦 その他 コミュニティ

runbook-creation

Create operational runbooks, playbooks, standard operating procedures (SOPs), and incident response guides. Use when documenting operational procedures, on-call guides, or incident response processes.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o runbook-creation.zip https://jpskill.com/download/21520.zip && unzip -o runbook-creation.zip && rm runbook-creation.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21520.zip -OutFile "$d\runbook-creation.zip"; Expand-Archive "$d\runbook-creation.zip" -DestinationPath $d -Force; ri "$d\runbook-creation.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して runbook-creation.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → runbook-creation フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
8

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

ランブック作成

目次

概要

一般的な運用タスク、インシデント対応、システムメンテナンスのための段階的な手順を提供する、包括的な運用ランブックを作成します。

使用場面

  • インシデント対応手順
  • 標準作業手順書 (SOPs)
  • オンコールプレイブック
  • システムメンテナンスガイド
  • ディザスタリカバリ手順
  • デプロイメントランブック
  • エスカレーション手順
  • サービス復旧ガイド

クイックスタート

最小限の動作例:


# Incident Response Runbook

## Quick Reference

**Severity Levels:**

- P0 (Critical): Complete outage, data loss, security breach
- P1 (High): Major feature down, significant user impact
- P2 (Medium): Minor feature degradation, limited user impact
- P3 (Low): Cosmetic issues, minimal user impact

**Response Times:**

- P0: Immediate (24/7)
- P1: 15 minutes (business hours), 1 hour (after hours)
- P2: 4 hours (business hours)
- P3: Next business day

**Escalation Contacts:**

- On-call Engineer: PagerDuty rotation
- Engineering Manager: +1-555-0100
- VP Engineering: +1-555-0101
- CTO: +1-555-0102

// ... (see reference guides for full implementation)
```

## リファレンスガイド

`references/` ディレクトリにある詳細な実装:

| ガイド | 内容 |
|---|---|
| [Symptoms](references/symptoms.md) | 症状、重要度:P0 (Critical)、初期対応 (5分) |
| [Investigation Steps](references/investigation-steps.md) | 調査手順 |
| [Resolution Steps](references/resolution-steps.md) | 解決手順 |
| [Verification](references/verification.md) | 検証 |
| [Communication](references/communication.md) | コミュニケーション |
| [Post-Incident](references/post-incident.md) | インシデント後 |

## ベストプラクティス

### ✅ DO

- 上部にクイックリファレンスセクションを含める
- 実行する正確なコマンドを提供する
- 期待される出力を文書化する
- 検証手順を含める
- コミュニケーションテンプレートを追加する
- 重要度レベルを明確に定義する
- エスカレーションパスを文書化する
- 役立つリンクと連絡先を含める
- ランブックを最新の状態に保つ
- ランブックを定期的にテストする
- スクリーンショット/図を含める
- よくある落とし穴を文書化する

### ❌ DON'T

- 曖昧な指示を使用する
- 検証手順を省略する
- 前提条件の文書化を忘れる
- ツールの知識を前提とする
- コミュニケーションガイドラインを省略する
- インシデント後に更新を忘れる
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Runbook Creation

Table of Contents

Overview

Create comprehensive operational runbooks that provide step-by-step procedures for common operational tasks, incident response, and system maintenance.

When to Use

  • Incident response procedures
  • Standard operating procedures (SOPs)
  • On-call playbooks
  • System maintenance guides
  • Disaster recovery procedures
  • Deployment runbooks
  • Escalation procedures
  • Service restoration guides

Quick Start

Minimal working example:


# Incident Response Runbook

## Quick Reference

**Severity Levels:**

- P0 (Critical): Complete outage, data loss, security breach
- P1 (High): Major feature down, significant user impact
- P2 (Medium): Minor feature degradation, limited user impact
- P3 (Low): Cosmetic issues, minimal user impact

**Response Times:**

- P0: Immediate (24/7)
- P1: 15 minutes (business hours), 1 hour (after hours)
- P2: 4 hours (business hours)
- P3: Next business day

**Escalation Contacts:**

- On-call Engineer: PagerDuty rotation
- Engineering Manager: +1-555-0100
- VP Engineering: +1-555-0101
- CTO: +1-555-0102

// ... (see reference guides for full implementation)
```

## Reference Guides

Detailed implementations in the `references/` directory:

| Guide | Contents |
|---|---|
| [Symptoms](references/symptoms.md) | Symptoms, Severity: P0 (Critical), Initial Response (5 minutes) |
| [Investigation Steps](references/investigation-steps.md) | Investigation Steps |
| [Resolution Steps](references/resolution-steps.md) | Resolution Steps |
| [Verification](references/verification.md) | Verification |
| [Communication](references/communication.md) | Communication |
| [Post-Incident](references/post-incident.md) | Post-Incident |

## Best Practices

### ✅ DO

- Include quick reference section at top
- Provide exact commands to run
- Document expected outputs
- Include verification steps
- Add communication templates
- Define severity levels clearly
- Document escalation paths
- Include useful links and contacts
- Keep runbooks up-to-date
- Test runbooks regularly
- Include screenshots/diagrams
- Document common gotchas

### ❌ DON'T

- Use vague instructions
- Skip verification steps
- Forget to document prerequisites
- Assume knowledge of tools
- Skip communication guidelines
- Forget to update after incidents

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。