clipboard

ClawSkills 作者 clawskills

Interact with the system clipboard (text only) using `xclip` from any OpenClaw session.

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install clawskills:clawskills~xejrax-clipboard
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/clawskills%3Aclawskills~xejrax-clipboard/file -o xejrax-clipboard.md
# 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:

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

## Paste from Clipboard

Output current clipboard contents:

```bash
xclip -selection clipboard -o
```

## Copy File Contents

Copy the contents of a file to the clipboard:

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

## Install

```bash
sudo dnf install xclip
```