Overview
- Skill Key
- hjx378/windows-automation
- Author
- hjx378
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/hjx378/windows-automation
- Latest Commit SHA
- 766d0a14ed4864bd490bbfb0d88f3c6dead425d0
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Windows Automation 技能。 若已安装,则直接安装 Windows Automation 技能。
# Windows Automation Skill > Automate Windows desktop interactions using PyAutoGUI ## Overview This skill provides comprehensive Windows desktop automation capabilities. Use it when you need to: - Simulate mouse clicks and keyboard input - Automate GUI interactions in non-web applications - Capture screenshots - Manage clipboard content - Launch applications - Run system commands ## Setup The required packages are already installed: - `pyautogui` - Core automation engine - `pywin32` - Windows API access - `pyperclip` - Clipboard operations If needed, install manually: ```bash pip install pyautogui pywin32 pyperclip ``` --- ## Tools ### 🖱️ Mouse Control #### `windows_click` Click at specified screen coordinates. ```python windows_click(x=100, y=200, button="left", clicks=1) ``` **Parameters:** | Param | Type | Default | Description | |-------|------|---------|-------------| | `x` | float | required | X coordinate | | `y` | float | required | Y coordinate | | `button` | str | "left" | "left", "right", "middle" | | `clicks` | int | 1 | Number of clicks | --- #### `windows_double_click` Double click at position. ```python windows_double_click(x=500, y=300) ``` --- #### `windows_right_click` Right click at position. ```python windows_right_click(x=100, y=200) ``` --- #### `windows_move` Move mouse to position. ```python windows_move(x=800, y=600, duration=0.5) ``` **Parameters:** | Param | Type | Default | Description | |-------|------|---------|-------------| | `x` | float | required | X coordinate | | `y` | float | required | Y coordinate | | `duration` | float | 0.2 | Movement duration in seconds | --- ### ⌨️ Keyboard Control #### `windows_type` Type text using keyboard. ```python windows_type(text="Hello World!", interval=0.05) ``` **Parameters:** | Param | Type | Default | Description | |-------|------|---------|-------------| | `text` | str | required | Text to type | | `interval` | float | 0.05 | Delay between keystrokes | --- #### `wi...
# windows-automation Windows desktop automation skill for OpenClaw. ## Features using PyAutoGUI- 🖱️ **Mouse Control**: Click, double-click, right-click, move, drag - ⌨️ **Keyboard Control**: Type text, press keys, hotkeys - 📸 **Screen Operations**: Screenshot capture - 📋 **Clipboard**: Read and write clipboard content - 🪟 **App Launch**: Launch Windows applications - 💻 **Command Execution**: Run PowerShell/CMD commands - ℹ️ **System Info**: Get cursor position, screen size, system details ## Installation ```bash pip install pyautogui pywin32 pyperclip ``` ## Usage Examples ``` # Click at position windows_click x=500 y=300 # Open calculator windows_launch_app name="calc" # Copy selected text windows_hotkey ctrl c # Take a screenshot windows_screenshot # Get cursor position windows_cursor_position # Run ipconfig windows_command ipconfig ``` ## Tools | Tool | Description | |------|-------------| | `windows_click` | Click at coordinates | | `windows_double_click` | Double click | | `windows_right_click` | Right click | | `windows_move` | Move mouse | | `windows_type` | Type text | | `windows_press` | Press a key | | `windows_hotkey` | Keyboard shortcut | | `windows_scroll` | Scroll wheel | | `windows_screenshot` | Take screenshot | | `windows_cursor_position` | Get cursor position | | `windows_screen_size` | Get screen resolution | | `windows_launch_app` | Launch app | | `windows_command` | Run command | | `windows_clipboard_read` | Read clipboard | | `windows_clipboard_write` | Write clipboard | | `windows_system_info` | System information | ## License MIT
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.