← Back to Skills Marketplace
fuzzyb33s

Computer Takeover

by Fuzzyb33s · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
79
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install computer-takeover
Description
Full unattended remote control of paired devices (nodes) — screen capture, file management, shell commands, app control, camera, notifications, and process m...
README (SKILL.md)

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="\x3Cnode-id>")

Capability Details

Device Intelligence

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

Screen

nodes(action="screen_record", node="\x3Cid>", outPath="C:/temp/screen.mp4", durationMs=30000)
nodes(action="photos_latest", node="\x3Cid>", 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="\x3Cid>", facing="front|back")
nodes(action="camera_clip", node="\x3Cid>", facing="front|back", durationMs=10000)

Shell Execution

Use nodes(action="invoke", node="\x3Cid>", invokeCommand="\x3Ccommand>", 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="\x3Cid>", invokeCommand="powershell", invokeParamsJson="{\"command\": \"Get-ChildItem C:/Users/ -Depth 1 | Format-Table Name, Length, LastWriteTime\"}")

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

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

App Control

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

Process Management

nodes(action="invoke", node="\x3Cid>", 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="\x3Cid>", limit=20)
nodes(action="notifications_action", node="\x3Cid>", notificationKey="\x3Ckey>", notificationAction="open|reply|dismiss")

Location

nodes(action="location_get", node="\x3Cid>", 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="\x3Cid>") — confirm device name/type
  3. nodes(action="screen_record", node="\x3Cid>", ...) 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
Usage Guidance
This skill claims full unattended control of other devices but provides no source, no homepage, and no explanation of how devices are authenticated or paired. Before installing: (1) ask the publisher for source code or an auditable implementation and a public homepage; (2) confirm exactly how pairing and gateway authentication work and require explicit, per-device user consent; (3) require scoped tokens/credentials and audit logging so actions are attributable; (4) do not enable autonomous invocation for this skill until you understand who can trigger it and how approvals are enforced; (5) if you cannot obtain clear provenance and an auth model, avoid installing — the capability is extremely sensitive and the current package lacks necessary safeguards.
Capability Assessment
Purpose & Capability
The name and description claim full unattended remote control (screen, camera, shell, files, location, pairing). The SKILL.md contains commands that would perform those actions, so the capability matches the description — but the skill requests no credentials, no config paths, and provides no install or source code. For a capability that requires device pairing and gateway auth, the lack of declared auth/credential requirements or a provenance/homepage is disproportionate and unexplained.
Instruction Scope
Instructions explicitly tell the agent how to list nodes, run remote shells, capture screen/camera, read notifications and location, and manage files/processes. Those instructions are tightly scoped to remote-control tasks and do not, in themselves, ask the agent to read unrelated local files or exfiltrate data to arbitrary endpoints. However, the instructions do not describe consent, auditing, or safety checks for highly sensitive actions (camera, location, unattended shell/pairing), which is a meaningful omission.
Install Mechanism
This is an instruction-only skill with no install spec and no included code files — from an install-risk perspective nothing is written to disk by the skill. That reduces one class of supply-chain risk, but does not address the missing provenance/credentials issues.
Credentials
The skill requires highly sensitive capabilities (remote shell, camera, location, pairing) but declares no environment variables, credentials, gateway URLs, or config paths. A remote-takeover tool normally requires explicit credentials, tokens, or documented pairing/authentication flows; their absence is incoherent and increases the chance that the skill depends on implicit platform privileges or undisclosed mechanisms.
Persistence & Privilege
The skill is not set to always:true (good), but it enables autonomous invocation by default (platform default). Combined with the skill's invasive capabilities and lack of explicit auth/consent documentation, autonomous invocation materially increases risk: the agent could perform sensitive actions without the user fully understanding what permissions or audit controls are in place.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install computer-takeover
  3. After installation, invoke the skill by name or use /computer-takeover
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of computer-takeover skill for full unattended remote control of paired devices. - Supports real-time screen capture, camera access, file management, shell/command execution, and app control across Windows, macOS, Android, and iOS. - Enables input injection (typing, clicks), process management, notification monitoring/responding, and location retrieval. - Node pairing and management included for secure device linking. - Designed for automation, device ghosting, and direct device management without user interaction on the remote end.
Metadata
Slug computer-takeover
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Computer Takeover?

Full unattended remote control of paired devices (nodes) — screen capture, file management, shell commands, app control, camera, notifications, and process m... It is an AI Agent Skill for Claude Code / OpenClaw, with 79 downloads so far.

How do I install Computer Takeover?

Run "/install computer-takeover" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Computer Takeover free?

Yes, Computer Takeover is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Computer Takeover support?

Computer Takeover is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Computer Takeover?

It is built and maintained by Fuzzyb33s (@fuzzyb33s); the current version is v1.0.0.

💬 Comments