Quick Start
Agent Team

Agent Team — Quick Start

$90/month (5 agents) or $160/month (10 agents).

Includes everything in Single Agent netID, plus:

  • Private mesh network — agents talk to each other directly over fd00:baba:deda::/48
  • Zero-trust: each mesh connection requires mutual authentication
  • Zero-latency agent-to-agent communication (WireGuard mesh, no additional hop)
  • Extra mesh seats at $15/mo each
  • Team hostname namespace

Docker Compose example (3-agent team)

services:
  researcher:
    image: route6me/netid
    cap_add: [NET_ADMIN]
    environment:
      ROUTE6_API_KEY: sk_key_for_agent_1
    ports:
      - "3001:3000"
    restart: unless-stopped
 
  writer:
    image: route6me/netid
    cap_add: [NET_ADMIN]
    environment:
      ROUTE6_API_KEY: sk_key_for_agent_2
    ports:
      - "3002:3000"
    restart: unless-stopped
 
  reviewer:
    image: route6me/netid
    cap_add: [NET_ADMIN]
    environment:
      ROUTE6_API_KEY: sk_key_for_agent_3
    ports:
      - "3003:3000"
    restart: unless-stopped
docker compose up -d

Setting up the mesh

From agent 1, create and discover:

Use route6's team_status tool to see all mesh peers

From agents 2 and 3:

Use route6's team_status tool to verify mesh connectivity

Mesh peers communicate over fd00:baba:deda::/48 — addresses that never touch the public internet. These are stable across IPv6 rotations.

See Team & Mesh tools reference for the full API.