3.0k★by xejrax
clipboard – OpenClaw Skill
clipboard is an OpenClaw Skills integration for writing workflows. Interact with the system clipboard (text only) using `xclip` from any OpenClaw session.
Skill Snapshot
| name | clipboard |
| description | Interact with the system clipboard (text only) using `xclip` from any OpenClaw session. OpenClaw Skills integration. |
| owner | xejrax |
| repository | xejrax/clipboard |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @xejrax/clipboard |
| last updated | Feb 7, 2026 |
Maintainer

name: clipboard
description: "Interact with the system clipboard (text only) using xclip from any OpenClaw session."
metadata:
{
"openclaw":
{
"emoji": "📋",
"requires": { "bins": ["xclip"] },
"install":
[
{
"id": "dnf",
"kind": "dnf",
"package": "xclip",
"bins": ["xclip"],
"label": "Install xclip (dnf)",
},
],
},
}
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
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install clipboard?
Run openclaw add @xejrax/clipboard in your terminal. This installs clipboard into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/xejrax/clipboard. Review commits and README documentation before installing.
