From workflow
Copies 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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow:txt-copyThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Copy generated text content to clipboard via a timestamped temp file.
Copy generated text content to clipboard via a timestamped temp file.
Identify the text content to copy (from recent generation or user-specified)
Write to timestamped temp file:
tmpfile="/tmp/claude-txt-copy-$(date +%s).txt"
cat > "$tmpfile" << 'EOF'
<content here>
EOF
if [[ "$OSTYPE" == "darwin"* ]]; then
pbcopy < "$tmpfile"
elif command -v xclip &> /dev/null; then
xclip -selection clipboard < "$tmpfile"
elif command -v xsel &> /dev/null; then
xsel --clipboard --input < "$tmpfile"
else
echo "No clipboard tool found" >&2
fi
rm -f "$tmpfile"
cat with heredoc and single-quoted EOF to preserve exact contentnpx claudepluginhub umputun/cc-thingz --plugin workflowCopies text to the macOS system clipboard with optional rich HTML formatting for pasting into Slack, Word, Google Docs, Notion, etc. Includes plain-text fallback.
Formats session's final answer as clean markdown—no headings, bold titles, proper tables/code—and copies to clipboard via cross-platform Bash. Use for copy requests.