一键导入
tidal-playlist
Manage Tidal playlists — list, create, rename, delete, add or remove albums and tracks. Use when the user wants to work with playlists.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage Tidal playlists — list, create, rename, delete, add or remove albums and tracks. Use when the user wants to work with playlists.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | tidal-playlist |
| description | Manage Tidal playlists — list, create, rename, delete, add or remove albums and tracks. Use when the user wants to work with playlists. |
| allowed-tools | Bash, Read, Grep |
| argument-hint | <list|create|rename|delete|add-album|add-track|remove-track> [options] |
Manage Tidal playlists: list, create, rename, delete, and add or remove content.
tidal-cli --json playlist list[{id, name, num_tracks}]tidal-cli --json playlist create --name "<name>" [--desc "<description>"]--name (required), --desc (optional){id, name, description}tidal-cli --json playlist rename --playlist-id <id> --name "<new_name>"--playlist-id (required), --name (required){status, id, old_name, new_name}tidal-cli --json playlist delete --playlist-id <id>--playlist-id (required){status, id, name}tidal-cli --json playlist add-album --playlist-id <id> --album-id <id>--playlist-id (required), --album-id (required){status, tracks_added, album, playlist}tidal-cli --json playlist add-track --playlist-id <id> --track-id <id>--playlist-id (required), --track-id (required){status, track, playlist}tidal-cli --json playlist remove-track --playlist-id <id> --track-id <id>--playlist-id (required), --track-id (required){status, track, playlist}Parse $ARGUMENTS to determine the operation (first word) and its parameters:
list — no additional arguments neededcreate — extract --name and optionally --desc from argumentsrename — extract --playlist-id and --namedelete — extract --playlist-idadd-album — extract --playlist-id and --album-idadd-track — extract --playlist-id and --track-idremove-track — extract --playlist-id and --track-id/tidal-playlist <list|create|rename|delete|add-album|add-track|remove-track> [options]Run the appropriate command and parse JSON output:
ID, Name, Tracks<id>)"<id>) deleted."If required arguments are missing for an operation, show a usage hint specific to that operation.
"Error: Not authenticated" → "You need to authenticate first. Run /tidal-auth to log in.""Error: Playlist not found" → "Playlist not found (ID: <id>). Use /tidal-playlist list to see your playlists.""Error: Track not found in playlist" → "Track (ID: <id>) is not in this playlist.""Error: Playlist name cannot be empty" → "Please provide a non-empty playlist name.""Error: Unable to connect to Tidal" → "Network error: unable to reach Tidal. Check your internet connection."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.
Authenticate with Tidal via OAuth. Use when the user wants to log in to Tidal, start authentication, or when a command fails with an authentication error.
Add or remove artists, albums, or tracks from your Tidal favorites library. Use when the user wants to save music, like a song, follow an artist, or remove items from their library.