🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

clipboard-manager-tool

by @yushimohuang

Clipboard history management. Use when user says "copy to clipboard", "paste from clipboard", "clipboard history", or wants to manage copied items.

Versionv1.0.0
Downloads661
Installs1
TERMINAL
clawhub install clipboard-manager-tool

πŸ“– About This Skill


name: clipboard-manager description: Clipboard history management. Use when user says "copy to clipboard", "paste from clipboard", "clipboard history", or wants to manage copied items.

Clipboard Manager

Manage clipboard history with save, search, and recall capabilities.

File Location

clipboard-history.md in workspace root

Commands

Save Current Clipboard

When user says: "save clipboard", "copy this to history"
bash skills/clipboard-manager-1.0.0/scripts/clipboard.sh save

Get Current Clipboard

When user says: "what's in clipboard", "show clipboard"
bash skills/clipboard-manager-1.0.0/scripts/clipboard.sh get

Set Clipboard

When user says: "copy this to clipboard: X"
bash skills/clipboard-manager-1.0.0/scripts/clipboard.sh set ""

Show History

When user says: "clipboard history", "show copied items"
bash skills/clipboard-manager-1.0.0/scripts/clipboard.sh history [--limit 10]

Search History

When user says: "find in clipboard history: X"
bash skills/clipboard-manager-1.0.0/scripts/clipboard.sh search ""

Restore from History

When user says: "restore clipboard item X"
bash skills/clipboard-manager-1.0.0/scripts/clipboard.sh restore 

Clear History

When user says: "clear clipboard history"
bash skills/clipboard-manager-1.0.0/scripts/clipboard.sh clear

History Format

# Clipboard History

[1] 2026-03-10 10:30:45

Pasted content here

[2] 2026-03-10 10:25:12

Another copied item

Platform Support

| OS | Support | |----|---------| | Windows | βœ… (powershell/clip) | | macOS | βœ… (pbcopy/pbpaste) | | Linux | βœ… (xclip/xsel) |

Response Format

When showing clipboard:

πŸ“‹ Current Clipboard:
Content here...

When showing history:

πŸ“‹ Clipboard History (last 5)

[1] 2026-03-10 10:30 - "Meeting notes..." [2] 2026-03-10 10:25 - "API endpoint: https://..." [3] 2026-03-10 10:20 - "console.log('test')"