clipboard

仓库创建 2026年1月14日最近提交 13 小时前SkillHot 收录 20 天前
▸ 精选理由

方便将歌词或风格提示快速导出到生成工具

▸ 风险提示

会执行本地剪贴板命令,需授予主机访问权限

这个 Skill 做什么

将曲目内容复制到系统剪贴板以便粘贴到外部工具。

把曲目里的歌词、风格提示或流式歌词一键复制到系统剪贴板,方便粘到 Suno 或其它外部工具里继续制作。适合需要把文本从项目里快速搬到第三方工具或发给同事时用。会自动处理常见平台的剪贴板命令,减少手工复制粘贴的麻烦。

▸ 展开 SKILL.md 英文原文

Copies track content (lyrics, style prompts, streaming lyrics) to the system clipboard. Use when the user needs to paste lyrics or style prompts into Suno or other external tools.

开发编程剪贴板系统集成歌词导出通用
388
Stars
85
Forks
40
仓库内 Skill
+63
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/bitwize-music-studio/claude-ai-music-skills/main/skills/clipboard/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/bitwize-music-studio/claude-ai-music-skills/main/skills/clipboard/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
## Your Task

**Input**: $ARGUMENTS

Copy content from track files to the system clipboard for pasting into Suno or other tools.

---

# Clipboard Skill

Copy specific sections from track files directly to your clipboard.

## Step 1: Detect Platform & Check Clipboard Tool

Run detection:

```bash
if command -v pbcopy >/dev/null 2>&1; then
  echo "macOS"
elif command -v clip.exe >/dev/null 2>&1; then
  # clip.exe is a built-in Windows utility (System32). Reachable both from WSL
  # via interop and from a native-Windows shell such as Git Bash, so this one
  # branch covers both. Verified on a windows-latest runner: Git Bash present,
  # clip.exe resolved at /c/Windows/system32/clip.exe, copy r
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有