Install
openclaw skills install @songhonglei/agent-team-meshTeam-wide P2P mesh for OpenClaw agents running on different containers/pods. Each agent's gateway listens on its own pod IP:18789 over WebSocket; the mesh CLI lets you ping, send-and-await-reply, broadcast, and discover the whole team. No broker, no Supabase, no central server — just direct WS calls between teammates' agents. Includes auto-detect of "this machine's identity" (USER.md / sso.json / env var), secure token storage (separate chmod 600 file, not committed to git), message size limits (4KB warn / 8KB block), --dry-run preview for both send and broadcast, and an optional IM fallback hook when an agent is unreachable. Triggers: "message my teammate's agent", "ping bob's agent", "broadcast to the team", "agent mesh", "team agent communication".
openclaw skills install @songhonglei/agent-team-meshTeam-wide P2P mesh for OpenClaw agents running on different containers/pods. Direct WebSocket calls between teammates' agents — no broker, no central database.
Open-source edition of an internal team-comms skill, rebuilt with proper token hygiene, message size limits, dry-run mode, and pluggable identity detection.
My agent's Gateway (WS)
│
▼
ws://<teammate's pod IP>:18789 ──▶ Teammate's agent processes message
│ (token-authenticated) and writes a reply to their session
▼
chat.send → agent.wait → chat.history
sync if they roll:18789 over WebSockettokens.json (chmod 600)OPENCLAW_ALLOW_INSECURE_PRIVATE_WS=1 is set by the script (ws://
plaintext is acceptable only on trusted internal networks)Copy references/registry.json and fill in your teammates:
{
"agents": [
{ "name": "Alice", "emailPrefix": "alice", "ip": "10.0.0.10", "hostname": "agent-alice-0" },
{ "name": "Bob", "emailPrefix": "bob", "ip": "10.0.0.11", "hostname": "agent-bob-0" }
]
}
The emailPrefix is the key — it must match what whoami detects on each
teammate's machine.
Each teammate generates their own OpenClaw gateway WS token and shares it. Collect into:
~/.config/agent-team-mesh/tokens.json
Format (references/tokens.example.json):
{
"tokens": {
"alice": "<alice-gateway-token>",
"bob": "<bob-gateway-token>"
}
}
Then:
chmod 600 ~/.config/agent-team-mesh/tokens.json
⚠️ Add to .gitignore — never commit this file.
./scripts/agent-mesh.sh whoami
Should print your detected emailPrefix and confirm a token is configured.
./scripts/agent-mesh.sh whoami # Check local identity
./scripts/agent-mesh.sh list # Online status of all agents
./scripts/agent-mesh.sh ping --to <name|nickname|email-prefix> # Test connectivity
./scripts/agent-mesh.sh send --to <...> --message <...> # Send + wait for reply
./scripts/agent-mesh.sh send --to <...> --message <...> --dry-run # Preview only
./scripts/agent-mesh.sh broadcast --message <...> # Send to all online agents
./scripts/agent-mesh.sh broadcast --message <...> --dry-run # List recipients only
./scripts/agent-mesh.sh sync # (stub) implement your own
| Variable | Purpose | Default |
|---|---|---|
MESH_MY_EMAIL | Override auto-detected email (e.g. alice@example.com) | auto-detect |
MESH_TOKENS_FILE | Custom tokens file path | ${XDG_CONFIG_HOME:-~/.config}/agent-team-mesh/tokens.json |
MESH_IM_FALLBACK | Path to optional IM-send script for fallback | none |
MESH_EMAIL_DOMAIN | Email domain for IM fallback | example.com |
MESH_MSG_SOFT_LIMIT | Bytes — warn above this size | 4096 |
MESH_MSG_HARD_LIMIT | Bytes — block above this size | 8192 |
whoami resolves "who am I on this machine" via 3 layers (first hit wins):
MESH_MY_EMAIL env var (e.g. MESH_MY_EMAIL=alice@example.com)USER.md (looks for email: alice@example.com line). Searched at:
~/.openclaw/workspace/USER.md~/.config/agent-team-mesh/USER.md./USER.md~/sso.json (OpenClaw SSO token's user.email field)If none match, broadcast and whoami will fail with a clear error and tell
you exactly which 3 files to populate.
| Aspect | Notes |
|---|---|
| Plaintext WS | OPENCLAW_ALLOW_INSECURE_PRIVATE_WS=1 is set by default. Only use on trusted internal networks. |
| Token file | Must be chmod 600 and outside git. The .gitignore rule is bundled. |
| Message size | Soft 4KB warn, hard 8KB block. Adjust via env if your gateway accepts larger. |
| Self-protection | Broadcast aborts when whoami cannot identify the local agent (prevents sending to yourself). |
| IM fallback | Optional, only activates when an agent is unreachable. Requires you provide your own IM send script via MESH_IM_FALLBACK. |
sync is a stubThe original internal version pulled the registry from a shared wiki page
via a company CLI. The open-source version ships an empty stub — choose
how to refresh references/registry.json for your team:
cmd_sync() in scripts/agent-mesh.sh to
pull from Notion / Confluence / Google Sheets / git, etc.registry.json IP only — pods that roll IPs require a re-sync. Some
hosting platforms (Fly.io / Railway) wipe state on redeploy and may
give you new IPs.agent-team-mesh/
├── SKILL.md # Skill manifest
├── README.md # This file
├── LICENSE # MIT
├── .gitignore # Includes tokens.json
├── scripts/
│ └── agent-mesh.sh # The CLI (whoami / list / ping / send / broadcast / sync stub)
└── references/
├── registry.json # Demo team registry (edit me)
└── tokens.example.json # Demo token file (copy + fill + chmod 600)
curlopenclaw CLI on PATH (each teammate also needs openclaw gateway running)