Token导航 LogoToken导航TokenDH.com
研究检索可写文件clawhub未标认证来源可访问clear审计提醒

computer-takeover计算机接管

Agent Skill

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

总安装

2,305

周安装

98

GitHub Stars

公开资料未说明

下载量

808
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install computer-takeover

简介

实现对配对设备的完全远程控制,包括屏幕捕获与文件管理。

  • 支持 shell 命令执行、应用程序控制与摄像头调用。
  • 适用于无人值守环境下的设备维护与自动化操作。
  • 具备通知管理与进程控制等高级交互能力。computer-takeover 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用前必须确保设备已正确配对并授予相应访问权限。

SKILL.md

name
computer-takeover
description
Full unattended remote control of paired devices (nodes) — screen capture, file management, shell commands, app control, camera, notifications, and process management. Use when: (1) remotely accessing or controlling a paired Windows/macOS/Android/iOS device without user interaction, (2) running commands installing apps or managing files on a remote node, (3) capturing screen or camera feeds from a remote device, (4) monitoring device health battery storage or network status, (5) automating actions on a remote device click type open app etc, (6) any form of remote desktop-style takeover or device ghosting.

Computer Takeover

Unattended remote control of paired OpenClaw nodes. Controls the remote device as if physically sitting in front of it — no user presence required on the remote end.

Core Capabilities

  1. Device Intelligence — List nodes, get device info, health, permissions, battery, storage, network
  2. Screen Capture — Snapshot or record the remote screen in real-time
  3. Camera Access — Snap photos or record clips from front/back camera
  4. Shell Execution — Run commands, scripts, and PowerShell/Bash on the remote device
  5. File Management — Browse, read, write, delete files on the remote device via shell
  6. App Control — Install, launch, close, list installed apps
  7. Process Management — List running processes, kill processes, monitor CPU/memory
  8. Notifications — Read notifications, trigger actions or replies
  9. Input Injection — Type text, simulate clicks, keypresses (via shell automation)
  10. Location — Get GPS coordinates (if device supports it)
  11. Device Pairing — Initiate pairing or manage existing pairings

Quick Start

Always start by listing available nodes to find the target device:

nodes(action="status")

Then describe the node to confirm it's the right one:

nodes(action="describe", node="<node-id>")

Capability Details

Device Intelligence

nodes(action="status")           // List all paired nodes
nodes(action="device_info", node="<id>")
nodes(action="device_health", node="<id>")
nodes(action="device_permissions", node="<id>")
nodes(action="device_status", node="<id>")  // battery, storage, network

Screen

nodes(action="screen_record", node="<id>", outPath="C:/temp/screen.mp4", durationMs=30000)
nodes(action="photos_latest", node="<id>", limit=5)  // screenshots stored as photos

For live screen viewing, use the canvas tool with target="node" and the node's gateway URL.

Camera

nodes(action="camera_snap", node="<id>", facing="front|back")
nodes(action="camera_clip", node="<id>", facing="front|back", durationMs=10000)

Shell Execution

Use nodes(action="invoke", node="<id>", invokeCommand="<command>", invokeParamsJson="{}").

Windows (PowerShell):

{
  "invokeCommand": "powershell",
  "invokeParamsJson": "{\"command\": \"Get-Process | Select -First 10 Name, CPU, WorkingSet\"}"
}

Android (adb):

{
  "invokeCommand": "adb",
  "invokeParamsJson": "{\"command\": \"shell dumpsys battery\"}"
}

Linux/macOS (SSH-style):

{
  "invokeCommand": "bash",
  "invokeParamsJson": "{\"command\": \"ls -la /tmp | head -20\"}"
}

File Management (via Shell)

# Windows: list directory
nodes(action="invoke", node="<id>", invokeCommand="powershell", invokeParamsJson="{\"command\": \"Get-ChildItem C:/Users/ -Depth 1 | Format-Table Name, Length, LastWriteTime\"}")

# Windows: read file
nodes(action="invoke", node="<id>", invokeCommand="powershell", invokeParamsJson="{\"command\": \"Get-Content C:/temp/log.txt -Tail 50\"}")

# Windows: write file
nodes(action="invoke", node="<id>", invokeCommand="powershell", invokeParamsJson="{\"command\": \"Set-Content -Path C:/temp/output.txt -Value 'Hello from remote'\"}")

App Control

nodes(action="invoke", node="<id>", invokeCommand="powershell", invokeParamsJson="{\"command\": \"Start-Process notepad\"}")  // launch
nodes(action="invoke", node="<id>", invokeCommand="powershell", invokeParamsJson="{\"command\": \"Get-Process | Where Name -eq 'notepad' | Stop-Process\"}")  // close
nodes(action="invoke", node="<id>", invokeCommand="powershell", invokeParamsJson="{\"command\": \"winget install Microsoft.PowerToys --silent\"}")  // install

Process Management

nodes(action="invoke", node="<id>", invokeCommand="powershell", invokeParamsJson="{\"command\": \"Get-Process | Sort CPU -Descending | Select -First 20 Name, Id, CPU, @{N='MEM_MB';E={[math]::Round($_.WorkingSet/1MB,1)}} | Format-Table -AutoSize\"}")

Notifications

nodes(action="notifications_list", node="<id>", limit=20)
nodes(action="notifications_action", node="<id>", notificationKey="<key>", notificationAction="open|reply|dismiss")

Location

nodes(action="location_get", node="<id>", desiredAccuracy="precise")

Node Pairing

To pair a new device, use the node-connect skill and follow the pairing flow. Pairing requires the device to have the OpenClaw companion app installed and connected to the same gateway.

Workflow: Full Takeover Session

  1. nodes(action="status") — find the node ID
  2. nodes(action="device_info", node="<id>") — confirm device name/type
  3. nodes(action="screen_record", node="<id>", ...) or canvas tool — see what they're doing
  4. Run commands as needed via nodes(action="invoke", ...)
  5. Transfer files via base64 encoding through shell or direct path sharing

Important Notes

  • Timeout: Default invokeTimeoutMs is 30000ms. Increase for long-running commands.
  • Elevation: Some operations (installing apps, killing system processes) may need elevated permissions on the remote device.
  • Safety: Always confirm the target node before running destructive commands (delete files, kill processes, etc.).
  • Gateway URL: For canvas tool with remote screen, the node must have gateway.remote.url configured and accessible.

References

  • Full nodes tool docs: see OpenClaw tool reference for all actions and parameters
  • Node pairing guide: see node-connect skill for setup troubleshooting
  • Gateway configuration: gateway.remote.url in OpenClaw config controls accessibility

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.76%
按下载量换算709

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills