Skip to content
Development
Skill

/txt-copy

Copy generated text content to clipboard. Use when user asks to "copy this", "copy to clipboard", "save to clipboard", or after creating emails, messages, letters, or other text content that needs to be shared.

From plugin
umputun-cc-thingz
47216 skills1 agent1 command
Install
$ npx -y skills add umputun/cc-thingz --skill txt-copy --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/txt-copy

Context preview

The summary Claude sees to decide when to auto-load this skill.

Copy generated text content to clipboard. Use when user asks to "copy this", "copy to clipboard", "save to clipboard", or after creating emails, messages, letters, or other text content that needs to be shared.

SKILL.md

txt-copy.SKILL.md
name: txt-copy
description: Copy generated text content to clipboard. Use when user asks to "copy this", "copy to clipboard", "save to clipboard", or after creating emails, messages, letters, or other text content that needs to be shared.
allowed-tools: Bash

Copy Text to Clipboard

Copy generated text content to clipboard via a timestamped temp file.

Activation Triggers

  • "copy this", "copy to clipboard", "save to clipboard"
  • "copy the email", "copy the message", "copy the letter"
  • After generating text content when user indicates they want to use it
  • "I need to paste this", "put it in clipboard"

Workflow

1. Identify the text content to copy (from recent generation or user-specified)

2. Write to timestamped temp file:

tmpfile="/tmp/claude-txt-copy-$(date +%s).txt"
cat > "$tmpfile" << 'EOF'
<content here>
EOF

3. Copy to clipboard and remove temp file:

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"

4. Confirm to user: "Copied to clipboard (N characters)"

Notes

  • Use `cat` with heredoc and single-quoted EOF to preserve exact content
  • Temp file uses timestamp to avoid collisions across invocations
  • Temp file is removed after clipboard copy
Read more
Ships withumputun-cc-thingz

Things to make Claude Code even better — hooks, skills, and commands, organized as a marketplace of independent plugins. This is an unapologetically opinionated set.

Get the whole plugin
Stats
472
Stars
52
Forks
Active
Maintenance
Shell
Language
MIT
License
8d ago
Last commit
7mo ago
Created

Repo: umputun/cc-thingz

Other skills on umputun-cc-thingz.