{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tailscale-serve",
    "name": "Tailscale Serve",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/snopoke/tailscale-serve",
    "canonicalUrl": "https://clawhub.ai/snopoke/tailscale-serve",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tailscale-serve",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tailscale-serve",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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. 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. 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-serve"
    },
    "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-serve",
    "agentPageUrl": "https://openagent3.xyz/skills/tailscale-serve/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tailscale-serve/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tailscale-serve/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Tailscale Serve Skill",
        "body": "Manage multiple paths with tailscale serve without conflicts."
      },
      {
        "title": "Check what's currently served",
        "body": "tailscale serve status"
      },
      {
        "title": "Serve a directory or file at a specific path",
        "body": "# Directory\ntailscale serve --bg --set-path /slides /path/to/directory\n\n# Single file\ntailscale serve --bg --set-path /presentation /path/to/file.html\n\n# Port (for running services)\ntailscale serve --bg --set-path /api http://localhost:8080"
      },
      {
        "title": "Serve from a port at root (replaces everything)",
        "body": "tailscale serve --bg 8888"
      },
      {
        "title": "Remove a specific path",
        "body": "tailscale serve --https=443 /slides off"
      },
      {
        "title": "Reset all serving",
        "body": "tailscale serve reset"
      },
      {
        "title": "Important Notes",
        "body": "Path conflicts: Serving at / will override all other paths\nBackground mode: Use --bg to keep it running\nMultiple paths: You can serve multiple things simultaneously with different paths\nStatus first: Always check tailscale serve status before adding new paths"
      },
      {
        "title": "Serve presentation alongside control UI",
        "body": "# If control UI is at /, serve presentation at a subpath\ntailscale serve --bg --set-path /slides ~/clawd/personal-agents-presentation.html\n\n# Access at: https://[hostname].ts.net/slides"
      },
      {
        "title": "Serve multiple directories",
        "body": "tailscale serve --bg --set-path /docs ~/documents\ntailscale serve --bg --set-path /slides ~/presentations\ntailscale serve --bg --set-path /files ~/files"
      },
      {
        "title": "Serve a local dev server",
        "body": "tailscale serve --bg --set-path /app http://localhost:3000"
      },
      {
        "title": "Workflow",
        "body": "Check current status: tailscale serve status\nChoose an unused path (e.g., /slides, /docs, /api)\nServe with --set-path /your-path /source\nVerify with tailscale serve status again\nShare the full URL: https://[hostname].ts.net/your-path"
      },
      {
        "title": "Troubleshooting",
        "body": "\"Can't access my served content\"\n\nCheck tailscale serve status - is it at the path you expect?\nDid something else overwrite the root /?\n\n\"Want to replace everything with a port\"\n\ntailscale serve reset\ntailscale serve --bg 8888\n\n\"Want to add to existing setup\"\n\n# Don't use reset! Just add with --set-path\ntailscale serve --bg --set-path /newpath /source"
      }
    ],
    "body": "Tailscale Serve Skill\n\nManage multiple paths with tailscale serve without conflicts.\n\nKey Commands\nCheck what's currently served\ntailscale serve status\n\nServe a directory or file at a specific path\n# Directory\ntailscale serve --bg --set-path /slides /path/to/directory\n\n# Single file\ntailscale serve --bg --set-path /presentation /path/to/file.html\n\n# Port (for running services)\ntailscale serve --bg --set-path /api http://localhost:8080\n\nServe from a port at root (replaces everything)\ntailscale serve --bg 8888\n\nRemove a specific path\ntailscale serve --https=443 /slides off\n\nReset all serving\ntailscale serve reset\n\nImportant Notes\nPath conflicts: Serving at / will override all other paths\nBackground mode: Use --bg to keep it running\nMultiple paths: You can serve multiple things simultaneously with different paths\nStatus first: Always check tailscale serve status before adding new paths\nCommon Patterns\nServe presentation alongside control UI\n# If control UI is at /, serve presentation at a subpath\ntailscale serve --bg --set-path /slides ~/clawd/personal-agents-presentation.html\n\n# Access at: https://[hostname].ts.net/slides\n\nServe multiple directories\ntailscale serve --bg --set-path /docs ~/documents\ntailscale serve --bg --set-path /slides ~/presentations\ntailscale serve --bg --set-path /files ~/files\n\nServe a local dev server\ntailscale serve --bg --set-path /app http://localhost:3000\n\nWorkflow\nCheck current status: tailscale serve status\nChoose an unused path (e.g., /slides, /docs, /api)\nServe with --set-path /your-path /source\nVerify with tailscale serve status again\nShare the full URL: https://[hostname].ts.net/your-path\nTroubleshooting\n\n\"Can't access my served content\"\n\nCheck tailscale serve status - is it at the path you expect?\nDid something else overwrite the root /?\n\n\"Want to replace everything with a port\"\n\ntailscale serve reset\ntailscale serve --bg 8888\n\n\n\"Want to add to existing setup\"\n\n# Don't use reset! Just add with --set-path\ntailscale serve --bg --set-path /newpath /source"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/snopoke/tailscale-serve",
    "publisherUrl": "https://clawhub.ai/snopoke/tailscale-serve",
    "owner": "snopoke",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tailscale-serve",
    "downloadUrl": "https://openagent3.xyz/downloads/tailscale-serve",
    "agentUrl": "https://openagent3.xyz/skills/tailscale-serve/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tailscale-serve/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tailscale-serve/agent.md"
  }
}