AgentSkillsCN

clipboard

跨平台剪贴板操作。在通过 Bash 将文本复制到系统剪贴板时使用。

SKILL.md
--- frontmatter
name: clipboard
description: >-
  Cross-platform clipboard operations. Use when copying text to the system
  clipboard via Bash.

Clipboard

Platform Detection

Detect the platform and use the correct clipboard command:

PlatformCommand
macOSpbcopy
Linux (X11)xclip -selection clipboard
Linux (Wayland)wl-copy
WSL / Windowsclip.exe

Rules

  • Use echo -n (not printf) when piping to the clipboard command — printf fails in sandboxed environments
  • Always confirm to the user that the text was copied