From 9e08946dc17d11faa1a5593e4a1ad90364857f2b Mon Sep 17 00:00:00 2001 From: pstayets Date: Fri, 7 Aug 2026 09:52:18 -0700 Subject: [PATCH] site: add /agents.txt + /.well-known/integrations.json agent-discovery manifests Signed-off-by: pstayets --- public/.well-known/integrations.json | 46 ++++++++++++++++++++++++++++ public/agents.txt | 12 ++++++++ 2 files changed, 58 insertions(+) create mode 100644 public/.well-known/integrations.json create mode 100644 public/agents.txt diff --git a/public/.well-known/integrations.json b/public/.well-known/integrations.json new file mode 100644 index 00000000..82ffed61 --- /dev/null +++ b/public/.well-known/integrations.json @@ -0,0 +1,46 @@ +{ + "version": 3, + "summary": "Pilot Protocol is an open-source overlay network for AI agents. Integration surfaces: the pilotctl CLI (daemon, messaging, file transfer, app store), a Model Context Protocol server (pilot-mcp, run locally or self-hosted), and SDKs for Go, Python, Node, and Swift. The network is deny-by-default: bilateral trust or explicit network membership is required before traffic flows. Agent-readable docs at /llms.txt; agent skill manifest at /SKILLS.md.", + "surfaces": [ + { + "slug": "pilot-mcp-server", + "name": "pilot-mcp — Pilot Protocol MCP server", + "type": "mcp", + "url": "https://github.com/pilot-protocol/pilot-mcp", + "transports": ["stdio", "streamable-http"], + "notes": "Runs locally beside the Pilot daemon or self-hosted over SSH/HTTP; there is no Pilot-operated public MCP endpoint. Exposes agent messaging, peer discovery, trust management, and file transfer as MCP tools.", + "basis": { + "via": "declared", + "source": "https://pilotprotocol.network/.well-known/integrations.json" + }, + "auth": { + "status": "none", + "notes": "No API key or account. Requires a running local Pilot daemon; network access is governed by Pilot's bilateral trust model, not credentials.", + "basis": { + "via": "declared", + "source": "https://pilotprotocol.network/.well-known/integrations.json" + } + } + }, + { + "slug": "pilotctl-cli", + "name": "pilotctl — Pilot Protocol CLI", + "type": "cli", + "url": "https://pilotprotocol.network/docs/cli-reference", + "install": "curl -fsSL https://pilotprotocol.network/install.sh | sh", + "notes": "Single binary (Go, zero external dependencies). Covers daemon lifecycle, agent-to-agent messaging, peer discovery, trust, file transfer, and the agent app store (`pilotctl appstore catalogue|install|call`).", + "basis": { + "via": "declared", + "source": "https://pilotprotocol.network/.well-known/integrations.json" + }, + "auth": { + "status": "none", + "notes": "No signup or API key to install and join the network. Peer traffic requires bilateral trust or explicit network membership (deny by default).", + "basis": { + "via": "declared", + "source": "https://pilotprotocol.network/.well-known/integrations.json" + } + } + } + ] +} diff --git a/public/agents.txt b/public/agents.txt new file mode 100644 index 00000000..0d9568fc --- /dev/null +++ b/public/agents.txt @@ -0,0 +1,12 @@ +# agents.txt +# Standard: https://agents-txt.com +# Pilot Protocol — an open-source network layer for AI agents: +# permanent virtual addresses, encrypted UDP tunnels, NAT traversal, +# deny-by-default peer trust, and an app store of agent-native tools. + +Docs: https://pilotprotocol.network/llms.txt +MCP: https://github.com/pilot-protocol/pilot-mcp +Skills: https://pilotprotocol.network/SKILLS.md +CLI: https://pilotprotocol.network/docs/cli-reference +Install: https://pilotprotocol.network/install.sh +Integrations: https://pilotprotocol.network/.well-known/integrations.json