clipboard

Featured

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.

AI & Automation 388 stars 86 forks Updated today CC0-1.0

Install

View on GitHub

Quality Score: 93/100

Stars 20%
86
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

## 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 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" fi ``` **If NONE:** ``` Error: No clipboard utility found. Install instructions: - macOS: pbcopy (built-in) - Linux: sudo apt install xclip - Windows (native) and WSL: clip.exe (built-in) ``` ## Step 2: Parse Arguments Expected format: `<content-type> <album-name> <track-number>` **Content types:** - `lyrics` - Suno Lyrics Box - `style` - Suno Style Box (auto-appends Exclude Styles if present) - `exclude` - Exclude Styles only (negative prompts) - `streaming-lyrics` - Streaming Lyrics (for distributors) - `all` - All Suno inputs (Style + Exclude + Lyrics combined) - `suno` - JSON object (title, style, exc...

Details

Author
bitwize-music-studio
Repository
bitwize-music-studio/claude-ai-music-skills
Created
6 months ago
Last Updated
today
Language
Python
License
CC0-1.0

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category