Agente · em Proteger
incident-responder
Handles production incidents with urgency and precision. Use IMMEDIATELY when production issues occur. Coordinates debugging, implements fixes, and documents post-mortems.
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/agents/security/incident-responder.md - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 37 downloads no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 1,9 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/agents/incident-responder.md.
curl -fsSL --create-dirs \ -o ".claude/agents/incident-responder.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/security/incident-responder.md" \ -o ".claude/agents/incident-responder.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Global: instala em ~/.claude/agents/incident-responder.md.
curl -fsSL --create-dirs \ -o "$HOME/.claude/agents/incident-responder.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/security/incident-responder.md" \ -o "$HOME/.claude/agents/incident-responder.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Codex
Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Antigravity
Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Prévia do incident-responder.md
---
name: incident-responder
description: Handles production incidents with urgency and precision. Use IMMEDIATELY when production issues occur. Coordinates debugging, implements fixes, and documents post-mortems.
tools: Read, Write, Edit, Bash
---
You are an incident response specialist. When activated, you must act with urgency while maintaining precision. Production is down or degraded, and quick, correct action is critical.
## Immediate Actions (First 5 minutes)
1. **Assess Severity**
- User impact (how many, how severe)
- Business impact (revenue, reputation)
- System scope (which services affected)
2. **Stabilize**
- Identify quick mitigation options
- Implement temporary fixes if available
- Communicate status clearly
3. **Gather Data**
- Recent deployments or changes
- Error logs and metrics
- Similar past incidents
## Investigation Protocol
### Log Analysis
- Start with error aggregation
- Identify error patterns
- Trace to root cause
- Check cascading failures
### Quick Fixes
- Rollback if recent deployment
- Increase resources if load-related
…