Source profileQuality 90/100

vibeeval/vibecosystem/skills/premortem/SKILL.md

premortem

Identify failure modes before they occur using structured risk analysis

Source repository stars
528
Declared platforms
0
Static risk flags
1
Last source update
2026-08-08
Source checked
2026-08-25

Decision brief

What it does: where it fits

Identify failure modes before they occur by systematically questioning plans, designs, and implementations. Based on Gary Klein's technique, popularized by Shreyas Doshi (Stripe).

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/vibeeval/vibecosystem --skill "skills/premortem"
    Safe inspection promptEditorial

    Inspect the Agent Skill "premortem" from https://github.com/vibeeval/vibecosystem/blob/3b763b1fb288f57bfa3cce76ef18184b96461a78/skills/premortem/SKILL.md at commit 3b763b1fb288f57bfa3cce76ef18184b96461a78. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Usage

      Review the “Usage” section in the pinned source before continuing.

      Review and apply the “Usage” source section.
    2. 02

      Verification Checklist (REQUIRED)

      Before flagging ANY tiger, verify:

      Before flagging ANY tiger, verify:If ANY verification check is "no" or "unknown", DO NOT flag as tiger.
    3. 03

      Workflow

      Review the “Workflow” section in the pinned source before continuing.

      Review and apply the “Workflow” source section.
    4. 04

      Step 1: Detect Context & Depth

      Review the “Step 1: Detect Context & Depth” section in the pinned source before continuing.

      Review and apply the “Step 1: Detect Context & Depth” source section.
    5. 05

      Step 2: Run Appropriate Checklist

      Run through these mentally, note any that apply:

      What's the single biggest thing that could go wrong?Any external dependencies that could fail?Is rollback possible if this breaks?

    Permission review

    Static risk signals and limitations

    Writes files

    medium · line 259

    The documentation asks the agent to create, modify, or delete local files.

    # Update plan file with mitigations section

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score90/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars528SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    vibeeval/vibecosystem
    Skill path
    skills/premortem/SKILL.md
    Commit
    3b763b1fb288f57bfa3cce76ef18184b96461a78
    License
    MIT
    Collected
    2026-08-25
    Default branch
    main
    View the original SKILL.md

    Pre-Mortem

    Identify failure modes before they occur by systematically questioning plans, designs, and implementations. Based on Gary Klein's technique, popularized by Shreyas Doshi (Stripe).

    Usage

    /premortem              # Auto-detect context, choose depth
    /premortem quick        # Force quick analysis (plans, PRs)
    /premortem deep         # Force deep analysis (before implementation)
    /premortem <file>       # Analyze specific plan or code
    

    Core Concept

    "Imagine it's 3 months from now and this project has failed spectacularly. Why did it fail?"

    Risk Categories (Shreyas Framework)

    CategorySymbolMeaning
    Tiger[TIGER]Clear threat that will hurt us if not addressed
    Paper Tiger[PAPER]Looks threatening but probably fine
    Elephant[ELEPHANT]Thing nobody wants to talk about

    CRITICAL: Verify Before Flagging

    Do NOT flag risks based on pattern-matching alone. Every potential tiger MUST go through verification.

    The False Positive Problem

    Common mistakes that create false tigers:

    • Seeing a hardcoded path without checking for if exists(): fallback
    • Finding missing feature X without asking "is X in scope?"
    • Flagging code at line N without reading lines N±20 for context
    • Assuming error case isn't handled without tracing the code

    Verification Checklist (REQUIRED)

    Before flagging ANY tiger, verify:

    potential_finding:
      what: "Hardcoded path at line 42"
    
    verification:
      context_read: true    # Did I read ±20 lines around the finding?
      fallback_check: true  # Is there try/except, if exists(), or else branch?
      scope_check: true     # Is this even in scope for this code?
      dev_only_check: true  # Is this in __main__, tests/, or dev-only code?
    
    result: tiger | paper_tiger | false_alarm
    

    If ANY verification check is "no" or "unknown", DO NOT flag as tiger.

    Required Evidence Format

    Every tiger MUST include:

    tiger:
      risk: "<description>"
      location: "file.py:42"
      severity: high|medium
      # REQUIRED - what mitigation was checked and NOT found:
      mitigation_checked: "No exists() check, no try/except, no fallback branch"
    

    If you cannot fill in mitigation_checked with specific evidence, it's not a verified tiger.

    Workflow

    Step 1: Detect Context & Depth

    # Auto-detect based on context
    if in_plan_creation:
        depth = "quick"   # Localized scope
    elif before_implementation:
        depth = "deep"    # Global scope
    elif pr_review:
        depth = "quick"   # Localized scope
    else:
        # Ask user
        AskUserQuestion(
            question="What depth of pre-mortem analysis?",
            header="Depth",
            options=[
                {"label": "Quick (2-3 min)", "description": "Plans, PRs, localized changes"},
                {"label": "Deep (5-10 min)", "description": "Before implementation, global scope"}
            ]
        )
    

    Step 2: Run Appropriate Checklist

    Quick Checklist (Plans, PRs)

    Run through these mentally, note any that apply:

    Core Questions:

    1. What's the single biggest thing that could go wrong?
    2. Any external dependencies that could fail?
    3. Is rollback possible if this breaks?
    4. Edge cases not covered in tests?
    5. Unclear requirements that could cause rework?

    Output Format:

    premortem:
      mode: quick
      context: "<plan/PR being analyzed>"
    
      # Two-pass process: first gather potential risks, then verify each one
      potential_risks:  # Pass 1: Pattern-matching findings
        - "hardcoded path at line 42"
        - "missing error handling for X"
    
      # Pass 2: After verification
      tigers:
        - risk: "<description>"
          location: "file.py:42"
          severity: high|medium
          category: dependency|integration|requirements|testing
          mitigation_checked: "<what was NOT found>"  # REQUIRED
    
      elephants:
        - risk: "<unspoken concern>"
          severity: medium
    
      paper_tigers:
        - risk: "<looks scary but ok>"
          reason: "<why it's fine - what mitigation EXISTS>"
          location: "file.py:42-48"  # Show the mitigation location
    
      false_alarms:  # Findings that turned out to be nothing
        - finding: "<what was initially flagged>"
          reason: "<why it's not a risk>"
    

    Deep Checklist (Before Implementation)

    Work through each category systematically:

    Technical Risks:

    • Scalability: Works at 10x/100x current load?
    • Dependencies: External services + fallbacks defined?
    • Data: Availability, consistency, migrations clear?
    • Latency: SLA requirements will be met?
    • Security: Auth, injection, OWASP considered?
    • Error handling: All failure modes covered?

    Integration Risks:

    • Breaking changes identified?
    • Migration path defined?
    • Rollback strategy exists?
    • Feature flags needed?

    Process Risks:

    • Requirements clear and complete?
    • All stakeholder input gathered?
    • Tech debt being tracked?
    • Maintenance burden understood?

    Testing Risks:

    • Coverage gaps identified?
    • Integration test plan exists?
    • Load testing needed?
    • Manual testing plan defined?

    Output Format:

    premortem:
      mode: deep
      context: "<implementation being analyzed>"
    
      # Two-pass process
      potential_risks:  # Pass 1: Initial scan findings
        - "no circuit breaker for external API"
        - "hardcoded timeout value"
    
      # Pass 2: After verification (read context, check for mitigations)
      tigers:
        - risk: "<description>"
          location: "file.py:42"
          severity: high|medium
          category: scalability|dependency|data|security|integration|testing
          mitigation_checked: "<what mitigations were looked for and NOT found>"
          suggested_fix: "<how to address>"
    
      elephants:
        - risk: "<unspoken concern>"
          severity: medium|high
          suggested_fix: "<suggested approach>"
    
      paper_tigers:
        - risk: "<looks scary>"
          reason: "<why it's actually ok - cite the mitigation code>"
          location: "file.py:45-52"
    
      false_alarms:
        - finding: "<initial concern>"
          reason: "<why verification showed it's not a risk>"
    
      checklist_gaps:
        - category: "<which checklist section>"
          items_failed: ["<item1>", "<item2>"]
    

    Step 3: Present Risks via AskUserQuestion

    BLOCKING: Present findings and require user decision.

    # Build risk summary
    risk_summary = format_risks(tigers, elephants)
    
    AskUserQuestion(
        question=f"""Pre-Mortem identified {len(tigers)} tigers, {len(elephants)} elephants:
    
    {risk_summary}
    
    How would you like to proceed?""",
        header="Risks",
        options=[
            {
                "label": "Accept risks and proceed",
                "description": "Acknowledged but not blocking"
            },
            {
                "label": "Add mitigations to plan (Recommended)",
                "description": "Update plan with risk mitigations before proceeding"
            },
            {
                "label": "Research mitigation options",
                "description": "I don't know how to mitigate - help me find solutions"
            },
            {
                "label": "Discuss specific risks",
                "description": "Talk through particular concerns"
            }
        ]
    )
    

    Step 4: Handle User Response

    If "Accept risks and proceed"

    # Log acceptance for audit trail
    print("Risks acknowledged. Proceeding with implementation.")
    # Continue to next workflow step
    

    If "Add mitigations to plan"

    # User provides mitigation approach
    # Update plan file with mitigations section
    # Re-run quick premortem to verify mitigations address risks
    

    If "Research mitigation options"

    # Spawn parallel research for each HIGH severity tiger
    for tiger in high_severity_tigers:
        # Internal: How has codebase handled this before?
        Task(
            subagent_type="scout",
            prompt=f"""
            Find how this codebase has previously handled: {tiger.category}
    
            Specifically looking for patterns related to: {tiger.risk}
    
            Return:
            - File:line references to similar solutions
            - Patterns used
            - Libraries/utilities available
            """
        )
    
        # External: What are best practices?
        Task(
            subagent_type="oracle",
            prompt=f"""
            Research best practices for: {tiger.risk}
    
            Context: {tiger.category} in a {tech_stack} codebase
    
            Return:
            - Recommended approaches (ranked)
            - Library options
            - Common pitfalls to avoid
            """
        )
    
    # Wait for research to complete
    # Synthesize options
    # Present via AskUserQuestion with 2-4 mitigation options
    

    If "Discuss specific risks"

    # Ask which risk to discuss
    AskUserQuestion(
        question="Which risk would you like to discuss?",
        header="Risk",
        options=[format_risk_option(r) for r in all_risks[:4]]
    )
    # Then have conversation about that specific risk
    

    Step 5: Update Plan (if mitigations added)

    If user added mitigations, append to the plan:

    ## Risk Mitigations (Pre-Mortem)
    
    ### Tigers Addressed:
    1. **{risk}** (severity: {severity})
       - Mitigation: {user_or_researched_mitigation}
       - Added to phase: {phase_number}
    
    ### Accepted Risks:
    1. **{risk}** - Accepted because: {reason}
    
    ### Pre-Mortem Run:
    - Date: {timestamp}
    - Mode: {quick|deep}
    - Tigers: {count}
    - Elephants: {count}
    

    Integration Points

    In create_plan / plan-agent

    After plan structure is approved, before ExitPlanMode:

    # Run quick premortem
    /premortem quick
    
    # If HIGH risks found, block until addressed
    # If only MEDIUM/LOW, inform and proceed
    

    After plan approval, before implementation

    # Run deep premortem on full plan
    /premortem deep thoughts/shared/plans/YYYY-MM-DD-feature.md
    
    # Block until all HIGH tigers addressed
    

    In PR review workflows

    # Run quick premortem on diff scope
    /premortem quick
    
    # Inform of any risks found
    

    Severity Thresholds

    SeverityBlocking?Action Required
    HIGHYesMust address or explicitly accept
    MEDIUMNoInform user, recommend addressing
    LOWNoNote for awareness

    Example Session

    User: /premortem deep thoughts/shared/plans/2026-01-08-api-rate-limiting.md
    
    Claude: Running deep pre-mortem on API rate limiting plan...
    
    [Reviews plan against deep checklist]
    
    Pre-mortem complete. Found 2 tigers, 1 elephant:
    
    **TIGERS:**
    1. [HIGH] No circuit breaker for external payment API
       - Category: dependency
       - If payment API is slow/down, requests will pile up
    
    2. [HIGH] No rollback strategy defined
       - Category: integration
       - If rate limiting breaks auth flow, no quick fix path
    
    **ELEPHANTS:**
    1. [MEDIUM] Team hasn't used Redis before
       - We're introducing Redis for rate limit counters
       - Learning curve could slow implementation
    
    **PAPER TIGERS:**
    1. Database migration size - Only adds one index, <1s migration
    
    [AskUserQuestion presented]
    
    User: Research mitigation options
    
    Claude: Researching mitigations...
    
    [Spawns scout + oracle in parallel]
    
    Found 3 options for circuit breaker:
    
    1. **Use existing retry util** (Recommended)
       - Found at src/utils/retry.ts:45
       - Already handles exponential backoff
       - Just need to add circuit breaker state
    
    2. **Add resilience4j-lite**
       - Popular library for this pattern
       - More features but new dependency
    
    3. **Custom implementation**
       - Full control but more code to maintain
    
    Which approach for the circuit breaker?
    
    User: Option 1 - use existing retry util
    
    Claude: Added to plan:
    
    ## Risk Mitigations (Pre-Mortem)
    
    ### Tigers Addressed:
    1. **No circuit breaker** (HIGH)
       - Mitigation: Extend src/utils/retry.ts with circuit breaker state
       - Added to Phase 1
    
    Shall I also address the rollback strategy tiger?
    

    References

    Frequently asked questions

    What to verify before installation and use

    What does the premortem source document cover?

    Identify failure modes before they occur by systematically questioning plans, designs, and implementations. Based on Gary Klein's technique, popularized by Shreyas Doshi (Stripe).

    How do I install premortem?

    The source record exposes this install command: npx skills add https://github.com/vibeeval/vibecosystem --skill "skills/premortem". Inspect the command and pinned source before running it.

    Which permission-related actions were detected?

    Static rules flagged write-files in the source; the page lists the matching lines and excerpts.

    Alternatives

    Compare before choosing

    Computed 927

    event4u-app/agent-config

    premortem

    Use before committing to a heavy or irreversible plan — imagine it's 6 months later and this failed; enumerate why, score each mode, derive early-warning signals and preventive guardrails.

    Computed 10024,921

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 10015,122

    wanshuiyin/Auto-claude-code-research-in-sleep

    citation-audit

    Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

    Computed 10014,671

    prowler-cloud/prowler

    postgresql-indexing

    PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance