The 12 Plays
Play 8Beginner~16 min read

Emergency Client Response

Ensure your most important clients always receive an acknowledgment within minutes of a urgent message - even when the right person is unavailable.

The business case

Every professional services firm has a small number of clients who, when something urgent happens, need to hear from someone immediately. These clients' calls you pick up regardless of what else is happening. Their crises become your crises because the relationship and the revenue demand it. The problem: humans aren't available around the clock, and the worst moments for clients tend to arrive at the worst times - late Friday afternoons, during all-hands meetings, during international travel. An urgent message that goes unanswered for three hours can do more damage to a relationship than months of excellent work can repair. This Play ensures every urgent communication from a VIP client list receives an intelligent, personalized acknowledgment within minutes - with automatic escalation to a backup contact if the primary partner doesn't respond.

What this play does

n8n monitors every inbound communication from contacts on your explicitly defined VIP list. When a message arrives from a VIP contact, an AI evaluates its urgency using a carefully tuned prompt. If urgency is detected, n8n immediately sends a personalized acknowledgment from the assigned partner's address - not a generic "we received your message" autoresponder, but a specific response that demonstrates the message was read and understood. Simultaneously, a notification goes to the primary partner's mobile. If the partner doesn't confirm receipt within a configurable window (10 - 20 minutes), the escalation fires to the named backup. Everything is logged to the CRM.

Before and after

Before

A VIP client sends an urgent email at 6:30 PM Friday about a time-sensitive matter. The assigned partner's phone is on Do Not Disturb for family time. The email sits unread until Monday morning. The client has already called three times, left a voicemail, and started evaluating alternatives. The relationship takes months to repair.

After

The same VIP client sends the same email at 6:30 PM Friday. Within three minutes, they receive a personalized acknowledgment that references their specific situation and confirms that [Partner Name] will be in contact within [time frame]. The partner receives a mobile alert. Because they're at dinner, they don't respond within 15 minutes. The backup partner receives an escalation notification, calls the client, and handles the situation. The client feels taken care of. The relationship is strengthened rather than damaged.

Business impact

The ROI of this Play doesn't appear in a spreadsheet - it appears in client retention and the referrals that flow from it. A single VIP client relationship typically represents $50,000 - $500,000 in annual engagement value. Losing one due to a perceived lack of responsiveness during a crisis - when the actual issue might have been easily resolved - represents a significant and preventable loss. The cost of this Play is trivially small relative to what it protects.

Prerequisites

Complete these before opening n8n. Skipping prerequisites is how you end up rebuilding workflows.

1

Define your VIP list explicitly

Not 'important clients' - that's not automatable. Every contact on the VIP list must have a name, a primary partner owner, and a named backup partner, all filled in before the workflow goes live. Review this list quarterly. Start with 10 - 20 clients maximum.

2

Define what urgency means for your firm

Write 5 - 10 example urgent messages and 5 - 10 non-urgent messages from your VIP client category. These examples are what you use to calibrate the urgency detection prompt. Without calibration examples, the AI will either flag too broadly or miss genuine urgency.

3

Configure mobile notifications for the primary escalation channel

The primary partner notification needs to reach their phone within seconds - not email, which they might not check. Slack with mobile push notifications, SMS via Twilio, or a mobile app notification from your chosen communication platform. Confirm the delivery mechanism before building.

4

Set the escalation window based on realistic availability

A 10-minute escalation window will generate unnecessary backup notifications constantly - executives travel, are in meetings, and have their phones on silent. Start with 20 minutes and adjust based on experience. Define what 'confirm receipt' looks like (reply to the notification, click a button, respond to the VIP's email).

Step-by-step implementation

The steps below are the full build guide. Each step includes configuration notes and exact AI prompts where applicable.

1

Build the VIP contact monitoring trigger

The monitoring trigger is identical to Play One's email logging workflow - a Gmail or Outlook polling trigger, checking every 5 minutes. The key difference is the contact lookup logic. This workflow only activates when the sender is on your explicitly defined VIP list. Create a dedicated field in your CRM to mark VIP contacts (a checkbox field labeled "VIP Client" works well). In the contact lookup step, after verifying the sender is a known contact, check the VIP field. If it's not set, exit the workflow silently - Play One handles the standard logging. If the VIP field is set, continue to urgency evaluation. Also connect any other channels your VIP clients use to reach you: direct phone calls (via Retell or a call logging tool), client portal messages, or direct messages in Slack or Teams if you have shared channels with clients.

2

Build the urgency detection layer

After confirming the sender is a VIP contact, pass the full message to an AI urgency evaluation. The AI uses your calibration examples to distinguish between urgent situations requiring immediate response and routine communications that can wait for normal business hours. The urgency evaluation must be well-calibrated - if the AI flags every message as urgent, the system becomes noisy and the escalation mechanism loses its meaning. Test against your calibration examples (at least 20 messages: 10 truly urgent, 10 routine). Aim for less than 10% false positive rate before going live. If the AI marks the message as non-urgent, route it to Play One's standard logging flow. No acknowledgment is sent for non-urgent messages - sending one would create the impression that everything gets an immediate response, which is unsustainable.

AI Prompt

You are evaluating an inbound client message to determine whether it requires an immediate, urgent response from the firm.

Client information: {{contact_name}}, {{company_name}}
Relationship tier: VIP
Message received: {{message_content}}
Time received: {{timestamp}}

Urgency calibration examples:
Urgent examples: {{urgent_examples}}
Non-urgent examples: {{non_urgent_examples}}

Evaluate whether this message represents a situation that would typically require a response within the next 2 hours if received during business hours, or within 30 minutes if received outside business hours.

Return ONLY a JSON object:
{
  "is_urgent": true or false,
  "urgency_level": "critical" (needs response in <30 min) | "high" (needs response in <2 hours) | "routine" (can wait for business hours),
  "urgency_reason": "One sentence explaining why this is or isn't urgent",
  "key_issue": "If urgent: the specific thing the client needs addressed",
  "suggested_acknowledgment_tone": "calm_and_confident" | "empathetic_and_urgent" | "informational"
}
3

Generate and send the personalized acknowledgment

For messages flagged as urgent, generate a personalized acknowledgment immediately. This is not a generic autoresponder - it's a specific message that shows the client's message was read and understood. Pull the CRM context for this client: what matters to them, recent interactions, any ongoing issues. Pass the message content, CRM context, and the urgency assessment to the acknowledgment generation prompt. Send the acknowledgment from the primary partner's email address within 3 minutes of the message arriving. Simultaneously, send a push notification to the primary partner's phone via your configured mobile channel: the client's name, the key issue identified, and a link to the original message. Log the acknowledgment send, the notification send, and the full urgency assessment as a CRM activity on the client record.

AI Prompt

You are writing an urgent client acknowledgment on behalf of a senior partner at a professional services firm. This is a VIP client who has sent an urgent message.

Client: {{contact_name}} at {{company_name}}
The client's message: {{client_message}}
Key issue identified: {{key_issue}}
Urgency level: {{urgency_level}}
Partner name: {{partner_name}}

Write an acknowledgment that:
1. Opens with a direct acknowledgment of the specific situation (not "Thank you for your email")
2. Demonstrates that the message was read and the issue is understood
3. States that {{partner_name}} will be in contact within [time frame appropriate to urgency level: 30 min for critical, 2 hours for high, next business morning for routine]
4. If urgency_level is critical: include a direct line or mobile number to call if they need immediate voice contact
5. Is 3-5 sentences maximum - this is an acknowledgment, not a response
6. Sounds like {{partner_name}} typed it personally, not an automated system

Return ONLY the email body text. Subject line is handled separately.
4

Build the escalation sequence

After sending the acknowledgment, start the escalation timer. If the primary partner confirms receipt (via reply to the notification or by responding to the client) within the configured window, the escalation is cancelled and the workflow logs the confirmation. If no confirmation is received within the window, the escalation fires: a notification goes to the named backup partner with full context (the original message, the acknowledgment sent, the time elapsed since acknowledgment, and the client's history). The backup partner receives the same mobile notification the primary partner did, with an added note: "[Primary partner] hasn't confirmed receipt. VIP escalation - please respond within 15 minutes." Log every step of the escalation sequence as a CRM activity. After the situation is resolved, send a debrief notification to both partners: what was escalated, who handled it, what was communicated, and when the situation was resolved. This debrief becomes the basis for the case review if the partner wants to follow up.

Week-by-week rollout plan

Week 1VIP List and Calibration
  • Define VIP list. Every contact needs a primary owner and named backup.
  • Write 10 urgent and 10 non-urgent example messages for calibration.
  • Configure mobile notification channel and test delivery.
Week 2Build and Test
  • Build VIP monitoring trigger and urgency detection.
  • Test urgency detection against calibration examples. Tune until false positive rate < 10%.
  • Build acknowledgment generation and send workflow.
Week 3Escalation and Launch
  • Build escalation sequence. Test the full escalation path before any VIP is in the system.
  • Walk through the complete flow with primary and backup partners.
  • Go live. Monitor closely for first 30 days.

Success benchmarks

These are the specific, measurable signals that confirm the play is working. Check against each benchmark at the 30-, 60-, and 90-day mark.

Acknowledgment delivered within 5 minutes of urgent VIP message on 99%+ of occurrences
Escalation fires correctly when primary partner doesn't confirm within window
False positive rate (non-urgent messages flagged as urgent) below 10%
VIP client satisfaction maintained or improved compared to pre-implementation
Zero cases of an urgent VIP message going unacknowledged for more than 30 minutes

Common mistakes

Not defining the VIP list before building

The system only works if the VIP field is populated before the workflow goes live. Building first and filling in the list later means the system sits idle until someone gets around to the CRM work.

Setting the escalation window too short

A 10-minute escalation window generates backup notifications constantly. Executives travel, take calls, and sit in meetings. Give the primary partner a reasonable window before the backup is activated - 20 minutes is a good starting point.

Letting urgency detection run too broadly

If the AI flags every message as urgent, the system becomes noisy and people start ignoring it. Calibrate carefully against real examples before going live. Test until the false positive rate is under 10%.

Not testing the escalation path before launch

Run a complete test of the escalation sequence before any real VIP client is in the system. The worst moment to discover a gap in the escalation path is during an actual client crisis.

Exception rule

Read before going live

Define your VIP list explicitly and review it every quarter. 'Important clients' is not a definition you can automate against. Every contact on the VIP list must have both a primary owner and a named backup filled in before the workflow goes live.

Related plays

Revenue Institute

Want someone to build this play for your firm? Revenue Institute implements the full AI Workforce Playbook system as part of every engagement.

RevenueInstitute.com