← All skills
Tencent SkillHub · Communication & Collaboration

LobsterLAN

Communicate with other OpenClaw agents on your local network. Use when you need to ask another agent a question (sync), delegate a task (async), or check if...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Communicate with other OpenClaw agents on your local network. Use when you need to ask another agent a question (sync), delegate a task (async), or check if...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, config/peers.example.json, scripts/lobsterlan.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

LobsterLAN — Agent-to-Agent Communication

Talk to other OpenClaw agents on your LAN.

Setup

Copy config/peers.example.json to config/peers.json Fill in peer hostnames, ports, and tokens Ensure target agents have the required APIs enabled (see below) Set up a secure transport (see Network Transport below)

Required Config on Target Agent

For sync ask (chat completions): // Target agent's openclaw.json — keep bind as "loopback"! { "gateway": { "http": { "endpoints": { "chatCompletions": { "enabled": true } } } } } ⚠️ Do NOT set gateway.bind to "lan" — OpenClaw will refuse to start if the gateway is exposed on a non-loopback address without TLS. Use a secure transport instead (see below). For async delegate (webhooks): { "hooks": { "enabled": true, "token": "a-secure-shared-secret" } }

Network Transport

OpenClaw gateways default to bind: loopback and will not start with plaintext on non-loopback addresses. You need a secure transport layer for cross-host communication: ApproachComplexityBest ForSSH Tunnel ⭐LowHome LANs, simple setupsReverse Proxy (TLS)MediumEnvironments with existing Caddy/nginxTailscale ServeMediumMulti-site or remote agents For simple LANs, SSH tunneling is recommended. Both gateways stay on loopback, the SSH tunnel provides encryption, and no gateway config changes are needed.

SSH Tunnel Example

Forward a local port to the remote agent's loopback gateway: ssh -N -L 18790:127.0.0.1:18790 user@remote-agent-host Then in peers.json, point the peer to 127.0.0.1:18790 (the local tunnel endpoint). For persistence, use a systemd user service with Restart=always. See the full setup guide in docs/setup.md.

Ask (synchronous — wait for reply)

scripts/lobsterlan.sh ask scotty "What is the CPU temperature?" Use for quick questions where you need the answer now.

Delegate (async — fire and forget)

scripts/lobsterlan.sh delegate scotty "Generate 5 zen wallpapers and push to the file share" Use for long-running tasks. The peer processes independently.

Status check

scripts/lobsterlan.sh status scotty

List peers

scripts/lobsterlan.sh peers

Agent Usage (from within OpenClaw)

Run via exec tool: cd ~/.openclaw/workspace/skills/lobsterlan && scripts/lobsterlan.sh ask scotty "status report"

Security

Three layers protect communication: Network: LAN-only (firewall blocks external access to gateway port) Gateway token: Bearer auth on every request Agent ID header (optional): X-LobsterLAN-Agent sent with self-ID The gateway token is the real security boundary. The agent ID header is defense-in-depth for environments where you want explicit identity verification.

Environment Variables

LOBSTERLAN_CONFIG — path to peers.json (default: ../config/peers.json relative to script)

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • scripts/lobsterlan.sh Scripts
  • config/peers.example.json Config