Install
$ agentstack add skill-stbenjam-skillsaw-incident-response ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Incident Response
Guide the on-call engineer through incident triage, investigation, and resolution for production issues.
When to Use This Skill
Use when a PagerDuty alert fires or a user reports a production issue that needs immediate investigation.
Implementation Steps
Step 1: Gather Context
Collect information about the incident:
- Alert source and timestamp
- Affected service and environment
- Error rate and latency changes from monitoring
Step 2: Investigate
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
Step 3: Identify Root Cause
Correlate findings with recent changes:
git log --oneline --since="2 hours ago"
kubectl rollout history deployment/$SERVICE -n production
Step 4: Mitigate
If a recent deployment is the cause, roll back:
kubectl rollout undo deployment/$SERVICE -n production
Step 5: Document
Create an incident report with:
- Timeline of events
- Root cause analysis
- Resolution steps taken
- Action items to prevent recurrence
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: stbenjam
- Source: stbenjam/skillsaw
- License: Apache-2.0
- Homepage: https://skillsaw.org/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.