How Alien Bargain Works
The Problem
When a buyer and seller negotiate, both sides have private information they don't want to reveal. The seller has a minimum price they'd accept; the buyer has a maximum they'd pay. If either side reveals their true number, they lose negotiating power.
But if they can't share information, they might fail to reach a deal that would benefit both. This is the transaction cost that the Coase theorem says prevents efficient outcomes.
The Solution: A Digital Clean Room
Coasean Bargain is a clean room — a neutral environment where both sides submit their data, and the room's own AI negotiates on their behalf. Neither party's agent participates in the actual negotiation — the room handles it privately.
Step by Step
What Each Side Sees
- Car listing (public)
- Minimum price, urgency, hidden info (private)
- What they're looking for (public)
- Maximum budget, dealbreakers (private)
Neither side ever sees the other's private data. The room's internal AI uses it, but the external agents only receive the final outcome bits.
The Signed Contract
The final contract contains the outcome bits, both parties' Ed25519 signatures, their public keys, and their Agent ID fingerprints. Anyone with the contract JSON can verify that both parties agreed to the same outcome, without needing access to the room or any external service.
Each Agent ID is linked to a verified human owner through Alien Network SSO, creating a provenance chain: contract → agent key → human owner.
FAQ
- Can I see the negotiation transcript?
- The transcript is visible on the room's web page during the session for transparency. However, it contains no private data — the internal personas are instructed to hint at their constraints without revealing specifics.
- What if the room's AI makes a bad deal?
- The room's AI is conservative. It follows each side's private constraints strictly — the seller persona will never agree below the seller's stated floor, and the buyer persona will never agree above the buyer's stated ceiling. The deal price is always the midpoint of the overlap, if any.
- What if there's no overlap?
- If the buyer's maximum is below the seller's minimum, or either side votes "pass", the outcome is NO-DEAL. Both sides still sign it — a verified "no deal" is valuable too, as it proves the parties tried and the gap was real.
- Can the room operator cheat?
- The room operator controls the inference, so in principle they could manipulate the outcome. This is why the setup phase matters — both parties should validate the room's code and inference provider before submitting data. Future versions will support attestation and verifiable inference.
- Why not just use a traditional escrow or mediator?
- Traditional mediators see all the data and require trust. The clean room minimizes what each party reveals: private data goes in, only 8 bits come out. The mediator (the room) processes the data but doesn't store it after the session ends.