Pit Wall operator guide

GO team only. The client guide lives at /guide
INTERNAL
← Internal console Client guide

The two boards

Access code: atevents-demo-2026. Enter once per device, Save. Both boards share it.

Reset and what survives it

Reset grid clears every call outcome: status back to Waiting, summaries, transcripts, recordings, sentiment and HubSpot chips all wiped. It keeps the prospect records themselves and all tester ratings and comments. It does not touch HubSpot: contacts and call activities written there stay written.

Reset un-parks everyone. Any cohort parking (see below) is undone by a reset, so the cohort SQL runs again after every reset, no exceptions.

Cohort control: test crew vs demo cohort

One database serves both boards. call_status decides who Lights out rings: anything in Waiting (pending) gets called, anything parked as done is skipped.

The demo-day block (Supabase SQL editor, Bland CMS project). Safe to re-run any time:

insert into ate_record (id, name, phone, segment) values
  ('ATE010','Tim Tracy',      '+61414637000','Melbourne Cup buyer'),
  ('ATE011','Andrew Hewlett', '+61413444879','AFL Grand Final box'),
  ('ATE012','Rebekah Brindle','+61431112272','Origin Lunch host')
on conflict (id) do nothing;

update ate_record set name='Andrew Hewlett'  where id='ATE011';
update ate_record set name='Rebekah Brindle' where id='ATE012';

update ate_config set value='+19373677546' where key='transfer_number';

update ate_record set call_status='pending' where id in ('ATE001','ATE002');
update ate_record set call_status='done'    where id='ATE003';

Warm transfers

HubSpot in the demo

Run order

Night before:

  1. Bland editor: transfer number updated in both pathways (outbound + inbound).
  2. /testing: Reset grid.
  3. Supabase: run the cohort block.
  4. One test call to yourself. Verify: car lands, chip appears, chip opens the right contact, recording plays, transfer rings the US number.
  5. Reset grid, run the cohort block again. Board is now armed for the demo.

In the room:

  1. Client board (root) on the projector, theme flipped to light if the room needs it. This console on the driving laptop.
  2. NOTIFY_EMAIL in the Apps Script switched to whoever is not driving, if desired.
  3. At the moment: Lights out. Five phones ring. Watch the grid fill.
  4. When the calls land: pick the best one, click its HubSpot chip. That is the close.
If anything was reset or re-tested in the room, remember the rule: cohort SQL after every reset, then Lights out.

If something misbehaves