openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > mouse-keyboard

Control mouse and keyboard on Mac using cliclick. Use when you need to automate clicking, typing, or controlling the mouse cursor.

综合技能

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 65 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:calvin-dean/mouse-keyboard

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is an instruction-only helper for using the macOS cliclick tool to automate mouse/keyboard actions; its requirements and instructions are consistent with that purpose and it does not request extra credentials or install code.

目的

Name and description match the SKILL.md: it documents how to run cliclick commands to control mouse and keyboard on macOS. No unrelated env vars, binaries, or config paths are requested.

说明范围

Instructions are limited to running cliclick (and optionally osascript/sleep) via exec; they do not instruct reading files, exfiltrating data, or accessing unrelated system paths. Note: the skill tells the agent to execute system commands (exec), which is expected for this purpose but inherently powerful because it enables UI control.

安装机制

No install spec or code is provided (instruction-only). That reduces disk-write risk. The skill assumes cliclick is available but does not attempt to download or install it.

证书

No environment variables, credentials, or config paths are requested — proportionate to the described single-purpose automation task.

持久

always is false and the skill is user-invocable. However, the platform allows autonomous model invocation by default; since this skill performs UI control, allowing it to run autonomously increases potential for unwanted actions. The skill itself does not request persistent privileges or modify other skills.

综合结论

This skill is coherent and does what it says: it documents how to run cliclick to control the mouse and keyboard. Before installing, ensure you understand these points: (1) macOS requires granting Accessibility permissions to tools that control input — only grant those to trusted binaries and verify cliclick's origin. (2) The agent will use exec to run commands; avoid allowing autonomous invocation unless you trust the agent and the environmen…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「mouse-keyboard」。简介:Control mouse and keyboard on Mac using cliclick. Use when you need to automate…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/calvin-dean/mouse-keyboard/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: mouse-keyboard
description: Control mouse and keyboard on Mac using cliclick. Use when you need to automate clicking, typing, or controlling the mouse cursor.
---

# Mouse & Keyboard Control

Use `cliclick` tool for mouse/keyboard automation on Mac.

## Tools

### exec

Use `exec` to run cliclick commands.

## Available Commands

- `c:X,Y` - Click at coordinates X,Y
- `c:~100,~200` - Click at relative position
- `w:500` - Wait 500ms
- `t:hello` - Type "hello"
- `kd:cmd` - Key down command
- `ku:cmd` - Key up command
- `p:return` - Press return/enter
- `p:space` - Press space
- `p:tab` - Press tab
- `m:X,Y` - Move mouse to X,Y
- `dp` - Double click
- `rc:X,Y` - Right click at X,Y

## Common Workflows

### Click at position
```bash
cliclick c:500,300
```

### Type text
```bash
cliclick t:Hello World
```

### Click and type
```bash
cliclick c:500,300 && cliclick t:username
```

### Keyboard shortcut
```bash
cliclick kd:cmd ku:cmd  # Press cmd
```

### Move and click
```bash
cliclick m:100,100 && cliclick c:100,100
```

## Getting Coordinates

Use `cliclick p` to print current mouse position, or use macOS screenshot tool (Shift+Cmd+4) to get coordinates.

## Notes

- Coordinates are screen-based (0,0 is top-left)
- Use `osascript` for more complex keyboard operations
- Combine with `sleep` for timing