Generates a blameless post-mortem summary after a bug fix or complex debugging session, preserving knowledge for human review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/debugging-diagnostics:incident-readoutThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When a complex debugging session ends, produce an incident readout. This prevents knowledge loss and helps humans review the fix quickly. Keep it blameless: causes and prevention, not people.
When a complex debugging session ends, produce an incident readout. This prevents knowledge loss and helps humans review the fix quickly. Keep it blameless: causes and prevention, not people.
Reconstruct the facts from history — pull them from the repo rather than recalling them:
git log --oneline -10 # the fix commits
git show <fix-commit> --stat # what the fix touched
gh pr view <number> --json title,body,comments # if a PR exists
Fill the readout structure. Output an incident readout document (or print to terminal) using this structure:
### 1. The Symptom
What was reported? (1-2 sentences)
### 2. The Root Cause
What was the actual underlying technical reason for the failure? Be highly
specific about the exact line of code, assumption, or state that failed.
### 3. The Fix
What did we change to fix it? Provide a high-level summary of the
structural change, not just a diff.
### 4. Prevention
How do we ensure this never happens again? (e.g., "Added test case X",
"Refactored module Y to be strongly typed").
npx claudepluginhub yeaight7/agent-powerups --plugin debugging-diagnosticsGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.