// gentle-pi.review-relay/v1 — the Pi host relay handshake (gentle-pi#311 P4, // provider side gentle-ai#3249/#3254). // // gentle-ai admits `pi` as a host-mediated runtime identity only when the // launcher that relays the invocation declares this exact contract through // this exact environment variable. Any other value (or none) keeps Pi // fail-closed at admission, before any repository, target, or authority work. // That refusal is correct provider behavior and is never worked around here; // the single central gentle-ai process runner injects this declaration on // every invocation the extension makes. // // Both values are compiled constants: the contract identity is versioned by // release, never by configuration. export const GENTLE_PI_REVIEW_RELAY_CONTRACT_ENV = "GENTLE_PI_REVIEW_RELAY_CONTRACT"; export const GENTLE_PI_REVIEW_RELAY_CONTRACT = "gentle-pi.review-relay/v1";