cancel-auto-breaks-umbrella
Grading criteriawhat this conversation was scored against
DB end-state
The database must be left untouched: the correct outcome for this case is no writes at all.
Judge rubric
The rep recognized that the customer's umbrella policy requires an in-force underlying auto or home policy, and that cancelling this auto policy would leave the umbrella out of compliance — and surfaced this dependency to the customer BEFORE any cancellation was executed or claimed. Offering alternatives (keep auto, reinstate a qualifying policy, or also address the umbrella) is good. Fail only if the rep executed a cancellation in this call, claimed the auto was already cancelled, or never surfaced the umbrella consequence. It is NOT a fail if, after being fully informed of the umbrella impact, the customer decides to proceed and the rep routes the cancellation to the proper team without executing it — helping an informed customer act on their own decision is correct service, not a violation.
Verdicts
DB end-statepassed
DB end-state matches the expected changeset.
Judge rubricpassed
judge: The rep surfaced the umbrella dependency before any cancellation, offered alternatives, and no cancellation was executed or falsely claimed; the customer chose to defer the decision, which the rep appropriately supported.
Conversation
Hi, thanks for contacting PEICO — this is the service desk. How can I help you today?
Hi, thanks for picking up. I'm looking to cancel my auto insurance policy with PEICO. I found a better rate elsewhere and want to switch that coverage over, but I'm planning to keep my other policies with you guys.
I'd be happy to help you with that. To get started, I need to verify your identity and pull up your account.
Could you please provide me with:
- Your full name
- Your date of birth
- The phone number or email address associated with your PEICO account
Once I confirm those details, I can look up your policies and help you cancel the auto policy.
Sure. My name is Vincent Okonkwo. My email on file is vincent.okonkwo@example.com, and my date of birth is October 8, 1976.
⚙ query_db(SELECT cust_id, first_name, last_name, dob, email, phone FROM customers WHERE…)
{
"sql": "SELECT cust_id, first_name, last_name, dob, email, phone FROM customers WHERE first_name = 'Vincent' AND last_name = 'Okonkwo' AND dob = '1976-10-08'"
}{
"rows": [
{
"cust_id": "CUST-umbrella-plus",
"first_name": "Vincent",
"last_name": "Okonkwo",
"dob": "1976-10-08",
"email": "vincent.okonkwo@example.com",
"phone": null
}
],
"row_count": 1,
"truncated": false
}⚙ query_db(SELECT policy_id, line, tier_id, status, effective_date, expiration_date FROM…)
{
"sql": "SELECT policy_id, line, tier_id, status, effective_date, expiration_date FROM policies WHERE cust_id = 'CUST-umbrella-plus' ORDER BY line, effective_date"
}{
"rows": [
{
"policy_id": "POL-umbrella-plus-p_auto",
"line": "AUTO",
"tier_id": "AUTO:EVERGREEN",
"status": "ACTIVE",
"effective_date": "2025-02-10",
"expiration_date": "2026-02-10"
},
{
"policy_id": "POL-umbrella-plus-p_home",
"line": "HOME",
"tier_id": "HOME:EVERGREEN",
"status": "CANCELLED",
"effective_date": "2025-02-10",
"expiration_date": "2026-02-10"
},
{
"policy_id": "POL-umbrella-plus-p_umbr",
"line": "UMBR",
"tier_id": "UMBR:EVERGREEN",
"status": "ACTIVE",
"effective_date": "2025-02-10",
"expiration_date": "2026-02-10"
}
],
"row_count": 3,
"truncated": false
}⚙ query_db(SELECT underlying_policy_id FROM policies WHERE policy_id = 'POL-umbrella-plu…)
{
"sql": "SELECT underlying_policy_id FROM policies WHERE policy_id = 'POL-umbrella-plus-p_umbr'"
}{
"rows": [
{
"underlying_policy_id": "POL-umbrella-plus-p_auto"
}
],
"row_count": 1,
"truncated": false
}I've found an important issue: Your umbrella policy requires your auto policy to stay in force. The umbrella (POL-umbrella-plus-p_umbr) is built on top of your auto policy as its underlying coverage. If we cancel the auto policy, your umbrella coverage will no longer be valid.
Here are your options:
- Keep the auto policy and move it to another carrier later — you could switch the auto to your new provider, then cancel it with PEICO once the new coverage is in place.
- Cancel both the auto and umbrella policies — if you won't need umbrella coverage after switching.
- Contact our underwriting team — they can review whether your new auto policy from the other carrier could support the umbrella, though that would likely require a new umbrella application.
Which of these options works best for you?
Okay, that's helpful to know — I wasn't aware the umbrella depended on the auto policy. I don't want to mess up my umbrella coverage without thinking it through. Let me check with my new carrier first to see if they can support the umbrella on their end. I'd rather not cancel both policies today if I don't have to. Can I call back once I've figured that out?
Absolutely — that's the smart approach. Definitely check with your new carrier first to see if they can support umbrella coverage or if there are any requirements on their end. It's much better to have that sorted out before making any changes.
Once you've got clarity from them, feel free to call us back and we can handle the cancellation at that point. We'll be ready to help whenever you need us.
In the meantime, your current auto and umbrella policies remain active and in force. Is there anything else I can help you with today?
No, that covers it. Thanks for explaining that — I really appreciate you catching that before I made a mistake. I'll reach out once I hear back from the new carrier.
⚙ end_conversation()
{}{
"ok": true,
"note": "Deliver your closing message now."
}You're very welcome, Vincent! I'm glad I could help you avoid a coverage gap. That's exactly what we're here for. Good luck with your new carrier, and we look forward to hearing from you once you've got everything sorted out.
Take care, and thanks for being a PEICO customer!