clipboard

Verified·Scanned 2/19/2026

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

from clawhub.ai·veae3a7e·1.3 KB·0 installs
Scanned from 1.0.0 at eae3a7e · Transparency log ↗
$ vett add clawhub.ai/xejrax/clipboard

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