📋 Clipboard OpenClaw Plugin & Skill | ClawHub
Looking to integrate Clipboard into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate coding agents & ides tasks instantly, without having to write custom tools from scratch.
What this skill does
Interact with the system clipboard (text only) using `xclip` from any OpenClaw session.
Install
openclaw skills install @xejrax/clipboardnpx clawhub@latest install clipboardFull SKILL.md
Open original| name | description |
|---|---|
| clipboard | Interact with the system clipboard (text only) using `xclip` from any OpenClaw session. |
SKILL.md content below is scrollable.
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