{
  "schemaVersion": "1.0",
  "item": {
    "slug": "wireguard",
    "name": "WireGuard",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/wireguard",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/wireguard",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/wireguard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wireguard",
    "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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/wireguard"
    },
    "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/wireguard",
    "agentPageUrl": "https://openagent3.xyz/skills/wireguard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wireguard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wireguard/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": "AllowedIPs Traps (Most Common Mistakes)",
        "body": "AllowedIPs means different things on each side — server: what peer CAN send; client: what to ROUTE through tunnel\n0.0.0.0/0 routes ALL traffic including tunnel endpoint — breaks connectivity, must exclude server's public IP first\nOverlapping AllowedIPs between peers = undefined routing — each IP range must belong to exactly one peer\nWrong mask silently breaks routing — /32 for single host, /24 for subnet, verify carefully"
      },
      {
        "title": "Connection Failures",
        "body": "No handshake = wrong public key, firewall blocking UDP, or wrong endpoint — check all three, not just one\nOne-way traffic = AllowedIPs misconfigured — packets go out but replies don't route back\nMissing PersistentKeepalive = 25 breaks NAT traversal — peer behind NAT unreachable after ~2 minutes\nConfig file permissions must be 600 — wg-quick silently refuses to start with loose permissions"
      },
      {
        "title": "DNS Leaks",
        "body": "Without DNS = in client config, DNS queries bypass tunnel — leaks real IP to DNS provider\nFull tunnel (0.0.0.0/0) without DNS config = false sense of security — traffic tunneled but DNS exposed"
      },
      {
        "title": "Routing Setup",
        "body": "IP forwarding disabled by default on Linux — tunnel works but packets don't route between interfaces\nNAT required for internet access through tunnel — without masquerade, return packets don't find their way\nFirewall must allow UDP on ListenPort — WireGuard is UDP only, no TCP fallback exists"
      },
      {
        "title": "Key Security",
        "body": "Private key file permissions matter — world-readable key is compromised, set 600 immediately after generation\nNever transmit private keys — generate on each machine, exchange only public keys\nConfig files contain private keys — treat wg0.conf as secret, not just privatekey file"
      },
      {
        "title": "Live Changes",
        "body": "Adding peers requires interface reload on most setups — or use wg set for live changes without dropping connections\nwg syncconf applies changes without restart — but config file format differs from wg.conf (use wg-quick strip)"
      },
      {
        "title": "Debugging",
        "body": "wg show displays handshake timestamps — stale handshake (>2 min) means connection dead despite interface up\nHandshake happens on first packet — no traffic = no handshake attempt, ping to test"
      }
    ],
    "body": "AllowedIPs Traps (Most Common Mistakes)\nAllowedIPs means different things on each side — server: what peer CAN send; client: what to ROUTE through tunnel\n0.0.0.0/0 routes ALL traffic including tunnel endpoint — breaks connectivity, must exclude server's public IP first\nOverlapping AllowedIPs between peers = undefined routing — each IP range must belong to exactly one peer\nWrong mask silently breaks routing — /32 for single host, /24 for subnet, verify carefully\nConnection Failures\nNo handshake = wrong public key, firewall blocking UDP, or wrong endpoint — check all three, not just one\nOne-way traffic = AllowedIPs misconfigured — packets go out but replies don't route back\nMissing PersistentKeepalive = 25 breaks NAT traversal — peer behind NAT unreachable after ~2 minutes\nConfig file permissions must be 600 — wg-quick silently refuses to start with loose permissions\nDNS Leaks\nWithout DNS = in client config, DNS queries bypass tunnel — leaks real IP to DNS provider\nFull tunnel (0.0.0.0/0) without DNS config = false sense of security — traffic tunneled but DNS exposed\nRouting Setup\nIP forwarding disabled by default on Linux — tunnel works but packets don't route between interfaces\nNAT required for internet access through tunnel — without masquerade, return packets don't find their way\nFirewall must allow UDP on ListenPort — WireGuard is UDP only, no TCP fallback exists\nKey Security\nPrivate key file permissions matter — world-readable key is compromised, set 600 immediately after generation\nNever transmit private keys — generate on each machine, exchange only public keys\nConfig files contain private keys — treat wg0.conf as secret, not just privatekey file\nLive Changes\nAdding peers requires interface reload on most setups — or use wg set for live changes without dropping connections\nwg syncconf applies changes without restart — but config file format differs from wg.conf (use wg-quick strip)\nDebugging\nwg show displays handshake timestamps — stale handshake (>2 min) means connection dead despite interface up\nHandshake happens on first packet — no traffic = no handshake attempt, ping to test"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/wireguard",
    "publisherUrl": "https://clawhub.ai/ivangdavila/wireguard",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/wireguard",
    "downloadUrl": "https://openagent3.xyz/downloads/wireguard",
    "agentUrl": "https://openagent3.xyz/skills/wireguard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wireguard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wireguard/agent.md"
  }
}