بنقرة واحدة
c-clipboard
System clipboard — copy, paste, transform content between clipboard and files.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
System clipboard — copy, paste, transform content between clipboard and files.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Lock In Mode — orchestrate distraction blocking, environment setup, and session tracking.
OpenPaw coordinator — routes requests to skills, manages memory, knows what's installed. Use /c for any task.
macOS Contacts — search, list, and look up contact details via AppleScript.
Timers, alarms, and pomodoro — set countdowns with native notifications.
Weather forecasts and conditions — current, hourly, multi-day. No API key needed.
Persistent memory across Claude Code sessions — remember facts, preferences, and context
| name | c-clipboard |
| description | System clipboard — copy, paste, transform content between clipboard and files. |
| tags | ["clipboard","copy","paste","pbcopy","pbpaste"] |
Read from and write to the system clipboard. Built into macOS, no install needed.
# Read clipboard contents
pbpaste
# Copy text to clipboard
echo "hello world" | pbcopy
# Copy file contents to clipboard
pbcopy < /path/to/file.txt
# Save clipboard to file
pbpaste > /path/to/output.txt
# Copy command output to clipboard
ls -la | pbcopy
date | pbcopy
# Transform clipboard content
pbpaste | tr '[:lower:]' '[:upper:]' | pbcopy # uppercase
pbpaste | sort | pbcopy # sort lines
pbpaste | wc -w # word count
# Copy with no trailing newline
printf "%s" "exact text" | pbcopy
# If on Linux, use xclip or xsel
xclip -selection clipboard # copy (pipe into)
xclip -selection clipboard -o # paste
pbcopypbpastepbpaste through the transform and back to pbcopy