| name | copy |
| description | Copy text to macOS clipboard using pbcopy |
| user_invocable | true |
Copy to Clipboard
Copy the most recent relevant text from the conversation to the macOS clipboard.
Behavior
- Look at the conversation context to identify the text the user wants copied
- Common cases:
- User just asked to draft a message - copy the drafted message
- User says "copy" / "clipboard" after a response - copy the key output
- User specifies what to copy - copy exactly that
- Use
pbcopy to place the text in clipboard:
printf '%s' "TEXT_HERE" | pbcopy
- Confirm briefly: "Copied to clipboard"
Rules