incident-commander
Installation
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
Related skills