一键导入
music-dwn
Search and download music from JioSaavn. Use when the user wants to find, download, or share a full song.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search and download music from JioSaavn. Use when the user wants to find, download, or share a full song.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
AI interaction with over 90 providers (OpenAI, Gemini, Groq, Meta).
Developer tools including GitAPI, web crawling (Scout), and model conversion.
Media and content tools including YouTube toolkit, TTS, and TTI.
Privacy utilities including temporary email and phone numbers.
Comprehensive web search using multiple engines (DuckDuckGo, Yahoo, Bing, Yep).
Generate high-quality images using the Infip API. Use when the user requests image generation.
| name | music-dwn |
| description | Search and download music from JioSaavn. Use when the user wants to find, download, or share a full song. |
This skill allows you to search for songs and retrieve high-quality download links.
Search for a song: Use the search_music.py script to find songs.
python3 skills/music-dwn/scripts/search_music.py "Song Name"
Download and Send: After getting the download_url, use curl to download the file and the message tool to send it to the chat.
python3 skills/music-dwn/scripts/search_music.py "Shape of You"curl -L "<download_url>" -o "Shape of You.m4a"message(action="send", filePath="Shape of You.m4a", message="Here is 'Shape of You'!")rm "Shape of You.m4a"