Clipboard — Copy & Paste
- When the user says "copy this" or "put this in my clipboard", use `pbcopy`
LLM Evaluation
Evaluated by: xiaomi/mimo-v2-flash:free
Last evaluated: March 29, 2026
Prompt Preview
---
name: c-clipboard
description: System clipboard — copy, paste, transform content between clipboard and files.
tags: [clipboard, copy, paste, pbcopy, pbpaste]
---
# Clipboard — Copy & Paste
Read from and write to the system clipboard. Built into macOS, no install needed.
## Commands
```bash
# Read clipboard contents
pbpaste
# Copy text to clipboard
echo "hello world" | pbcopy
# Copy file contents to clipboard
pbcopy < /path/to/file.txt
# Save clipboard to file
pbpaste > /path/to/output...
Full prompt length: 1414 characters