Train like a supercommunicator. Practice scripts, scenarios, and techniques from the world's best conversation experts.
Core techniques
Five proven methods from the masters. Each technique includes what direct communicators do wrong vs. what supercommunicators do right.
Small talk for direct people
You don't need 30 minutes of chat. 2-3 minutes of genuine interest, then transition. Here's the formula.
Mirror practice
Say each phrase out loud in front of a mirror. Hit ▶ Play All to hear every drill spoken aloud — click Stop anytime.
00:00
Playing...
Full conversation scripts
Step-by-step scripts for real situations. Hit ▶ Play All to hear every script line spoken aloud — click Stop anytime.
Playing...
Practice scenarios
Real-world situations. Write your response, then get AI coaching feedback based on the experts' frameworks.
Select a scenario to begin
▶ Play — Listen to all scripts & drills
One-click playback for every script and drill. Hit Play, walk away, listen. Stop anytime.
🎯 Play everything
Plays all scripts and all mirror drills back-to-back. Great for commutes or pre-meeting warmup.
📝 Play by script category
Choose a scenario and listen to just those scripts.
🪞 Play by mirror drill
Choose a drill category and hear each phrase spoken aloud.
⚙️ Voice & playback
Voice
Speed
0.88×
📂 Own Data — Ask questions about your files
Paste any Google Drive file links (Docs, Sheets, PDFs). Claude reads them and answers your questions. Files must be shared as "Anyone with the link can view".
📎 Your Google Drive file links
Paste a Google Drive file share link and click Add. Repeat for each file you want Claude to read. Works with Google Docs, Sheets, Slides, and PDFs.
✅ Works best with: Google Docs, Google Sheets, Google Slides (share link from docs.google.com/document, /spreadsheets, /presentation). ⚠️ Raw Drive files (drive.google.com/file/d/...) and PDFs may not be readable.
💬 Ask questions about your files
Claude reads all your saved files to answer your question.
Enter to send · Shift+Enter for new line
How to share a Google Drive file
1
Open any Google Doc, Sheet, or PDF in Drive
2
Click Share → Change to Anyone with the link → Viewer → Done
3
Click Copy link and paste it above
4
Ask any question — Claude reads the file and answers
🎯 Ask the Sales Expert
Type any client question. Get all 5 experts answering in their style. Edit any answer, save phrases directly to your Google Sheet, and pull them back as reminders.
🎯 Ask all 5 experts
e.g. "Client says they're happy with their current vendor. How do I respond?"
✏️ Save a phrase to your Sheet
Type or paste any phrase. Hit Save — appends as a new row in your Google Sheet.
⭐ Saved favorites from your sheet
Pull from your sheet to see saved phrases here as reminders.
⚙️ Google Sheet setup
▼ expand
📊 Google Sheet URL (for Pull from Sheet)
Paste your sheet's share link. Sheet must be shared as "Anyone with the link can view". No Apps Script needed for reading.
🔗 Apps Script Web App URL (for Save to Sheet)
Needed only for saving new rows. One-time setup: in your sheet → Extensions → Apps Script → paste code below → Deploy → Web app → Execute as: Me → Anyone.
function doPost(e) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var data = JSON.parse(e.postData.contents);
sheet.appendRow([data.phrase||'', data.date||'']);
var out = ContentService.createTextOutput(JSON.stringify({status:'ok'}));
out.setMimeType(ContentService.MimeType.JSON);
return out;
}
function doGet(e) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var rows = sheet.getDataRange().getValues();
var result = rows.map(function(r){
return {answer:String(r[0]||''),date:String(r[1]||'')};
});
var out = ContentService.createTextOutput(JSON.stringify(result));
out.setMimeType(ContentService.MimeType.JSON);
return out;
}