Windows Execution Interface
Windows automation via Clawdos API: screen capture, mouse/keyboard input, window management, file-system operations, and shell command execution. Use when th...
35 downloads
Free
Reviewed
automation
windows
Clawdos
Overview
This skill exposes 19 tools that let you operate a Windows machine through the Clawdos REST API. It acts as a remote Windows execution interface, granting you capabilities for screen capture, mouse and keyboard input, window management, filesystem operations, and shell execution.
⚠️ Requirements
This skill requires a corresponding server running on your Windows host. Download and follow the setup instructions here: danzig233/clawdos
Core Capabilities
1. Visual Navigation (Screen & Window)
- Window Management: Find and focus specific applications using
window_listandwindow_focus. - Screen Verification: Use
screen_captureto understand the current UI state. - Scaling Note: Always check resolution via
get_envagainst your current screenshot dimensions. If they differ, provideview_widthandview_heightto input tools to enable automatic coordinate scaling.
2. Precise Input (Mouse & Keyboard)
- Prefer Keyboard & Shell: To minimize errors from visual coordinate estimation, prioritize using keyboard shortcuts (
key_combo,type_text) or shell commands (shell_exec) over mouse operations whenever possible. - Move-Verify-Correct Loop: If precision is required for mouse clicking, follow this loop:
- Move:
mouse_moveto the estimated coordinates. - Verify:
screen_captureto see where the cursor landed relative to the UI element. - Correct: Calculate pixel difference and
mouse_moveagain. - Action:
mouse_clickonly when verified.
- Move:
- Scrolling:
mouse_scrollis recommended and safe for navigating long pages.
3. File & System Operations (FS & Shell)
- Filesystem:
fs_*operations (fs_list,fs_read,fs_write,fs_mkdir,fs_delete,fs_move) are sandboxed to theworkingDirsdeclared in Clawdos config; path escapes return 403. - Shell:
shell_execis restricted server-side; only whitelisted commands are allowed.
Resources (optional)
scripts/
The core Python modules implementing the OpenClaw native skill interface.
__init__.py: OpenClaw Skill entry pointclient.py: HTTP client wrapperconfig.py: Configuration modelstools.py: Tool definitions
Download
ZIP package — ready to use
Skill Info
- Creator
- danzig233
- Downloads
- 35
- Published
- Mar 15, 2026
- Updated
- Mar 16, 2026