Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

remote-claws远程爪子

Agent Skill

remote-claws 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,951

周安装

163

GitHub Stars

1

下载量

1,291
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:remote-claws(远程爪子)
来源仓库:https://github.com/wentbackward/remote-claws
安装命令:
openclaw skills install remote-claws
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install remote-claws

简介

remote-claws 用于实现完全远程桌面控制,适合在 OpenClaw 中进行屏幕截图和鼠标键盘操作时使用。

  • 适用于远程控制机器、截取屏幕图像和执行远程交互任务。
  • 通过 openclaw skills install 命令安装,详细功能参考 ClawHub 页面说明。
  • 使用前需确认网络连通性和远程访问权限设置。
  • 支持鼠标单击、拖动和键盘输入等基础交互操作。

SKILL.md

name
remote-claws
description
Full remote desktop control of a machine via Remote Claws MCP. Use when asked to: take a screenshot of the remote desktop; click, type, or drag with the mouse/keyboard on the remote machine; run commands or scripts; automate a Chromium browser on the remote machine; read or write files on the remote machine.
homepage
https://github.com/wentbackward/remote-claws

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

  1. Screenshot first. Before clicking or typing, take a desktop_screenshot to see what's on screen. Use the coordinates from the screenshot to target actions.
  2. Prefer browser tools for web tasks. browser_* tools use CSS selectors and are resolution-independent. Only use desktop_* tools for web tasks if the browser tools can't reach something (e.g. browser dialogs, file pickers).
  3. Prefer element names over coordinates. desktop_click_element and desktop_get_element_text target UI controls by name — more reliable than coordinate clicking, which breaks when windows move.
  4. Exec is async. exec_run starts a command and returns immediately. Use exec_get_output with wait=true if you need to block until it finishes.
  5. Re-screenshot after actions. Windows may move, dialogs may appear. Take a fresh screenshot to verify the result before proceeding.

Tool Groups

Desktop (mouse, keyboard, screenshots)

  • desktop_screenshot — capture full screen or region [x, y, width, height]
  • desktop_mouse_click — left/right/middle click at x, y
  • desktop_mouse_move — move cursor to x, y
  • desktop_mouse_drag — drag from start to end coordinates
  • desktop_type_text — type ASCII text at current focus (ASCII only)
  • desktop_press_key — press key or combo: "enter", "ctrl+c", "alt+f4"
  • desktop_scroll — scroll at x,y; direction "up" or "down"
  • desktop_find_window — find windows by title or class_name substring
  • desktop_focus_window — bring window to foreground by title
  • desktop_list_elements — list UI controls (buttons, fields) inside a window
  • desktop_click_element — click a named UI element (more reliable than coords)
  • desktop_get_element_text — read the value of a named UI element

Browser (Chromium via Playwright — CSS selectors)

  • browser_navigate — go to a URL
  • browser_click — click element by CSS selector
  • browser_fill — set input value (handles Unicode, triggers change events)
  • browser_type — type keystroke-by-keystroke (appends, does not clear)
  • browser_press_key — key press e.g. "Enter", "Control+a"
  • browser_get_text — extract visible text from element (default: body)
  • browser_get_html — get HTML markup of element
  • browser_eval_js — run JavaScript in page context
  • browser_screenshot — screenshot page or element
  • browser_wait_for — wait for element state: visible/hidden/attached/detached
  • browser_select_option — select a dropdown option by value or label
  • browser_go_back / browser_go_forward
  • browser_tabs_list / browser_tab_new / browser_tab_close

Exec (run commands, async)

  • exec_run — start command; returns process_id immediately
  • exec_get_output — read stdout/stderr; set wait=true to block
  • exec_send_input — send a line to stdin of a running process
  • exec_kill — terminate a process
  • exec_list — list all tracked processes

Files (base64 encoded)

  • file_write — write base64 content to a path
  • file_read — read file as base64 (use offset/limit for large files)
  • file_list — list directory; supports glob patterns, recursive
  • file_delete — delete file or empty directory
  • file_move — move or rename file/directory
  • file_info — get size, created, modified timestamps

Authentication & Security

The remote-claws MCP server requires a bearer token, configured in openclaw.json when registering the server. The server will reject unauthenticated connections with 401.

The server also supports IP allowlisting (allowed_ips), host header validation (allowed_hosts), and per-tool permission policies (permissions.json) to restrict which tools are available. See the setup guide and README for configuration details.

Important Notes

  • Screenshots are JPEG, max 1280x960. Coordinates are absolute pixels.
  • desktop_type_text is ASCII only. For Unicode, use browser_fill or clipboard: exec_run powershell Set-Clipboard, then desktop_press_key ctrl+v.
  • File content is base64 encoded. Decode after reading.
  • The browser launches on first use and stays open across calls. Sessions persist (cookies, local storage).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.73%
按下载量换算1,107

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills