Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

incident-commander事件指挥官

Agent Skill

incident-commander 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,032

周安装

83

GitHub Stars

103

下载量

651
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:incident-commander(事件指挥官)
来源仓库:https://github.com/borghei/claude-skills
仓库路径:skills/incident-commander
安装命令:
npx skills add https://github.com/borghei/claude-skills --skill incident-commander
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/borghei/claude-skills --skill incident-commander

简介

incident-commander 对事件分级、重构时间线并生成结构化复盘报告,含根因分析与行动项。

  • 适用于运维或 SRE 团队处理故障响应与事后改进,可在指定宿主环境中调用。
  • 通过 npx skills add 从 GitHub 安装,具体输入格式与输出见仓库文档。
  • 安装前建议确认权限范围与维护状态,注意是否触发日志读取或外部系统集成。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Incident Commander

The agent classifies incident severity, reconstructs timelines from heterogeneous event sources, and generates structured post-incident reviews with root cause analysis and action items.


Quick Start

# Classify an incident (JSON or stdin)
echo '{"description": "Database connections timing out", "affected_users": "80%", "business_impact": "high"}' \
  | python scripts/incident_classifier.py --format text

# Multi-dimensional severity scoring
python scripts/severity_classifier.py incident.json --format markdown

# Reconstruct timeline with phase detection and gap analysis
python scripts/timeline_reconstructor.py --input events.json --detect-phases --gap-analysis --format markdown

# Build structured timeline with MTTD/MTTR metrics
python scripts/incident_timeline_builder.py incident_data.json --format markdown

# Generate Post-Incident Review
python scripts/pir_generator.py --incident incident.json --rca-method fishbone --action-items --format markdown

# Generate postmortem with benchmark comparisons
python scripts/postmortem_generator.py incident_data.json --format markdown

Tools Overview

ToolInputOutput
incident_classifier.pyIncident description JSONSeverity level, response teams, communication templates
severity_classifier.pyIncident data with impact/signalsMulti-dimensional score across 5 weighted dimensions
timeline_reconstructor.pyTimestamped events arrayChronological timeline with phases and gap analysis
incident_timeline_builder.pyIncident + events JSONTimeline with MTTD/MTTR, phase distribution, comms templates
pir_generator.pyIncident data + optional timelinePIR document with RCA (5 Whys, Fishbone, Timeline, Bow Tie)
postmortem_generator.pyIncident + resolution + action itemsPostmortem with benchmarks, factor analysis, coverage gaps

Workflow 1: Incident Response (Detection to Resolution)

Step 1 -- Classify severity.

python scripts/severity_classifier.py incident.json --format json

The agent scores across five dimensions: revenue impact (25%), user scope (25%), data/security risk (20%), service criticality (15%), blast radius (15%).

SeverityDefinitionResponse TimeComms Cadence
SEV-1Complete outage, data loss, security breach15 minEvery 15 min
SEV-2Partial degradation, >25% users affected30 minEvery 30 min
SEV-3Single feature affected, workaround available2 hoursAt milestones
SEV-4Cosmetic, dev/test only, no user impactNext business dayStandard cycle

Validation checkpoint: Severity classification includes confidence score and recommended escalation path.

Step 2 -- Establish command.

The Incident Commander:

  • Assigns within 5 min (SEV-1) or 30 min (SEV-2)
  • Creates war room and incident tracking ticket
  • Sends initial notification using generated template
  • Coordinates between technical teams and stakeholders
  • Shields responders from external distractions

Step 3 -- Investigate and mitigate.

The agent generates targeted investigation commands based on the affected service:

kubectl get pods -n production -l app=<service>
kubectl logs -l app=<service> --tail=100
helm history <service> -n production

Decision framework for SEV-1/SEV-2:

  • Bias toward action over analysis
  • Prefer rollbacks to risky fixes under pressure
  • Document every decision for later review
  • Consult SMEs but do not block on them

Step 4 -- Communicate.

The agent generates three communication templates per severity:

  1. Internal notification -- technical details, response team, war room link
  2. Executive summary -- business impact, ETA, leadership actions required
  3. Customer communication -- impact scope, what is being done, next update time

Validation checkpoint: All stakeholders notified within committed timeframes.


Workflow 2: Post-Incident Review

Step 1 -- Reconstruct the timeline.

python scripts/timeline_reconstructor.py --input events.json --detect-phases --gap-analysis --format markdown

The agent accepts events from logs, alerts, Slack messages, and deployment systems. Each event needs a timestamp and description. Optional fields: source, type, actor, severity.

Supported phases: detection, declaration, escalation, investigation, mitigation, communication, resolution.

Step 2 -- Perform root cause analysis.

python scripts/pir_generator.py --incident incident.json --timeline timeline.json --rca-method five_whys --action-items

Available RCA methods:

MethodBest For
five_whysLinear causal chains, quick analysis
fishboneMulti-category analysis (People, Process, Technology, Environment)
timelineIdentifying missed decision points and delays
bow_tieBarriers analysis, prevention and mitigation controls

Step 3 -- Generate action items.

The agent categorizes action items as: immediate_fix, process_improvement, monitoring_alerting, documentation, training, architectural, tooling.

Each action item includes: title, owner, priority, deadline, success criteria, and dependencies.

Step 4 -- Validate postmortem quality.

python scripts/postmortem_generator.py incident_data.json --format json

The agent checks:

  • Every contributing factor has at least one action item (coverage gap detection)
  • Action items have quality scores (0-100) based on specificity
  • MTTD/MTTR benchmarked against industry standards
  • Missing actions suggested for uncovered themes

Validation checkpoint: Zero coverage gaps. All P0 action items have owners and deadlines within 48 hours.


Workflow 3: Escalation Management

Technical escalation path:

LevelRoleSEV-1 TriggerSEV-2 Trigger
L1On-call engineerImmediate15 min
L2Senior engineer / Team lead30 min1 hour
L3Engineering Manager / Staff45 min2 hours
L4Director / CTO1 hour4 hours

Business escalation:

SeverityDurationEscalate To
SEV-1ImmediateVP Engineering
SEV-130 minCTO + Customer Success VP
SEV-11 hourCEO + Full Executive Team
SEV-22 hoursVP Engineering
SEV-24 hoursCTO

Anti-Patterns

  1. Individual blame in postmortems -- focus on system failures. "Why did the process allow this?" not "Why did Alice do this?"
  2. Skipping PIR for SEV-2 -- every SEV-1 and SEV-2 gets a postmortem within 3 business days.
  3. Action items without owners -- every item needs a specific person and deadline.
  4. Deploying fixes under pressure without validation -- validate fixes before declaring resolution; plan for secondary failures.
  5. Communication gaps -- provide updates even when there is no new information.

Troubleshooting

ProblemCauseSolution
Classifier assigns SEV1 to minor issuesDescription keywords trigger high severity without impact dataProvide affected_users percentage and business_impact fields
Timeline shows "No valid events found"Timestamps in unsupported format or missing timestamp keyUse ISO-8601, YYYY-MM-DD HH:MM:SS, or Unix epoch
PIR produces shallow 5 WhysIncident data lacks detailEnrich input with affected_services, customer_impact; supply timeline via --timeline
Postmortem marks all action items invalidMissing required fieldsEach action item needs title, owner, priority, deadline
Severity score seems too lowFlat description without structured impact dataProvide full schema with impact, signals, context keys

References

GuidePath
Incident Response Frameworkreferences/incident-response-framework.md
Severity Matrixreferences/incident_severity_matrix.md
Communication Templatesreferences/communication_templates.md
RCA Frameworks Guidereferences/rca_frameworks_guide.md
SLA Managementreferences/sla-management-guide.md

Integration Points

SkillIntegration
senior-devopsMonitoring alerts feed timeline; runbook templates inform playbooks
senior-secopsSecurity incidents auto-escalate to SEV-1; breach indicators trigger SecOps response
release-orchestratorDeployment events feed timeline; rollback data informs release gates
senior-architectArchitectural root causes escalate to architecture review
code-reviewerPIR action items route to code review workflows

Last Updated: April 2026 Version: 1.1.0

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.84%
按下载量换算220

Claude

30.88%
按下载量换算201

Cursor

18.8%
按下载量换算122

Gemini CLI

8.61%
按下载量换算56

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills