clipboard

Solid

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 223 stars 39 forks Updated 3 days ago CC0-1.0

Install

View on GitHub

Quality Score: 90/100

Stars 20%
78
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 echo "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 - 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, exclude_styles, lyrics) for Suno auto-fill via Tampermonkey Examples: - `/clipboard lyrics sample-album 03` - `/clipboard style sample-album 05` - `/clipboard streaming-lyrics sample-album 02` - `/clipboard all sample-album 01` If arguments are missing: ``` Usage: /clipboard <content-type> <album-name> <track-number> Content types: lyrics...

Details

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

Similar Skills

Semantically similar based on skill content — not just same category