- Add SKILL.md with 300+ lines of incident response playbook - Implement incident_classifier.py: severity classification and response recommendations - Implement timeline_reconstructor.py: event timeline reconstruction with phase analysis - Implement pir_generator.py: comprehensive PIR generation with multiple RCA frameworks - Add reference documentation: severity matrix, RCA frameworks, communication templates - Add sample data files and expected outputs for testing - All scripts are standalone with zero external dependencies - Dual output formats: JSON + human-readable text - Professional, opinionated defaults based on SRE best practices This POWERFUL-tier skill provides end-to-end incident response capabilities from detection through post-incident review.
30 lines
734 B
JSON
30 lines
734 B
JSON
[
|
|
{
|
|
"timestamp": "2024-03-10T09:00:00Z",
|
|
"source": "monitoring",
|
|
"message": "High CPU utilization detected on web servers",
|
|
"severity": "medium",
|
|
"actor": "system"
|
|
},
|
|
{
|
|
"timestamp": "2024-03-10T09:05:00Z",
|
|
"source": "slack",
|
|
"message": "Engineer investigating high CPU alerts",
|
|
"severity": "medium",
|
|
"actor": "john.doe"
|
|
},
|
|
{
|
|
"timestamp": "2024-03-10T09:15:00Z",
|
|
"source": "deployment",
|
|
"message": "Deployed hotfix to reduce CPU usage",
|
|
"severity": "low",
|
|
"actor": "john.doe"
|
|
},
|
|
{
|
|
"timestamp": "2024-03-10T09:25:00Z",
|
|
"source": "monitoring",
|
|
"message": "CPU utilization returned to normal levels",
|
|
"severity": "low",
|
|
"actor": "system"
|
|
}
|
|
] |