From m
Cross-platform clipboard operations. Use when copying text to the system clipboard via Bash.
How this skill is triggered — by the user, by Claude, or both
Slash command
/m:clipboardThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Detect the platform and use the correct clipboard command:
Detect the platform and use the correct clipboard command:
| Platform | Command |
|---|---|
| macOS | pbcopy |
| Linux (X11) | xclip -selection clipboard |
| Linux (Wayland) | wl-copy |
| WSL / Windows | clip.exe |
echo -n (not printf) when piping to the clipboard command — printf fails in sandboxed environmentsnpx claudepluginhub molcajeteai/plugin --plugin mCopies generated text to system clipboard via Bash temp file using pbcopy (macOS), xclip, or xsel (Linux). Auto-activates on 'copy this' or manual /txt-copy invocation.
Copies text to the macOS system clipboard with optional rich HTML formatting for pasting into Slack, Word, Google Docs, Notion, etc. Includes plain-text fallback.