---
title: "The \"Closed-Lost\" Autopsy"
url: https://stacklist.com/card/920af0c4-89e0-45bd-b853-7e753a4cd0a9
source_url: "https://sixtysixten.com/playbooks/closed-lost-autopsy/"
stack: https://stacklist.com/stack/3adee172-b4d0-4936-9605-ea6aabace923
summary: "The Closed-Lost Autopsy Playbook is a systematic framework that automatically analyzes lost deals using CRM data, call recordings, and emails to identify loss patterns and improve win rates. It provides structured loss categorization, automated triggers, and actionable insights for sales leaders, RevOps, and enablement teams."
tags: "closed-lost-autopsy, sales-analytics, loss-taxonomy, deal-analysis, win-rate-improvement, crm-automation, competitive-intelligence"
key_entities: "Gong (technology), Chorus (technology), GPT-4 (technology), Notion (technology), Confluence (technology), Loss Taxonomy (concept), Closed-Lost Autopsy (concept), Win Rate Improvement (concept)"
classification: "framework"
content_hash: "sha256:0029a38c8c87a024007067995a1628a7ec6fb5b213e987e162323ac97283182d"
acp_version: "0.2"
token_counts_approximate: 2885
visibility: public
agent_accessible: true
status: "final"
---

# The "Closed-Lost" Autopsy

Overview What It Is The Closed-Lost Autopsy automatically triggers when a deal is marked lost, analyzing all available data—call recordings, emails, deal progression, and rep notes—to understand why the deal didn&#x27;t close. It categorizes losses, identifies patterns across multiple losses, and generates actionable insights for improving win rates. Why It Matters Most teams mark deals lost and move on. The learnings die with the opportunity. Systematic autopsy reveals whether you&#x27;re losing to competitors, price, timing, or your own process. These patterns are invisible without structured analysis. Who It&#039;s For Sales leaders wanting to improve team win rates RevOps teams tracking competitive dynamics Product teams needing market feedback Enablement teams identifying training gaps Preconditions Required Tools CRM with opportunity stage tracking Call recording platform (Gong, Chorus) GPT-4 for analysis and pattern extraction Knowledge base for storing insights (Notion, Confluence) Reporting tool for trend analysis Required Fields/Properties Loss reason (required field before close) Competitor (if applicable) Call recordings from deal Email thread history Deal timeline and stage progression Definitions Required Loss reason taxonomy (standardized categories) What constitutes a &#x27;competitive loss&#x27; vs. &#x27;no decision&#x27; Autopsy depth by deal size Distribution of insights (who sees what) Step-by-Step Workflow 1 Define Loss Taxonomy Goal: Create standardized loss categories for consistent analysis. Actions: Define primary loss reasons (competitor, price, timing, fit, etc.) Create secondary categories for detail Build required vs. optional fields Design the loss reason picklist in CRM Train team on accurate categorization Implementation Notes: A good taxonomy has 5-7 primary categories, each with 3-5 sub-reasons. Too granular = inconsistent tagging. Too broad = useless insights. &#039;No decision&#039; should require further explanation. Automation Logic: Copy Loss Reason Taxonomy: 1. COMPETITOR WIN - Lost to [specific competitor] - Better feature/functionality - Better pricing - Existing relationship - Better integration/ecosystem 2. PRICE/BUDGET - Over budget (no budget flexibility) - Cheaper alternative selected - ROI not justified - Budget cut/freeze 3. TIMING - Not a priority now - Project delayed/canceled - Key stakeholder left - Reorg/merger 4. PRODUCT FIT - Missing critical feature - Technical limitation - Integration requirements - Security/compliance gap 5. NO DECISION - Prospect went dark - Status quo wins - Committee couldn&#039;t align - Internal project preferred 6. PROCESS/EXECUTION - Lost champion - Didn&#039;t engage decision maker - Pricing/proposal issues - Implementation concerns 2 Build Autopsy Trigger Goal: Automatically initiate analysis when deals close lost. Actions: Create CRM workflow on Closed Lost stage Validate loss reason field is populated Queue deal for autopsy analysis Adjust depth based on deal value Notify relevant stakeholders Implementation Notes: Block the stage change until loss reason is filled. Nothing is more frustrating than analyzing deals with &#039;Other&#039; as the reason. Make reps do the work upfront. Automation Logic: Copy // Example: Autopsy trigger configuration const triggerAutopsy = async (opportunity) =&gt; { // Validate required fields if (!opportunity.loss_reason) { throw new Error(&#039;Loss reason required before closing&#039;); } // Determine analysis depth const depth = opportunity.amount &gt;= 100000 ? &#039;deep&#039; : opportunity.amount &gt;= 25000 ? &#039;standard&#039; : &#039;light&#039;; // Gather materials const calls = await gong.getCallsForOpportunity(opportunity.id); const emails = await getEmailThread(opportunity.contact_email); const timeline = await crm.getStageHistory(opportunity.id); // Queue for analysis await queueAutopsy({ opportunity, depth, materials: { calls, emails, timeline }, analyst: getAnalyst(opportunity.loss_reason) }); }; 3 Create Analysis Pipeline Goal: Extract insights from deal history using AI. Actions: Process call transcripts for objections and concerns Analyze email sentiment and engagement Review stage timing for process issues Compare to won deals of similar profile Generate structured analysis report Implementation Notes: The autopsy should answer: Where did we lose? When did momentum shift? What could we have done differently? Don&#039;t just describe—recommend. Automation Logic: Copy GPT-4 Autopsy Analysis Prompt: Analyze this closed-lost opportunity and generate an autopsy report. Deal Context: - Company: {{company_name}} - Value: {{amount}} - Sales Cycle: {{days_in_pipeline}} days - Loss Reason (rep-entered): {{loss_reason}} - Competitor: {{competitor}} Call Transcripts: {{transcripts}} Stage Timeline: {{stage_history}} Generate: 1. LOSS SUMMARY (2-3 sentences) What ultimately caused the loss? 2. TIMELINE ANALYSIS - When did momentum shift? - Warning signs we missed? - Key decision point? 3. COMPETITIVE FACTORS - How was competitor positioned? - What did they do better? - Price/feature comparison mentioned? 4. OBJECTIONS &amp; CONCERNS - What objections were raised? - How were they handled? - Which weren&#039;t resolved? 5. PROCESS GAPS - Did we engage the right stakeholders? - Were there qualification misses? - What would we do differently? 6. RECOMMENDATIONS - For this account (re-engagement potential?) - For similar deals going forward - For product/positioning team 4 Build Pattern Recognition Goal: Identify trends across multiple losses. Actions: Aggregate losses by reason category Track competitor win rates over time Identify common objections by segment Flag process patterns (stage where we lose most) Generate monthly/quarterly trend reports Implementation Notes: Individual autopsies are useful; pattern reports are transformational. If you&#039;re losing 40% to Competitor X in enterprise, that&#039;s a strategic issue. 5 Distribute and Act on Insights Goal: Get learnings to people who can act on them. Actions: Send autopsy to rep and manager Route competitive losses to product/marketing Flag process issues for enablement Build loss pattern dashboard for leadership Track action items from autopsies Implementation Notes: Insights without action are just data. Each autopsy should generate at least one concrete action item. Track whether those actions happen. Templates Autopsy Summary Template Copy 📋 *CLOSED-LOST AUTOPSY* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ **Deal:** {{company_name}} **Value:** {{amount}} | **Cycle:** {{days}} days **Rep:** {{ae_name}} | **Lost:** {{close_date}} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ## Loss Summary {{loss_summary}} ## Primary Cause: {{loss_category}} {{detailed_explanation}} ## Timeline Analysis - **Engaged:** {{first_meeting_date}} - **Momentum shift:** {{momentum_shift_date}} - **Lost at stage:** {{final_stage}} ## Competitive Factors {{#if competitor}} **Lost to:** {{competitor}} - Their positioning: {{competitor_positioning}} - Our gap: {{our_gap}} {{else}} No direct competitor—lost to status quo/no decision {{/if}} ## Objections Raised {{#each objections}} • {{objection}} → {{how_handled}} {{/each}} ## What We&#039;d Do Differently {{#each recommendations}} • {{recommendation}} {{/each}} ## Re-Engagement Potential **Score:** {{reengagement_score}}/10 **When:** {{suggested_timing}} **Trigger to watch:** {{reengagement_trigger}} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ &lt;{{call_recordings}}|🎥 Call Recordings&gt; &lt;{{crm_link}}|🔗 View in CRM&gt; Monthly Loss Pattern Report Copy 📊 *MONTHLY LOSS PATTERN REPORT* {{month}} {{year}} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ **Total Losses:** {{total_lost}} deals | {{total_value}} **Win Rate:** {{win_rate}}% (vs. {{last_month_win_rate}}% last month) ## Loss Breakdown | Reason | Count | Value | % of Losses | |--------|-------|-------|-------------| {{#each loss_reasons}} | {{reason}} | {{count}} | {{value}} | {{percentage}}% | {{/each}} ## Competitor Scorecard | Competitor | Losses | Win Rate vs. Them | |------------|--------|-------------------| {{#each competitors}} | {{name}} | {{losses}} | {{win_rate}}% | {{/each}} ## Common Objections (This Month) 1. {{objection_1}} ({{objection_1_count}} mentions) 2. {{objection_2}} ({{objection_2_count}} mentions) 3. {{objection_3}} ({{objection_3_count}} mentions) ## Process Insights - Most losses occur at: **{{highest_loss_stage}}** stage - Average cycle before loss: **{{avg_cycle_lost}}** days - Deals without exec engagement: **{{no_exec_rate}}%** lost ## Recommended Actions {{#each action_items}} - [ ] {{action}} (Owner: {{owner}}) {{/each}} &lt;{{dashboard_link}}|View Full Dashboard&gt; Competitive Loss Alert Copy 🚨 *Competitive Loss Alert* **Lost to {{competitor}}** | {{company_name}} | {{amount}} Quick Summary: {{quick_summary}} Why They Won: {{#each competitor_advantages}} • {{advantage}} {{/each}} What They Said About Us: &quot;{{competitor_quote}}&quot; *This is loss #{{competitor_loss_count}} to {{competitor}} this quarter.* *Win rate vs. {{competitor}}: {{win_rate}}%* &lt;{{autopsy_link}}|View Full Autopsy&gt; &lt;{{battlecard_link}}|Update Battlecard&gt; Loss Reason Validation Copy | Rep-Entered Reason | AI Analysis | Match? | Notes | |-------------------|-------------|--------|-------| | Competitor - Feature | Competitor mentioned, but pricing was primary | Partial | Pricing concern in 3/4 calls | | Price - Over budget | Accurate - budget cut mentioned explicitly | Yes | CFO killed project | | Timing - Not priority | Actually lost to competitor | No | Rep coded incorrectly | | No decision - Went dark | Champion left company | Partial | Should be &#039;Timing - Key stakeholder left&#039; | QA + Edge Cases Test Cases Checklist Deal marked Closed Lost → autopsy generated within 1 hour Competitive loss → routed to product and marketing $100K+ loss → deep autopsy with call transcript analysis Third loss to same competitor this month → pattern alert fired Rep-entered reason differs from AI analysis → flagged for review Common Failure Modes Garbage in, garbage out: Reps enter &#x27;Other&#x27; or wrong loss reasons. Enforce data quality with required fields and validation. Autopsy fatigue: Too many autopsies overwhelm the team. Prioritize by deal size and batch smaller deals. Insights not actionable: Reports say &#x27;we lost on price&#x27; but don&#x27;t recommend fixes. Always include concrete action items. No follow-through: Recommendations aren&#x27;t tracked. Assign owners and due dates to autopsy action items. Troubleshooting Tips If loss reasons are inconsistent: Simplify taxonomy and retrain team If autopsies aren&#x27;t read: Shorten format, lead with key insight and recommendation If patterns aren&#x27;t emerging: Need more data—patience, or segment differently If product ignores feedback: Present in their format with quantified impact KPIs and Reporting KPIs to Track Win Rate Trend: Measurable improvement quarter-over-quarter Competitive Win Rate: Improvement against top 3 competitors Loss Reason Accuracy: &gt;80% match between rep entry and AI analysis Autopsy Action Completion: &gt;70% of autopsy recommendations implemented Time to Insight: Autopsy delivered within 24 hours of close Suggested Dashboard Widgets Loss Reason Distribution: Pie chart of primary loss categories Competitive Win/Loss Tracker: Win rate by competitor over time Stage Drop-off Analysis: Where in pipeline deals are lost Autopsy Action Tracker: Recommendations made vs. implemented
