clipboard

Read from and write to the system clipboard. Use this skill when the user asks to copy text to clipboard, paste clipboard contents, get clipboard contents, read what's on the clipboard, or set the clipboard to a value.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "clipboard" with this command: npx skills add dalehurley/phpbot/dalehurley-phpbot-clipboard

Skill: clipboard

When to Use

Use this skill when the user asks to:

  • Copy text to the clipboard
  • Read/get/paste clipboard contents
  • Set the clipboard to a specific value
  • Check what's currently on the clipboard
  • Transfer text via clipboard

Input Parameters

ParameterRequiredDescriptionExample
actionYesEither read or writeread
textFor writeThe text to copy to clipboardHello World

Procedure

  1. Determine whether the user wants to read or write the clipboard

  2. Run the bundled script:

    # Read clipboard contents
    bash skills/clipboard/scripts/clip.sh read
    
    # Write text to clipboard
    bash skills/clipboard/scripts/clip.sh write "text to copy"
    
  3. Report the result to the user

Bundled Scripts

ScriptTypeDescription
scripts/clip.shSHRead from or write to system clipboard

Script Usage

# Read clipboard
bash scripts/clip.sh read

# Write text to clipboard
bash scripts/clip.sh write "Hello World"

# Pipe content to clipboard
echo "piped content" | bash scripts/clip.sh write

Example

copy "hello world" to the clipboard
what's on my clipboard?
paste the clipboard contents
set clipboard to the current date
read the clipboard

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

qr-code

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

analyze-codebase-for-improvements

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

desktop-control

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

summarize-unread-emails

No summary provided by upstream source.

Repository SourceNeeds Review