remote-claws
Installation
SKILL.md
Remote Claws — Remote Desktop Control
Controls a remote machine over MCP/SSE. All 39 tools are provided by the remote-claws MCP server registered in openclaw.json.
When to Use This Skill
Use Remote Claws tools whenever you need to interact with the remote desktop machine — taking screenshots, clicking buttons, typing text, running commands, automating a browser, or transferring files. If the user asks you to do something "on the remote machine" or "on Windows," these are your tools.
Strategy
- Screenshot first. Before clicking or typing, take a
desktop_screenshotto see what's on screen. Use the coordinates from the screenshot to target actions. - Prefer browser tools for web tasks.
browser_*tools use CSS selectors and are resolution-independent. Only usedesktop_*tools for web tasks if the browser tools can't reach something (e.g. browser dialogs, file pickers). - Prefer element names over coordinates.
desktop_click_elementanddesktop_get_element_texttarget UI controls by name — more reliable than coordinate clicking, which breaks when windows move. - Exec is async.
exec_runstarts a command and returns immediately. Useexec_get_outputwithwait=trueif you need to block until it finishes. - Re-screenshot after actions. Windows may move, dialogs may appear. Take a fresh screenshot to verify the result before proceeding.