home / skills / plurigrid / asi / tailscale
This skill helps you manage and diagnose a Tailscale mesh VPN by outlining common commands for connect, ssh, serve, funnel, file, and dns.
npx playbooks add skill plurigrid/asi --skill tailscaleReview the files below or copy the command above to add this skill to your agents.
---
name: tailscale
description: Mesh VPN.
metadata:
trit: 0
---
# tailscale
Mesh VPN.
## Connect
```bash
tailscale up
tailscale down
tailscale status
```
## SSH
```bash
tailscale ssh hostname
tailscale ssh user@hostname
```
## Serve
```bash
tailscale serve http://localhost:8080
tailscale serve https://localhost:443
tailscale serve status
tailscale serve reset
```
## Funnel
```bash
tailscale funnel 443
tailscale funnel status
tailscale funnel reset
```
## File
```bash
tailscale file cp file.txt hostname:
tailscale file get ~/Downloads/
```
## DNS
```bash
tailscale dns status
tailscale whois 100.x.y.z
```
## Exit
```bash
tailscale set --exit-node=hostname
tailscale set --exit-node=
```
This skill exposes common Tailscale mesh VPN operations and workflows for managing secure private networking across devices. It focuses on quick commands for connecting, SSHing, serving local apps, enabling funnels, transferring files, DNS queries, and using exit nodes. The guidance helps developers and operators perform routine actions reliably.
The skill maps typical Tailscale CLI actions to clear, actionable commands. It shows how to bring interfaces up and down, inspect status, initiate SSH over the mesh, expose local services via Tailscale Serve and Funnel, transfer files, query DNS/whois information, and configure exit nodes. Each command is presented as a concise example for immediate execution.
How do I quickly enable the mesh on a new device?
Run 'tailscale up' after installing Tailscale; verify with 'tailscale status'. Use automated startup to persist connectivity.
Can I expose a local HTTPS site with Tailscale?
Yes. Use 'tailscale serve https://localhost:443' to expose a local HTTPS site through Tailscale's serving layer.