在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
c-clipboard
// System clipboard — copy, paste, transform content between clipboard and files.
$ git log --oneline --stat
stars:145
forks:6
updated:2026年3月1日 00:39
SKILL.md
// System clipboard — copy, paste, transform content between clipboard and files.
| 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 pbcopyLock 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