skills$openclaw/clipboard
xejrax3.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.

3.0k stars6.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

nameclipboard
descriptionInteract with the system clipboard (text only) using `xclip` from any OpenClaw session. OpenClaw Skills integration.
ownerxejrax
repositoryxejrax/clipboard
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @xejrax/clipboard
last updatedFeb 7, 2026

Maintainer

xejrax

xejrax

Maintains clipboard in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
270 B
CLAUDE.md
303 B
SKILL.md
1001 B
SKILL.md

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
README.md

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.