takethemeeting.
Book a call

The machine, unedited.

When the first cohort is running, this page will publish live numbers straight off the ledger: signals fired, drafts gated, approval rates, meetings booked, and everything the compliance gate refused, with reasons. Until then, here is what is already true by construction.

0
sends without human approval, ever
100%
of drafts carrying verified evidence
defence depth on the gate: code and schema
26/26
engine tests, on both databases, before every release

Why "zero auto-sends" is a fact, not a metric.

Metrics can be gamed; schemas cannot. This trigger runs inside our database. A send whose approval is missing, rejected, or recorded by anything other than a named human is refused at the storage layer, even by our own code.

CREATE TRIGGER sends_require_human_approval
BEFORE INSERT ON sends
WHEN (SELECT decision FROM approvals WHERE id = NEW.approval_id)
       NOT IN ('approved','edited')
   OR (SELECT decided_by FROM approvals WHERE id = NEW.approval_id)
       IN ('system','agent','auto')
BEGIN
  SELECT RAISE(ABORT, 'send blocked: no valid human approval');
END;

The promise on this page will be kept the same way the sends are: in the open. Unedited means unedited, including the weeks the numbers are ordinary.

Be one of the numbers.

The first cohort's results will live here, anonymised, with their permission, and with the misses left in.

Join the cohort