Loading...
Loading...
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.
npx skill4agent add bitwize-music-studio/claude-ai-music-skills clipboardif 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 round-tripped.
echo "Windows/WSL"
elif command -v xclip >/dev/null 2>&1; then
echo "Linux-xclip"
elif command -v xsel >/dev/null 2>&1; then
echo "Linux-xsel"
else
echo "NONE"
fiError: No clipboard utility found.
Install instructions:
- macOS: pbcopy (built-in)
- Linux: sudo apt install xclip
- Windows (native) and WSL: clip.exe (built-in)<content-type> <album-name> <track-number>lyricsstyleexcludestreaming-lyricsallsuno/clipboard lyrics sample-album 03/clipboard style sample-album 05/clipboard streaming-lyrics sample-album 02/clipboard all sample-album 01Usage: /clipboard <content-type> <album-name> <track-number>
Content types: lyrics, style, exclude, streaming-lyrics, all, suno
Example: /clipboard lyrics sample-album 03format_for_clipboard(album_slug, track_slug, content_type)content_type"lyrics""style""exclude""streaming""all""suno"| Platform | Command |
|---|---|
| macOS | |
| Windows (native) / WSL | |
| Linux (xclip) | |
| Linux (xsel) | |
printf '%s'printf '%s' "$content" | pbcopy # macOS
printf '%s' "$content" | xclip -selection clipboard # Linux✓ Copied to clipboard: {content-type} from track {track-number}
Album: {album}
Track: {track-filename}Error: Track {track-number} not found in album {album}
Available tracks:
- 01-track-name.md
- 02-track-name.mdError: {content-type} section not found in track {track-number}
The track file may not have this section yet.Error: Config not found at ~/.bitwize-music/config.yaml
Run /configure to set up./clipboard lyrics sample-album 03✓ Copied to clipboard: lyrics from track 03
Album: sample-album
Track: 03-t-day-beach.md/clipboard style sample-album 05/clipboard streaming-lyrics sample-album 02/clipboard all sample-album 01✓ Copied to clipboard: all suno inputs from track 01
Album: sample-album
Track: 01-intro.md
Contents:
- Style Box (with Exclude Styles if present)
- Lyrics Box/clipboard suno sample-album 01✓ Copied to clipboard: suno auto-fill JSON from track 01
Album: sample-album
Track: 01-intro.md
Clipboard contains JSON with: title, style, exclude_styles, lyrics
Paste into Suno with the Tampermonkey auto-fill script (Ctrl+Shift+V).
See tools/userscripts/README.md for setup.clip.exeSet-Clipboardxclipxselformat_for_clipboard