Clawd Cursor
Desktop Automation Browser & AutomationInstall Command
npx clawhub@latest install clawd-cursor
Installation Guide
Make sure Node.js 22+ and OpenClaw are installed. Run openclaw --version in your terminal to verify.
Run the install command above in your terminal. ClawHub will automatically download and install Clawd Cursor to the ~/.openclaw/skills/ directory.
Run openclaw skills list to check your installed skills and confirm Clawd Cursor appears in the list.
Follow the configuration instructions in the description below to add skill settings to ~/.config/openclaw/openclaw.json5.
~/.openclaw/skills/ or the skills/ directory in your project root. Make sure the folder contains a SKILL.md file.
Detailed Description
Clawd Cursor is an AI desktop automation agent skill that gives OpenClaw the ability to "see the screen and operate the mouse," autonomously completing various desktop application tasks.
Core Features
- Screen Awareness: Analyzes current screen content via screenshots, understanding UI elements
- Mouse Control: Precisely move the mouse, click buttons, and drag elements
- Keyboard Operations: Simulate keyboard input and shortcut key operations
- Autonomous Tasks: Autonomously plan and execute operation steps after being given a goal
- Multi-Application Support: Can operate any desktop application, not limited to browsers
Configuration
{
skills: {
"clawd-cursor": {
screenshotInterval: 1000, // Screenshot interval (ms)
safeMode: true, // Confirm before execution
allowedApps: [] // Empty = all applications
}
}
}
Use Cases
- Automate repetitive desktop software operations (e.g., data entry, report generation)
- Test desktop application user interfaces
- Operate legacy desktop software without APIs
- Cross-application automation workflows (e.g., copy data from email to Excel)
Notes
This skill requires elevated system permissions. It is recommended to enable safeMode, which presents the plan and waits for confirmation before executing each step.