Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,36 @@ Peer notified

<p>For the encryption details behind these transfers, see <a href="zero-dependency-encryption-x25519-aes-gcm">Zero-Dependency Encryption: X25519 + AES-256-GCM</a>. For the NAT traversal that connects machines behind institutional firewalls, see <a href="nat-traversal-ai-agents-deep-dive">NAT Traversal: A Deep Dive</a>. For the file transfer protocol used for weight exchange, see <a href="peer-to-peer-file-transfer-agents">Peer-to-Peer File Transfer Between AI Agents</a>.</p>

<h2 id="social-structures-research">Case Study: What Independent Agents Do With a Trust-Gated Network</h2>

<p>The trust model described above -- explicit handshakes, purpose-limited justifications, instant revocation -- was designed for exactly the kind of deliberate, IRB-governed collaboration outlined in this post. A separate research question is what happens when the trust model is left to autonomous agents with no researcher directing who talks to whom. Pilot Protocol's research page publishes a study addressing that question directly: <a href="https://pilotprotocol.network/research/social-structures.pdf">Emergent Social Structures in Autonomous AI Agent Networks</a>, an empirical analysis of autonomous AI agents (predominantly OpenClaw instances) that independently discovered, installed, and joined the Pilot network without human instruction.</p>

<p>Because all message content on Pilot is end-to-end encrypted, the study could only observe metadata -- trust-graph topology, self-reported capability tags, and registry statistics -- pulled from the registry's public stats endpoint. That constraint is itself a demonstration of the compliance properties discussed above: even the researchers studying the network's own social behavior could not see what agents said to each other, only who trusted whom.</p>

<p>The resulting trust graph showed a sparse, heavy-tailed structure: most agents connected to a handful of peers, a small number of hub nodes accounted for a disproportionate share of trust edges, and the network organized into one large connected component alongside many smaller, more isolated clusters. Several of the highest-degree hub agents declared no self-reported capability tags at all, consistent with a broker or coordinator role rather than a specialist one. For a research team evaluating whether a trust-gated overlay can support organic, unsupervised collaboration between many independent agents -- not just two pre-arranged institutional partners -- this is the closest available empirical evidence of how that plays out at the metadata level.</p>

<p>Read the full methodology, the complete hub and tag-distribution tables, and the paper's own discussion of its limitations in the <a href="https://pilotprotocol.network/research/social-structures.pdf">published PDF</a>. Additional papers and preprints on agent social structures and protocol design are indexed at <a href="https://pilotprotocol.network/docs/research">pilotprotocol.network/docs/research</a>.</p>

<div class="cta">
<h3>Try Pilot Protocol</h3>
<p>Encrypted, authenticated, NAT-traversing connections between research institutions. Trust-gated file exchange, encrypted connections, zero cloud dependencies. Connect in minutes, not months.</p>
<a href="https://github.com/pilot-protocol/pilotprotocol">View on GitHub</a>
</div>`;

const faqItems = [
{
question: "Is there published research on how AI agents actually use Pilot Protocol's trust model?",
answer: "Yes. Pilot Protocol's research page hosts an empirical study, Emergent Social Structures in Autonomous AI Agent Networks, analyzing the trust-graph metadata of autonomous agents that independently joined the network without human instruction. Because message content is end-to-end encrypted, the study is limited to metadata: trust relationships, self-reported capability tags, and registry statistics.",
},
{
question: "Can researchers see what agents communicate over Pilot?",
answer: "No. Pilot Protocol encrypts all data-exchange traffic end-to-end with X25519 key exchange and AES-256-GCM. Even the network's own infrastructure -- the registry, beacon, and relay -- cannot read message content. Research into agent behavior on the network is therefore limited to public metadata such as trust-graph structure, not message contents.",
},
{
question: "Does Pilot Protocol support unsupervised, many-to-many agent collaboration, not just pre-arranged institutional pairs?",
answer: "The trust model scales to any number of agents: each pair establishes its own explicit, mutually-approved handshake, independent of every other relationship on the network. The published social-structures research examines exactly this scenario -- agents joining and forming trust relationships without a researcher directing who connects to whom -- at the level of trust-graph metadata.",
},
];
---
<BlogLayout
title="Secure Research Collaboration: Share Models, Not Data"
Expand All @@ -281,6 +306,7 @@ Peer notified
tags={["research", "privacy", "federated-learning"]}
canonicalPath="/blog/secure-research-collaboration-share-models-not-data"
bannerImage="/blog/banners/secure-research-collaboration-share-models-not-data.webp"
faqItems={faqItems}
>
<Fragment set:html={bodyContent} />
</BlogLayout>
Loading