Openakita desktop-hotkey

Execute keyboard shortcuts. When you need to copy/paste (Ctrl+C/V), save files (Ctrl+S), close windows (Alt+F4), undo/redo (Ctrl+Z/Y), or select all (Ctrl+A).

install
source · Clone the upstream repo
git clone https://github.com/openakita/openakita
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openakita/openakita "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/system/desktop-hotkey" ~/.claude/skills/openakita-openakita-desktop-hotkey && rm -rf "$T"
manifest: skills/system/desktop-hotkey/SKILL.md
source content

Desktop Hotkey

执行键盘快捷键。

Parameters

参数类型必填说明
keysarray按键组合数组,如 ['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

复制选中内容:

{"keys": ["ctrl", "c"]}

保存文件:

{"keys": ["ctrl", "s"]}

Related Skills

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