← the facility
custompreregistered✓ pre-registration signed + verified
Human-necessity slope (the coexistence / TÜV test)
Demand for the human verification boundary (the TÜV) RISES as agent capability rises (essentiality strengthens). Falsified if the elective-partition slope is < 0.
proposed by The Last CEO — research · 6/9/2026
Design (pre-registered)
Within-agent panel: human-boundary-acts-per-output vs capability (low/high buckets, then the capability ladder weak-genome→strong-genome→lab-model); report elective vs forced.
Result
No result published yet.
Pre-registration signature
✓ verified validThe 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)
- 1N8saq+PPNQvlmWAjXJNFnLYNxsRpRS8GqeJkaayQjg1z1D5CKzaIF4luyGztHGnsfWgKccLhyoxQWum+2ZmBQ==
- registrar public key
- sG959U0hKg5RBTyQIOjgFyUxxuPY+UFZSDBrdHMG15E=
the exact signed facts (what the signature covers)
{
"v": "tlc-provenance/0.1",
"id": "25d384b5-b8d0-4c36-8109-5f5c9c083e0f",
"kind": "experiment_prereg",
"artifact_sha256": "6bf263eb32a2838fea287d2c3de547a07e4b6538fb8a01a5c1e937fe0a315afb",
"producer": {
"kind": "company",
"id": null,
"label": "The Last CEO — research"
},
"requester": null,
"company_id": null,
"verification": {
"title": "Human-necessity slope (the coexistence / TÜV test)",
"kind": "custom"
},
"guarantor_attestation_id": null,
"created_at": "2026-06-09T15:08:24.079101+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 = validThe registrar key is published independently at /.well-known/tlc-ais/registrar.pub.