agentsclimarketplace

Postmortem

Skill kenantang/codex-and-claude-skills/collected-academic-research-skills/sources/flonat__claude-research/skills/postmortem

Use when you need a structured post-mortem after incidents, mistakes, or stuck sessions.From its SKILL.md

Install
npx -y skills add kenantang/codex-and-claude-skills --skill postmortem

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

6.4 KB, ~1.5k tokens by cl100k_base, as published. Nobody here has run it

Lessons Learned: Structured Retrospective

Analyse incidents using a structured framework, identify root causes, and encode preventive measures directly into skills, guards, or documentation. The goal is systematic improvement, not blame.

When to Use

  • After incidents, mistakes, rollbacks, or near-misses
  • When the user says "what went wrong", "lessons learned", "post-mortem", "retrospective", or "how do we prevent this"
  • After a stuck session where significant time was lost
  • After a wrong-approach event (plan existed but execution diverged)

Process

Phase 1: Incident Definition

Capture the facts first, analysis later.

## Incident Summary

**What happened:** [Factual description]
**When:** [Date/time]
**Impact:** [What was affected, scope]
**Resolution:** [How it was fixed/rolled back]
**Time to resolution:** [How long to fix]

Phase 2: Timeline Reconstruction

Build a chronological sequence of events:

TimeActionActorOutcome
HH:MM[What was done][Claude/User][Result]

Key questions:

  • What was the trigger?
  • Where did the sequence diverge from expected?
  • What was the point of no return?

Phase 3: Root Cause Analysis (5 Whys)

1. Why did [incident] happen?
   → Because [immediate cause]

2. Why did [immediate cause] happen?
   → Because [deeper cause]

3. Why did [deeper cause] happen?
   → Because [systemic issue]

4. Why did [systemic issue] exist?
   → Because [process gap]

5. Why did [process gap] exist?
   → Because [root cause]

Stop when you reach a cause that can be addressed by a concrete change to the system (skill, rule, hook, doc).

Phase 4: Contributing Factors

Identify all factors, not just the root cause:

CategoryFactorContribution
ProcessMissing checkpoint, unclear workflow[How it contributed]
CommunicationAmbiguous instructions, assumed consent[How it contributed]
TechnicalMissing guard, no validation[How it contributed]
ContextSession continuation, prior assumptions[How it contributed]
HumanFatigue, time pressure, overconfidence[How it contributed]

Phase 5: Fix Classification

Classify each fix by type:

Fix TypeWhen to UseHow to Encode
SkillRecurring workflow needs structureCreate SKILL.md via /skill-extract
GuardAction requires mandatory checkpointAdd approval gate to existing skill
RuleBehavioural constraint needed globallyCreate rules/*.md
DocumentationKnowledge gap caused the issueUpdate CLAUDE.md, MEMORY.md, or docs/
HookManual step was forgottenCreate script in hooks/
ChecklistMultiple steps need verificationAdd to existing skill

Phase 6: Fix Implementation

Implement fixes during the retrospective, not after. This is the critical difference from a report-only post-mortem.

For each fix:

  1. Implement it (create/edit the file)
  2. Record what was done:
FixTypeLocationStatus
[Description]Skill/Guard/Rule/Doc/Hook[File path]Created/Updated

Also record a [LEARN] tag in MEMORY.md for each key correction (per the learn-tags rule).

Phase 7: Verification

Define how to verify the fix works:

## Verification

**Test scenario:** [How to test the fix]
**Success criteria:** [What "fixed" looks like]
**Review date:** [When to check if fix is working — default: 2 weeks]

Output

Write the report to log/incidents/YYYY-MM-DD_short-description.md:

# Lessons Learned: [Incident Title]

**Date:** YYYY-MM-DD
**Severity:** [Low|Medium|High|Critical]
**Status:** [Resolved|Monitoring|Open]

## Incident Summary
[Brief description]

## Timeline
| Time | Action | Actor | Outcome |
|------|--------|-------|---------|

## Root Cause
[The fundamental issue]

## Contributing Factors
- [Factor 1]
- [Factor 2]

## Fixes Implemented
| Fix | Type | Location | Status |
|-----|------|----------|--------|

## Prevention
[How this prevents recurrence]

## Lessons
1. [Key takeaway 1]
2. [Key takeaway 2]

Create log/incidents/ if it doesn't exist.

Common Incident Patterns

PatternSymptomRoot CauseTypical Fix
Premature actionAction taken before approvalImplied consent ≠ explicitAdd approval gate to skill
Sequence errorSteps in wrong orderMissing dependency chainEncode sequence in skill
Missing validationBad data passed throughNo checkpointAdd pre-flight check
Context carryoverStale assumptions from prior sessionState assumed to persistExplicit context verification
Scope creepDid more than requestedTask scope too broadClarifying questions first
Planning loopRe-planned instead of executingPerfectionism / uncertaintyExecution stall detector

Anti-Patterns

Anti-PatternProblemInstead
Blame assignmentCreates defensivenessFocus on process, not people
Single-cause thinkingOversimplifiesUse 5 Whys, multiple factors
Recommend without actingLessons forgotten, recursImplement fixes during retro
Vague fixes ("be more careful")Not verifiableEncode specific changes
Skip verificationNo way to know if fix workedDefine success criteria

Cross-References

  • [LEARN] tags — record one-liner corrections in MEMORY.md (the quick complement to this skill)
  • /skill-extract — extract a full skill from a session (when the fix type is "Skill")
  • /ideas — if a fix is too large for this session, capture as an idea for later

Success Criteria

The retrospective is complete when:

  • Incident clearly defined with timeline
  • Root cause identified (not just symptoms)
  • Contributing factors documented
  • At least one fix implemented (not just recommended)
  • Fix encoded in appropriate location (skill, rule, hook, doc)
  • [LEARN] tags recorded in MEMORY.md
  • Verification criteria defined
  • Report written to log/incidents/

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.