返回 Skill 列表
extension
分类: 开发与工程无需 API Key

Clipboard

在任意 OpenClaw 会话中使用 `xclip` 与系统剪贴板交互(仅限文本)。

person作者: xejraxhubclawhub

Clipboard Skill

Interact with the system clipboard (text only) from any OpenClaw session. Uses xclip on Linux.

Copy to Clipboard

Copy text to the clipboard:

echo "Hello, world!" | xclip -selection clipboard

Paste from Clipboard

Output current clipboard contents:

xclip -selection clipboard -o

Copy File Contents

Copy the contents of a file to the clipboard:

xclip -selection clipboard < /path/to/file.txt

Install

sudo dnf install xclip