Tidal search
Search for artists, albums, or tracks on Tidal. Use when the user wants to find music, look up an artist, search for a song or album.From its SKILL.md
npx -y skills add SteveGrosbois/tidal-cli --skill tidal-searchAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.0 KB, 467 tokens by cl100k_base, as published. Nobody here has run it
Tidal Search
Search for artists, albums, or tracks on Tidal and display results as a formatted table.
Commands
search artist
- Usage:
tidal-cli --json search --type artist --query "<query>" - Output:
[{id, name}]
search album
- Usage:
tidal-cli --json search --type album --query "<query>" - Output:
[{id, name, artist, year}]
search track
- Usage:
tidal-cli --json search --type track --query "<query>" - Output:
[{id, name, artist}]
Instructions
-
Parse
$ARGUMENTS:- First word: search type (
artist,album, ortrack) - Remaining words: the search query
- If no arguments or missing search type, show usage:
/tidal-search <artist|album|track> <query> - If no query provided after the type, ask the user to provide a search term
- First word: search type (
-
Run the appropriate command based on search type:
- artist:
tidal-cli --json search --type artist --query "<query>" - album:
tidal-cli --json search --type album --query "<query>" - track:
tidal-cli --json search --type track --query "<query>"
- artist:
-
Parse the JSON array output and format as a markdown table:
- artist: columns
IDandName - album: columns
ID,Name,Artist, andYear - track: columns
ID,Name, andArtist
- artist: columns
-
If the result array is empty, display: "No results found for
<type>: <query>."
Error Handling
- If exit code is non-zero, read stderr:
"Error: Not authenticated"→ "You need to authenticate first. Run/tidal-authto log in.""Error: Unable to connect to Tidal"→ "Network error: unable to reach Tidal. Check your internet connection."- Any other error → display the raw error message with label "Error:"
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.