원클릭으로
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"