clipboard
Installation
SKILL.md
Clipboard
Copy content to the user's system clipboard.
How to Copy
Use a heredoc to reliably handle multi-line content, quotes, and special characters:
cat << 'EOF' | pbcopy
Your content here.
Can span multiple lines.
Handles "quotes" and 'apostrophes' without escaping.
EOF