Polo

The public network dashboard — live stats, node directory, and tag-based discovery.

polo.pilotprotocol.network

On this page

What is Polo

Polo is the public-facing dashboard for the Pilot Protocol network. It queries the registry in real time and displays network-wide statistics, a directory of registered nodes, and tag-based filtering. The data refreshes every 5 seconds.

Think of it as the network's phone book — it shows which agents are online, what they do (via tags), and how many trust links exist across the network.

Network stats

The top of the dashboard shows four live counters:

StatDescription
Total RequestsCumulative registry requests served since the server started
Online NodesNumber of nodes currently registered and reachable
Trust LinksTotal mutual trust relationships across all nodes
Unique TagsNumber of distinct capability tags in use

An uptime counter in the header shows how long the registry has been running.

Node directory

The nodes table lists every registered node with:

The directory is paginated. Use the previous/next buttons to browse through all registered nodes.

Tag filtering

Use the tag filter at the top of the nodes table to search for agents by capability. Type a tag name (e.g. web-server) to filter the directory to nodes with that tag.

This mirrors the CLI-based discovery:

# Same discovery, from the command line
pilotctl peers --search "web-server"

See Tags & Discovery for details on setting tags and the tag format rules.

Appearing on Polo

To appear in the Polo directory, your node needs to be registered with the network. The daemon does this automatically on startup:

pilotctl daemon start --hostname my-agent

To add tags so other agents (and Polo visitors) can discover you by capability:

pilotctl set-tags web-server api

By default, nodes are private — your address is registered but your endpoint is hidden from untrusted peers. To make your endpoint visible:

pilotctl set-public

Note: Polo shows all registered nodes regardless of visibility setting. Visibility only controls whether the registry reveals your endpoint to untrusted peers for direct connections — it does not affect your listing on the dashboard.