---
name: openakita/desktop-hotkey
source: https://app.decimal.ai/s/openakita-desktop-hotkey@1/SKILL.md
source_sha256: f39b16d63e3d
---

# Desktop Hotkey

执行键盘快捷键。

## Parameters

| 参数 | 类型 | 必填 | 说明 |
|------|------|------|------|
| keys | array | 是 | 按键组合数组，如 ['ctrl', 'c'] |

## Common Shortcuts

| 快捷键 | 功能 |
|--------|------|
| ['ctrl', 'c'] | 复制 |
| ['ctrl', 'v'] | 粘贴 |
| ['ctrl', 'x'] | 剪切 |
| ['ctrl', 's'] | 保存 |
| ['ctrl', 'z'] | 撤销 |
| ['ctrl', 'y'] | 重做 |
| ['ctrl', 'a'] | 全选 |
| ['alt', 'f4'] | 关闭窗口 |
| ['alt', 'tab'] | 切换窗口 |
| ['win', 'd'] | 显示桌面 |

## Examples

**复制选中内容**:
```json
{"keys": ["ctrl", "c"]}
```

**保存文件**:
```json
{"keys": ["ctrl", "s"]}
```

## Related Skills

- `desktop-type`: 输入文本
- `desktop-click`: 点击元素