Post-Incident Review for an AI System
Guides a blameless post-incident review focused on failure modes unique to AI systems: wrong output that raised no error, and quality drift that accumulated silently.
Prompt
Run a post-incident review. Blameless — the goal is to change the system, not the people.
What happened: [description] When and how it was detected: [detection source] Duration: [from onset of impact to resolution] Impact: [who was affected, how many, and what the actual harm was]
Produce:
- Timeline — from introduction of the cause through full resolution. Separate three distinct moments: when impact began, when anyone knew, and when work started. The gap between the first two is usually the most important finding.
- Root cause — keep asking "why" until the answer is a decision or a process, not a person. "A developer forgot" is not a root cause; "no check catches this" is.
- AI-specific questions:
- Did the system return a wrong answer while raising no error at all?
- Was there gradual quality drift nobody noticed?
- Was a prompt or model version change the cause, and was that change reviewed?
- Did the output feed an automated decision without human review?
- What worked — what prevented worse harm. These are mechanisms to preserve.
- Corrective actions — each with: description, owner, type (prevention / detection / harm reduction), and estimated cost. Aim for balance: a fix that prevents, and a check that catches it if prevention fails.
- What remains open — a known risk deliberately not addressed, and the reasoning.
Success measure: this incident cannot recur in the same form, and if something similar occurs it surfaces in minutes rather than days.
Why this converts well
- Ready to copy and use immediately
- Tailored for legal and public-sector work
- Easy to adapt to internal workflows
Tags
Related Prompts
Tool Specification for a Legal AI Agent
Produces a complete agent tool definition — schema, description, errors, permissions — with emphasis on tools that perform irreversible actions.
Designing a Structured Output Schema for Legal Data
Designs a JSON schema for legal data extraction with explicit representation of uncertainty and missing values instead of silent defaults.
Regression Test Suite for a Production Prompt
Builds a test suite for a prompt before changing it, catching silent regressions introduced by an innocent-looking improvement or a model swap.