plugins/bridgey/skills/tailscale-setup/SKILL.md
First-time Tailscale mesh network configuration for bridgey. Updates daemon binding for tailnet access and runs initial peer scan.
npx skillsauth add kickinrad/bridgey tailscale-setupInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Configure bridgey for Tailscale mesh network discovery.
Check Tailscale is running:
Run tailscale status via Bash. If it fails, tell the user to install Tailscale (https://tailscale.com/download) or run tailscale up.
Find bridgey config:
Look for bridgey's config at ~/.bridgey/bridgey.config.json or check the bridgey plugin's bridgey.config.json. If not found, tell the user to run /bridgey:setup first.
Update bridgey daemon binding: Read the bridgey config file. Update two fields:
bind to "0.0.0.0""trusted_networks" — merge Tailscale CIDR with any existing entries:
"100.64.0.0/10" (Tailscale IPs)"172.16.0.0/12" and "10.0.0.0/8" (Docker bridge/overlay)
Write the updated config back. Explain to the user: "This binds your bridgey daemon to all interfaces but only accepts unauthenticated connections from Tailscale IPs (100.64.0.0/10). Other sources still need a bearer token."Restart bridgey daemon:
Stop and start the daemon (if dist/daemon.js is missing, run npm run build from plugins/bridgey/ first):
node ${CLAUDE_PLUGIN_ROOT}/dist/daemon.js stop
node ${CLAUDE_PLUGIN_ROOT}/dist/daemon.js start --config <config-path>
Verify it restarted successfully:
curl -s http://localhost:<port>/health | jq .
Expected: {"status":"ok",...}. If it fails, check ~/.bridgey/daemon.log for errors.
Write tailscale config:
Create ~/.bridgey/tailscale.config.json with defaults:
{
"bridgey_port": <port from bridgey config>,
"probe_timeout_ms": 2000,
"exclude_peers": [],
"scan_on_session_start": true
}
Run first scan:
Use the tailscale_scan MCP tool to discover peers. Display the results.
Remind the user: Other devices on the tailnet also need bridgey with Tailscale configured to be discoverable. Tell them to run /bridgey:tailscale-setup on each device.
testing
This skill should be used when the user asks to "set up bridgey", "configure bridgey", "initialize bridgey", "bridgey setup", "check bridgey status", "show bridgey agents", "is bridgey running", "bridgey health", "show connected agents", "add a bridgey agent", "connect to another agent", "register a remote agent", "add remote agent", "configure tailscale for bridgey", "scan tailnet for bridgey", or runs `/bridgey:setup`, `/bridgey:status`, `/bridgey:add-agent`, `/bridgey:tailscale-setup`, `/bridgey:tailscale-scan`. Lifecycle surface for the bridgey A2A daemon — first-time setup, health dashboard, remote-agent registration, and Tailscale mesh discovery.
data-ai
Manually scan the Tailscale network for bridgey agents. Shows discovered, new, and removed agents.
testing
This skill should be used when the user asks to "check bridgey status", "show bridgey agents", "is bridgey running", "bridgey health", "show connected agents", runs "/bridgey:status", or wants to see the state of the bridgey daemon and connected agents.
documentation
This skill should be used when the user asks to "set up bridgey", "configure bridgey", "initialize bridgey", "bridgey setup", runs "/bridgey:setup", or is installing bridgey for the first time. Guides interactive first-time configuration of the bridgey daemon.