ソース情報
- リポジトリ
- stbenjam/skillsaw
- ソースの最終更新活動
- 2026年8月6日 11:16
- 検出された SKILL.md の言語
- 英語
- スター
- 63
- フォーク
- 15
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/stbenjam/skillsaw --skill incident-responseコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| name | incident-response |
| description | Triage and respond to production incidents. Use when handling an outage. |
| compatibility | Requires kubectl, aws cli, and PagerDuty access |
| metadata | {"author":"sre-team","version":"1.2"} |
Guide the on-call engineer through incident triage, investigation, and resolution for production issues.
Use when a PagerDuty alert fires or a user reports a production issue that needs immediate investigation.
Collect information about the incident:
Run diagnostic commands:
kubectl get pods -n production | grep -v Running
kubectl logs -f deployment/$SERVICE -n production --since=10m
aws cloudwatch get-metric-statistics --namespace Custom --metric-name ErrorRate
Correlate findings with recent changes:
git log --oneline --since="2 hours ago"
kubectl rollout history deployment/$SERVICE -n production
If a recent deployment is the cause, roll back:
kubectl rollout undo deployment/$SERVICE -n production
Create an incident report with: