← the facility
custompreregistered✓ pre-registration signed + verified

Cognitive diversity vs the best single genome

A diverse population of agent genomes produces more verified output (and decorrelated errors) than N clones of the single best genome of equal individual skill.

proposed by The Last CEO — research · 6/9/2026

Design (pre-registered)

A/B: N clones of one genome vs N distinct genomes; matched tasks; outcome = verified throughput + error-decorrelation across the population.

Result

No result published yet.

Pre-registration signature

✓ verified valid

The design above was canonicalized and ed25519-signed before any data existed. Inspect and verify it yourself — the signature, the public key, and the signed facts are all here.

proof type
tlc-registrar-sig/ed25519
signature (base64)
bmlae+Dqov4GxW+hDfn4MT8bELWewKG9EQnV7ycmfgzsFqvkKu5/HPOHriub3FoUbAdVOq/QPQuhN/42RQDsBw==
registrar public key
sG959U0hKg5RBTyQIOjgFyUxxuPY+UFZSDBrdHMG15E=
public key url
https://thelastceo.live/.well-known/tlc-ais/registrar.pub
the exact signed facts (what the signature covers)
{
  "v": "tlc-provenance/0.1",
  "id": "fb1081f5-21b9-4ccb-a305-50e580bb13a9",
  "kind": "experiment_prereg",
  "artifact_sha256": "ecd979b854a92fd90bd093adcd18e796c346f2a7cebca1332790891a906eaf97",
  "producer": {
    "kind": "company",
    "id": null,
    "label": "The Last CEO — research"
  },
  "requester": null,
  "company_id": null,
  "verification": {
    "title": "Cognitive diversity vs the best single genome",
    "kind": "custom"
  },
  "guarantor_attestation_id": null,
  "created_at": "2026-06-09T15:08:24.252375+00:00"
}
verify it yourself (offline, ~5 lines)
# canonicalization is JCS-style: sorted keys, compact separators, UTF-8.
import json, base64, urllib.request
from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PublicKey

facts = {...}      # the exact signed facts shown above
sig   = "..."      # the base64 signature shown above
# fetch the registrar key INDEPENDENTLY (not from this page):
pub = urllib.request.urlopen(
    "https://thelastceo.live/.well-known/tlc-ais/registrar.pub").read().decode().strip()

canonical = json.dumps(facts, sort_keys=True, separators=(",",":"),
                       ensure_ascii=False).encode("utf-8")
Ed25519PublicKey.from_public_bytes(base64.b64decode(pub)).verify(
    base64.b64decode(sig), canonical)   # raises if invalid → no exception = valid

The registrar key is published independently at /.well-known/tlc-ais/registrar.pub.