{
  "schemaVersion": "1.0",
  "item": {
    "slug": "remote-desktop",
    "name": "Remote Desktop",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/remote-desktop",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/remote-desktop",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/remote-desktop",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remote-desktop",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "memory-template.md",
      "protocols.md",
      "setup.md",
      "troubleshooting.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/remote-desktop"
    },
    "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/remote-desktop",
    "agentPageUrl": "https://openagent3.xyz/skills/remote-desktop/agent",
    "manifestUrl": "https://openagent3.xyz/skills/remote-desktop/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/remote-desktop/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": "Setup",
        "body": "On first use, read setup.md for integration guidelines and help the user with their question."
      },
      {
        "title": "When to Use",
        "body": "User needs remote desktop access to another machine. Agent handles protocol selection, connection commands, tunnel setup, and troubleshooting display issues."
      },
      {
        "title": "Architecture",
        "body": "Config lives in ~/remote-desktop/. See memory-template.md for structure.\n\n~/remote-desktop/\n├── memory.md         # Saved hosts, preferences\n└── hosts/            # Per-host connection profiles"
      },
      {
        "title": "Quick Reference",
        "body": "TopicFileSetup processsetup.mdMemory templatememory-template.mdProtocol detailsprotocols.mdTroubleshootingtroubleshooting.md"
      },
      {
        "title": "1. Protocol Selection",
        "body": "Target OSBest ProtocolWhyWindowsRDPNative, best performanceLinux (desktop)VNC or X11VNC for persistent, X11 for appsmacOSVNC (built-in)Screen Sharing uses VNCHeadless LinuxSSH + X11 forwardingNo desktop needed"
      },
      {
        "title": "2. Security First",
        "body": "Always prefer SSH tunneling over direct exposure\nNever expose RDP (3389) or VNC (5900) to internet directly\nUse SSH keys, not passwords\nIf direct needed, use VPN or firewall rules"
      },
      {
        "title": "3. Connection Commands",
        "body": "RDP to Windows:\n\n# xfreerdp (recommended)\nxfreerdp /v:HOST /u:USER /p:PASS /size:1920x1080 /dynamic-resolution\n\n# With SSH tunnel first\nssh -L 3389:localhost:3389 user@jumphost\nxfreerdp /v:localhost /u:USER\n\nVNC:\n\n# Direct (NOT recommended for internet)\nvncviewer HOST:5901\n\n# Via SSH tunnel (recommended)\nssh -L 5901:localhost:5901 user@HOST\nvncviewer localhost:5901\n\nSSH X11 forwarding:\n\n# Single app\nssh -X user@HOST firefox\n\n# Trusted (faster, less secure)\nssh -Y user@HOST"
      },
      {
        "title": "4. Port Defaults",
        "body": "ProtocolDefault PortDisplay :0Display :1RDP33893389-VNC590059005901SSH22--NoMachine40004000-"
      },
      {
        "title": "5. Tunnel Everything",
        "body": "For any remote desktop over internet:\n\n# Local port forward\nssh -L LOCAL_PORT:TARGET:REMOTE_PORT user@JUMPHOST\n\n# Example: RDP via jumphost\nssh -L 13389:windows-pc:3389 user@jumphost\nxfreerdp /v:localhost:13389 /u:USER"
      },
      {
        "title": "6. Clipboard and Files",
        "body": "ToolClipboardFile Transferxfreerdp/clipboard flag/drive:share,/pathvncviewerUsually worksSeparate SCP/SFTPSSH X11Needs xclip setupSCP/SFTP"
      },
      {
        "title": "7. Save Working Configs (with consent)",
        "body": "When a connection works, ask \"Want me to save this config for next time?\" If yes, save to ~/remote-desktop/hosts/:\n\n# hostname.md\nhost: 192.168.1.50\nprotocol: rdp\nuser: admin\ntunnel: ssh user@jumphost -L 3389:192.168.1.50:3389\nresolution: 1920x1080\nnotes: Windows 11 dev machine\n\nNever save passwords — only hostnames, users, and connection flags."
      },
      {
        "title": "Common Traps",
        "body": "Black screen after VNC connect → Display manager not running or wrong display number. Try :1 instead of :0, or start a VNC server: vncserver :1\nRDP disconnects immediately → Check Network Level Authentication (NLA) settings, or add /sec:tls to xfreerdp\nX11 forwarding not working → Ensure X11Forwarding yes in server's /etc/ssh/sshd_config and ForwardX11 yes in client config\nSlow VNC performance → Use tighter encodings: vncviewer -encoding tight HOST:1\n\"Connection refused\" → Service not running, firewall blocking, or wrong port. Check with ss -tlnp | grep PORT\nClipboard not syncing → xfreerdp needs /clipboard, VNC needs vncconfig running"
      },
      {
        "title": "Security & Privacy",
        "body": "Data that stays local:\n\nHost configurations in ~/remote-desktop/ (with user consent)\nConnection preferences\n\nThis skill does NOT:\n\nStore passwords in plain text — use SSH keys or system keyring\nAuto-save configs without asking first\nConnect to hosts without explicit user command\nMake any network requests itself (you run the commands)\nAccess any memory outside ~/remote-desktop/\n\nBefore saving a host profile: Always ask \"Want me to save this config for next time?\""
      },
      {
        "title": "Scope",
        "body": "This skill ONLY:\n\nProvides commands for remote desktop connections\nHelps troubleshoot display and connection issues\nSaves host profiles locally\n\nThis skill NEVER:\n\nStores credentials in plain text\nAuto-connects to anything\nModifies SSH or system configs without explicit instruction"
      },
      {
        "title": "Related Skills",
        "body": "Install with clawhub install <slug> if user confirms:\n\nlinux — Linux system administration\nserver — Server setup and management\nnetwork — Network configuration and debugging\nsysadmin — System administration tasks"
      },
      {
        "title": "Feedback",
        "body": "If useful: clawhub star remote-desktop\nStay updated: clawhub sync"
      }
    ],
    "body": "Setup\n\nOn first use, read setup.md for integration guidelines and help the user with their question.\n\nWhen to Use\n\nUser needs remote desktop access to another machine. Agent handles protocol selection, connection commands, tunnel setup, and troubleshooting display issues.\n\nArchitecture\n\nConfig lives in ~/remote-desktop/. See memory-template.md for structure.\n\n~/remote-desktop/\n├── memory.md         # Saved hosts, preferences\n└── hosts/            # Per-host connection profiles\n\nQuick Reference\nTopic\tFile\nSetup process\tsetup.md\nMemory template\tmemory-template.md\nProtocol details\tprotocols.md\nTroubleshooting\ttroubleshooting.md\nCore Rules\n1. Protocol Selection\nTarget OS\tBest Protocol\tWhy\nWindows\tRDP\tNative, best performance\nLinux (desktop)\tVNC or X11\tVNC for persistent, X11 for apps\nmacOS\tVNC (built-in)\tScreen Sharing uses VNC\nHeadless Linux\tSSH + X11 forwarding\tNo desktop needed\n2. Security First\nAlways prefer SSH tunneling over direct exposure\nNever expose RDP (3389) or VNC (5900) to internet directly\nUse SSH keys, not passwords\nIf direct needed, use VPN or firewall rules\n3. Connection Commands\n\nRDP to Windows:\n\n# xfreerdp (recommended)\nxfreerdp /v:HOST /u:USER /p:PASS /size:1920x1080 /dynamic-resolution\n\n# With SSH tunnel first\nssh -L 3389:localhost:3389 user@jumphost\nxfreerdp /v:localhost /u:USER\n\n\nVNC:\n\n# Direct (NOT recommended for internet)\nvncviewer HOST:5901\n\n# Via SSH tunnel (recommended)\nssh -L 5901:localhost:5901 user@HOST\nvncviewer localhost:5901\n\n\nSSH X11 forwarding:\n\n# Single app\nssh -X user@HOST firefox\n\n# Trusted (faster, less secure)\nssh -Y user@HOST\n\n4. Port Defaults\nProtocol\tDefault Port\tDisplay :0\tDisplay :1\nRDP\t3389\t3389\t-\nVNC\t5900\t5900\t5901\nSSH\t22\t-\t-\nNoMachine\t4000\t4000\t-\n5. Tunnel Everything\n\nFor any remote desktop over internet:\n\n# Local port forward\nssh -L LOCAL_PORT:TARGET:REMOTE_PORT user@JUMPHOST\n\n# Example: RDP via jumphost\nssh -L 13389:windows-pc:3389 user@jumphost\nxfreerdp /v:localhost:13389 /u:USER\n\n6. Clipboard and Files\nTool\tClipboard\tFile Transfer\nxfreerdp\t/clipboard flag\t/drive:share,/path\nvncviewer\tUsually works\tSeparate SCP/SFTP\nSSH X11\tNeeds xclip setup\tSCP/SFTP\n7. Save Working Configs (with consent)\n\nWhen a connection works, ask \"Want me to save this config for next time?\" If yes, save to ~/remote-desktop/hosts/:\n\n# hostname.md\nhost: 192.168.1.50\nprotocol: rdp\nuser: admin\ntunnel: ssh user@jumphost -L 3389:192.168.1.50:3389\nresolution: 1920x1080\nnotes: Windows 11 dev machine\n\n\nNever save passwords — only hostnames, users, and connection flags.\n\nCommon Traps\nBlack screen after VNC connect → Display manager not running or wrong display number. Try :1 instead of :0, or start a VNC server: vncserver :1\nRDP disconnects immediately → Check Network Level Authentication (NLA) settings, or add /sec:tls to xfreerdp\nX11 forwarding not working → Ensure X11Forwarding yes in server's /etc/ssh/sshd_config and ForwardX11 yes in client config\nSlow VNC performance → Use tighter encodings: vncviewer -encoding tight HOST:1\n\"Connection refused\" → Service not running, firewall blocking, or wrong port. Check with ss -tlnp | grep PORT\nClipboard not syncing → xfreerdp needs /clipboard, VNC needs vncconfig running\nSecurity & Privacy\n\nData that stays local:\n\nHost configurations in ~/remote-desktop/ (with user consent)\nConnection preferences\n\nThis skill does NOT:\n\nStore passwords in plain text — use SSH keys or system keyring\nAuto-save configs without asking first\nConnect to hosts without explicit user command\nMake any network requests itself (you run the commands)\nAccess any memory outside ~/remote-desktop/\n\nBefore saving a host profile: Always ask \"Want me to save this config for next time?\"\n\nScope\n\nThis skill ONLY:\n\nProvides commands for remote desktop connections\nHelps troubleshoot display and connection issues\nSaves host profiles locally\n\nThis skill NEVER:\n\nStores credentials in plain text\nAuto-connects to anything\nModifies SSH or system configs without explicit instruction\nRelated Skills\n\nInstall with clawhub install <slug> if user confirms:\n\nlinux — Linux system administration\nserver — Server setup and management\nnetwork — Network configuration and debugging\nsysadmin — System administration tasks\nFeedback\nIf useful: clawhub star remote-desktop\nStay updated: clawhub sync"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/remote-desktop",
    "publisherUrl": "https://clawhub.ai/ivangdavila/remote-desktop",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/remote-desktop",
    "downloadUrl": "https://openagent3.xyz/downloads/remote-desktop",
    "agentUrl": "https://openagent3.xyz/skills/remote-desktop/agent",
    "manifestUrl": "https://openagent3.xyz/skills/remote-desktop/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/remote-desktop/agent.md"
  }
}