Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Une commande directe contourne le prompt de vérification. Examinez la source avant de l'exécuter.
The Pre-mortem Facilitator skill provides structured capabilities for conducting pre-mortem analyses. Using prospective hindsight, it helps teams identify potential failure modes before implementation, enabling proactive risk mitigation and more robust decision-making.
# The hypothetical failure scenario
failure_scenario = {
"date": "18 months from now",
"headline": "Product Launch Fails to Meet Revenue Targets",
"narrative": """
It is now 18 months after the product launch. Despite significant investment
and effort, the product has achieved only $3M in revenue (30% of target)
and 1.5% market share. The project is being reviewed for discontinuation.
Your task: Write down all the reasons why this failure occurred.
Be specific and think about what went wrong from your perspective.
""",
"instructions": [
"Work independently for 10 minutes",
"Write down every reason you can think of",
"Be specific - name names, dates, decisions",
"Consider both internal and external factors",
"Don't filter - capture all ideas"
]
}
Failure Mode Collection
# Collected failure modes
failure_modes = {
"product": [
{
"id": "FM-001",
"description": "Product features didn't meet customer needs in target segment",
"contributor": "Product Manager",
"category": "Product-Market Fit",
"root_cause": "Insufficient customer research before development"
},
{
"id": "FM-002",
"description": "Quality issues led to negative reviews and returns",
"contributor": "Operations Lead",
"category": "Product Quality",
"root_cause": "Rushed timeline compressed QA testing"
}
],
"market": [
{
"id": "FM-003",
"description": "Competitor launched similar product at 30% lower price",
"contributor": "Sales Director",
"category": "Competitive Response",
"root_cause": "Underestimated competitor agility"
}
],
"execution": [
{
"id": "FM-004",
"description": "Key talent left mid-project, causing knowledge loss",
"contributor": "Project Lead",
"category": "Team",
"root_cause": "No succession planning or documentation"
}
],
"external": [
{
"id": "FM-005",
"description": "Economic downturn reduced customer budgets",
"contributor": "Finance Lead",
"category": "Economic",
"root_cause": "No contingency for demand scenarios"
}
]
}