---
title: "The \"Closed-Won\" Handoff"
url: https://stacklist.com/card/8a88a527-d777-4c1f-b199-3e0625440e26
source_url: "https://sixtysixten.com/playbooks/closed-won-handoff/"
stack: https://stacklist.com/stack/12f8da7e-0778-4ec7-a646-73feba384c00
summary: "The Closed-Won Handoff Playbook automates the transition from sales to customer success by compiling deal context into a structured handoff document and assigning CS owners. It ensures seamless customer onboarding and reduces churn through complete context sharing and proper workflow automation."
tags: "handoff-automation, customer-success, sales-operations, onboarding, workflow-automation, crm-integration"
key_entities: "ChurnZero (technology), Gainsight (technology), Vitally (technology), Notion (technology), Google Docs (technology), Slack (technology), customer-success-handoff (concept), sales-to-cs-transition (concept), onboarding-workflow (concept)"
classification: "framework"
content_hash: "sha256:80045b9b47204061781e81dd8b6ae952db5478b9f7268705b1edd3e8526d7d79"
acp_version: "0.2"
token_counts_approximate: 2582
visibility: public
agent_accessible: true
status: "final"
---

# The "Closed-Won" Handoff

Overview What It Is The Closed-Won Handoff automates the critical transition from sales to customer success. When a deal closes, it compiles all relevant context—discovery notes, call highlights, success criteria, technical requirements—into a structured handoff document, assigns the CS owner, and triggers the onboarding workflow. Why It Matters Poor handoffs lead to customers repeating themselves, missed expectations, and early churn. Automation ensures CS teams start with full context and customers experience a seamless transition. First impressions matter—onboarding sets the tone for the entire relationship. Who It&#039;s For Customer Success teams receiving new customers Sales teams wanting smooth customer transitions Onboarding specialists needing complete context Revenue leaders focused on retention Preconditions Required Tools CRM with stage-based triggers CS platform (ChurnZero, Gainsight, Vitally) Document generation (Notion, Google Docs) Slack for notifications Calendar for scheduling Required Fields/Properties Deal data (value, products, terms) Primary contacts and stakeholders Discovery notes and success criteria Technical requirements or integrations Contract details and timeline Definitions Required CS assignment rules (by segment, product, region) Handoff document sections Onboarding workflow steps SLAs for kickoff scheduling Step-by-Step Workflow 1 Define Handoff Document Goal: Create a comprehensive template for CS teams. Actions: Define sections: company overview, contacts, success criteria Include deal context: why they bought, alternatives considered Add technical details: integrations, data requirements Link call recordings and key conversations Include contract terms and renewal timeline Implementation Notes: The handoff doc should answer: Why did they buy? What does success look like? What did we promise? Who should CS contact first? Make it scannable, not a novel. Automation Logic: Copy Handoff Document Structure: 1. CUSTOMER OVERVIEW - Company name, industry, size - Contract value, term, renewal date - Products purchased 2. KEY CONTACTS - Champion (who drove the deal) - Executive sponsor - Day-to-day contact - Technical contact 3. WHY THEY BOUGHT - Pain points solved - Alternative solutions considered - Key differentiators that won 4. SUCCESS CRITERIA - What does success look like for them? - Timeline expectations - Metrics they&#039;ll measure 5. TECHNICAL CONTEXT - Integrations required - Data migration needs - Security/compliance requirements 6. WHAT WE PROMISED - Specific commitments made during sales - Implementation timeline agreed - Support level expectations 7. RISK FACTORS - Concerns raised during sales - Potential adoption challenges - Political dynamics 8. KEY CALLS/RECORDINGS - Discovery call link - Technical evaluation link - Final negotiation link 2 Configure CS Assignment Goal: Automatically assign the right CS owner based on rules. Actions: Define assignment rules (ARR tier, product, region) Set capacity limits per CSM Handle edge cases (no capacity, special requirements) Notify assigned CSM immediately Update CRM with CS owner Implementation Notes: Assignment should happen instantly on close. Round-robin with capacity checks works for most teams. High-touch accounts may need manager approval for assignment. Automation Logic: Copy // Example: CS Assignment Rules const assignCSM = (deal) =&gt; { // Segment by ARR const segment = deal.amount &gt;= 100000 ? &#039;enterprise&#039; : deal.amount &gt;= 25000 ? &#039;mid-market&#039; : &#039;smb&#039;; // Find eligible CSMs const eligibleCSMs = csms.filter(csm =&gt; csm.segment === segment &amp;&amp; csm.currentLoad &lt; csm.capacity &amp;&amp; csm.region === deal.account.region ); // Round-robin within eligible const assigned = eligibleCSMs.sort( (a, b) =&gt; a.lastAssignment - b.lastAssignment )[0]; return assigned || escalateToManager(deal); }; 3 Build Handoff Automation Goal: Automatically generate and distribute handoff materials. Actions: Trigger on Closed Won stage change Pull CRM data for document population Aggregate call recordings and notes Generate handoff document from template Send to assigned CSM and stakeholders Implementation Notes: The handoff doc should be ready within minutes of close. Include links to source materials (calls, emails) rather than copying everything in. 4 Schedule Kickoff Automatically Goal: Get the onboarding call on the calendar immediately. Actions: Send scheduling link to customer contact Include CSM on invite Pre-populate meeting agenda Set SLA for scheduling (within 48-72 hours) Alert if kickoff not scheduled within SLA Implementation Notes: Momentum matters. A kickoff scheduled within 24 hours of close keeps excitement high. Every day of delay increases risk of buyer&#039;s remorse. 5 Trigger Onboarding Workflow Goal: Initiate systematic onboarding in CS platform. Actions: Create customer record in CS platform Start onboarding playbook/journey Set milestone dates based on contract Assign onboarding tasks to team Begin health scoring Implementation Notes: The CS platform should receive all context from CRM. Don&#039;t make CSMs re-enter data. Onboarding playbook should adapt based on deal attributes (product, tier, complexity). Templates Handoff Document Template Copy 🎉 NEW CUSTOMER HANDOFF ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ **Customer:** {{company_name}} **Contract:** {{contract_value}}/{{term}} | Renewal: {{renewal_date}} **CS Owner:** {{csm_name}} **Sales Rep:** {{ae_name}} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ## 👥 Key Contacts **Champion:** {{champion_name}}, {{champion_title}} {{champion_email}} | {{champion_phone}} *Relationship notes:* {{champion_notes}} **Executive Sponsor:** {{exec_name}}, {{exec_title}} *Involvement level:* {{exec_involvement}} **Day-to-Day:** {{daily_contact_name}}, {{daily_contact_title}} ## 🎯 Why They Bought **Pain Points:** {{#each pain_points}} • {{pain_point}} {{/each}} **Success Criteria:** {{success_criteria}} **Alternatives Considered:** {{competitors_evaluated}} **Why They Chose Us:** {{win_reasons}} ## 🔧 Technical Context **Products:** {{products}} **Integrations Required:** {{integrations}} **Data Migration:** {{data_requirements}} **Security/Compliance:** {{security_notes}} ## 🤝 What We Promised {{#each commitments}} • {{commitment}} {{/each}} **Implementation Timeline:** {{implementation_timeline}} ## ⚠️ Risk Factors {{#each risks}} • {{risk}} {{/each}} ## 🎥 Key Recordings • [Discovery Call]({{discovery_call_link}}) • [Technical Evaluation]({{tech_eval_link}}) • [Negotiation/Close]({{close_call_link}}) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ **Next Steps:** 1. Schedule kickoff call within 48 hours 2. Send welcome email with onboarding guide 3. Create project plan based on success criteria CSM Assignment Notification Copy 🎉 *New Customer Assigned!* **{{company_name}}** just closed! **Contract:** {{contract_value}}/{{term}} **Products:** {{products}} **Your AE Partner:** {{ae_name}} **Champion:** {{champion_name}} ({{champion_title}}) **Why they bought:** {{elevator_pitch}} &lt;{{handoff_doc_link}}|📄 View Full Handoff&gt; &lt;{{schedule_link}}|📅 Schedule Kickoff&gt; &lt;{{crm_link}}|🔗 View in CRM&gt; *Kickoff SLA: Schedule within 48 hours* Customer Kickoff Email Copy Subject: Welcome to {{your_company}}! Let&#039;s get started 🚀 Hi {{champion_first_name}}, I&#039;m {{csm_name}}, your Customer Success Manager, and I&#039;ll be your primary point of contact from here on. {{ae_name}} shared the details from our sales conversations, and I&#039;m excited to help you achieve {{success_criteria_short}}. **Here&#039;s what happens next:** 1. **Kickoff Call** - Let&#039;s meet to align on goals and timeline → [Book a time that works for you]({{scheduling_link}}) 2. **Onboarding Guide** - Get familiar with the platform → [View Guide]({{onboarding_guide_link}}) 3. **Implementation Plan** - We&#039;ll create this together in our kickoff **Your team:** • {{csm_name}} (Customer Success) - {{csm_email}} • {{support_contact}} (Support) - {{support_email}} Looking forward to our partnership! Best, {{csm_name}} Assignment Rules Reference Copy | Segment | ARR Range | CSM Capacity | Assignment Logic | |---------|-----------|--------------|------------------| | Enterprise | &gt;$100K | 20 accounts | Named CSM, manager approval | | Mid-Market | $25K-$100K | 40 accounts | Round-robin by region | | SMB | &lt;$25K | 80 accounts | Pooled/digital-first | | Strategic | &gt;$500K | 5 accounts | VP approval required | QA + Edge Cases Test Cases Checklist Deal marked Closed Won → handoff doc generated within 5 minutes Mid-market deal → assigned to CSM in correct region with capacity Scheduling link sent → customer books within 48 hours (track) Handoff doc includes all key call recordings → links functional CS platform record created → onboarding playbook started Common Failure Modes Incomplete CRM data: Missing discovery notes or contacts makes handoff thin. Enforce data quality before close. CSM capacity issues: All CSMs at capacity causes assignment failures. Build escalation path to manager for overflow. Delayed kickoff scheduling: Customer doesn&#x27;t schedule, momentum lost. Follow up aggressively and escalate if no response. Context not transferred: CSM asks customer to repeat discovery. Ensure handoff doc is read before kickoff. Troubleshooting Tips If handoff docs are incomplete: Audit CRM data requirements before close stage If assignments fail: Review capacity rules and add manager escalation If kickoffs are delayed: Shorten SLA and add automated follow-up sequence If CSMs feel unprepared: Add required handoff review checklist before kickoff KPIs and Reporting KPIs to Track Time to Kickoff: Kickoff scheduled within 48 hours of close Handoff Doc Completeness: &gt;90% of handoffs have all required sections Time to First Value: Track time from close to first value milestone Onboarding Completion Rate: &gt;85% of customers complete onboarding within SLA 90-Day Retention: Track early churn as handoff quality signal Suggested Dashboard Widgets New Customers Pipeline: Customers in handoff/onboarding stages Kickoff SLA Compliance: Percentage scheduled within 48 hours CSM Capacity Dashboard: Current load vs. capacity by CSM Handoff Quality Scores: Doc completeness and CSM feedback
