with one click
music-dwn
Search and download music from JioSaavn. Use when the user wants to find, download, or share a full song.
Menu
Search and download music from JioSaavn. Use when the user wants to find, download, or share a full song.
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"