{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tailscale",
    "name": "Tailscale",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jmagar/tailscale",
    "canonicalUrl": "https://clawhub.ai/jmagar/tailscale",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tailscale",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tailscale",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/ts-api.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/tailscale"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/tailscale",
    "agentPageUrl": "https://openagent3.xyz/skills/tailscale/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tailscale/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tailscale/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Tailscale Skill",
        "body": "Hybrid skill using CLI for local operations and API for tailnet-wide management."
      },
      {
        "title": "Setup",
        "body": "API config (optional, for tailnet-wide operations): ~/.clawdbot/credentials/tailscale/config.json\n\n{\n  \"apiKey\": \"tskey-api-k...\",\n  \"tailnet\": \"-\"\n}\n\nGet your API key from: Tailscale Admin Console → Settings → Keys → Generate API Key\n\nThe tailnet can be - (auto-detect), your org name, or email domain."
      },
      {
        "title": "Local Operations (CLI)",
        "body": "These work on the current machine only."
      },
      {
        "title": "Status & Diagnostics",
        "body": "# Current status (peers, connection state)\ntailscale status\ntailscale status --json | jq '.Peer | to_entries[] | {name: .value.HostName, ip: .value.TailscaleIPs[0], online: .value.Online}'\n\n# Network diagnostics (NAT type, DERP, UDP)\ntailscale netcheck\ntailscale netcheck --format=json\n\n# Get this machine's Tailscale IP\ntailscale ip -4\n\n# Identify a Tailscale IP\ntailscale whois 100.x.x.x"
      },
      {
        "title": "Connectivity",
        "body": "# Ping a peer (shows direct vs relay)\ntailscale ping <hostname-or-ip>\n\n# Connect/disconnect\ntailscale up\ntailscale down\n\n# Use an exit node\ntailscale up --exit-node=<node-name>\ntailscale exit-node list\ntailscale exit-node suggest"
      },
      {
        "title": "File Transfer (Taildrop)",
        "body": "# Send files to a device\ntailscale file cp myfile.txt <device-name>:\n\n# Receive files (moves from inbox to directory)\ntailscale file get ~/Downloads\ntailscale file get --wait ~/Downloads  # blocks until file arrives"
      },
      {
        "title": "Expose Services",
        "body": "# Share locally within tailnet (private)\ntailscale serve 3000\ntailscale serve https://localhost:8080\n\n# Share publicly to internet\ntailscale funnel 8080\n\n# Check what's being served\ntailscale serve status\ntailscale funnel status"
      },
      {
        "title": "SSH",
        "body": "# SSH via Tailscale (uses MagicDNS)\ntailscale ssh user@hostname\n\n# Enable SSH server on this machine\ntailscale up --ssh"
      },
      {
        "title": "Tailnet-Wide Operations (API)",
        "body": "These manage your entire tailnet. Requires API key."
      },
      {
        "title": "List All Devices",
        "body": "./scripts/ts-api.sh devices\n\n# With details\n./scripts/ts-api.sh devices --verbose"
      },
      {
        "title": "Device Details",
        "body": "./scripts/ts-api.sh device <device-id-or-name>"
      },
      {
        "title": "Check Online Status",
        "body": "# Quick online check for all devices\n./scripts/ts-api.sh online"
      },
      {
        "title": "Authorize/Delete Device",
        "body": "./scripts/ts-api.sh authorize <device-id>\n./scripts/ts-api.sh delete <device-id>"
      },
      {
        "title": "Device Tags & Routes",
        "body": "./scripts/ts-api.sh tags <device-id> tag:server,tag:prod\n./scripts/ts-api.sh routes <device-id>"
      },
      {
        "title": "Auth Keys",
        "body": "# Create a reusable auth key\n./scripts/ts-api.sh create-key --reusable --tags tag:server\n\n# Create ephemeral key (device auto-removes when offline)\n./scripts/ts-api.sh create-key --ephemeral\n\n# List keys\n./scripts/ts-api.sh keys"
      },
      {
        "title": "DNS Management",
        "body": "./scripts/ts-api.sh dns                 # Show DNS config\n./scripts/ts-api.sh dns-nameservers     # List nameservers\n./scripts/ts-api.sh magic-dns on|off    # Toggle MagicDNS"
      },
      {
        "title": "ACLs",
        "body": "./scripts/ts-api.sh acl                 # Get current ACL\n./scripts/ts-api.sh acl-validate <file> # Validate ACL file"
      },
      {
        "title": "Common Use Cases",
        "body": "\"Who's online right now?\"\n\n./scripts/ts-api.sh online\n\n\"Send this file to my phone\"\n\ntailscale file cp document.pdf my-phone:\n\n\"Expose my dev server publicly\"\n\ntailscale funnel 3000\n\n\"Create a key for a new server\"\n\n./scripts/ts-api.sh create-key --reusable --tags tag:server --expiry 7d\n\n\"Is the connection direct or relayed?\"\n\ntailscale ping my-server"
      }
    ],
    "body": "Tailscale Skill\n\nHybrid skill using CLI for local operations and API for tailnet-wide management.\n\nSetup\n\nAPI config (optional, for tailnet-wide operations): ~/.clawdbot/credentials/tailscale/config.json\n\n{\n  \"apiKey\": \"tskey-api-k...\",\n  \"tailnet\": \"-\"\n}\n\n\nGet your API key from: Tailscale Admin Console → Settings → Keys → Generate API Key\n\nThe tailnet can be - (auto-detect), your org name, or email domain.\n\nLocal Operations (CLI)\n\nThese work on the current machine only.\n\nStatus & Diagnostics\n# Current status (peers, connection state)\ntailscale status\ntailscale status --json | jq '.Peer | to_entries[] | {name: .value.HostName, ip: .value.TailscaleIPs[0], online: .value.Online}'\n\n# Network diagnostics (NAT type, DERP, UDP)\ntailscale netcheck\ntailscale netcheck --format=json\n\n# Get this machine's Tailscale IP\ntailscale ip -4\n\n# Identify a Tailscale IP\ntailscale whois 100.x.x.x\n\nConnectivity\n# Ping a peer (shows direct vs relay)\ntailscale ping <hostname-or-ip>\n\n# Connect/disconnect\ntailscale up\ntailscale down\n\n# Use an exit node\ntailscale up --exit-node=<node-name>\ntailscale exit-node list\ntailscale exit-node suggest\n\nFile Transfer (Taildrop)\n# Send files to a device\ntailscale file cp myfile.txt <device-name>:\n\n# Receive files (moves from inbox to directory)\ntailscale file get ~/Downloads\ntailscale file get --wait ~/Downloads  # blocks until file arrives\n\nExpose Services\n# Share locally within tailnet (private)\ntailscale serve 3000\ntailscale serve https://localhost:8080\n\n# Share publicly to internet\ntailscale funnel 8080\n\n# Check what's being served\ntailscale serve status\ntailscale funnel status\n\nSSH\n# SSH via Tailscale (uses MagicDNS)\ntailscale ssh user@hostname\n\n# Enable SSH server on this machine\ntailscale up --ssh\n\nTailnet-Wide Operations (API)\n\nThese manage your entire tailnet. Requires API key.\n\nList All Devices\n./scripts/ts-api.sh devices\n\n# With details\n./scripts/ts-api.sh devices --verbose\n\nDevice Details\n./scripts/ts-api.sh device <device-id-or-name>\n\nCheck Online Status\n# Quick online check for all devices\n./scripts/ts-api.sh online\n\nAuthorize/Delete Device\n./scripts/ts-api.sh authorize <device-id>\n./scripts/ts-api.sh delete <device-id>\n\nDevice Tags & Routes\n./scripts/ts-api.sh tags <device-id> tag:server,tag:prod\n./scripts/ts-api.sh routes <device-id>\n\nAuth Keys\n# Create a reusable auth key\n./scripts/ts-api.sh create-key --reusable --tags tag:server\n\n# Create ephemeral key (device auto-removes when offline)\n./scripts/ts-api.sh create-key --ephemeral\n\n# List keys\n./scripts/ts-api.sh keys\n\nDNS Management\n./scripts/ts-api.sh dns                 # Show DNS config\n./scripts/ts-api.sh dns-nameservers     # List nameservers\n./scripts/ts-api.sh magic-dns on|off    # Toggle MagicDNS\n\nACLs\n./scripts/ts-api.sh acl                 # Get current ACL\n./scripts/ts-api.sh acl-validate <file> # Validate ACL file\n\nCommon Use Cases\n\n\"Who's online right now?\"\n\n./scripts/ts-api.sh online\n\n\n\"Send this file to my phone\"\n\ntailscale file cp document.pdf my-phone:\n\n\n\"Expose my dev server publicly\"\n\ntailscale funnel 3000\n\n\n\"Create a key for a new server\"\n\n./scripts/ts-api.sh create-key --reusable --tags tag:server --expiry 7d\n\n\n\"Is the connection direct or relayed?\"\n\ntailscale ping my-server"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jmagar/tailscale",
    "publisherUrl": "https://clawhub.ai/jmagar/tailscale",
    "owner": "jmagar",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tailscale",
    "downloadUrl": "https://openagent3.xyz/downloads/tailscale",
    "agentUrl": "https://openagent3.xyz/skills/tailscale/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tailscale/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tailscale/agent.md"
  }
}