Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Rotoslider/Choom --skill music-assistant명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Delegate tasks to other Chooms and collect their responses. Use when orchestrating multi-agent collaboration — assigning research, coding, analysis, or other work to specialist Chooms.
Executes Python and Node.js code in sandboxed project workspaces, plus permission-gated remote SSH commands.
Generates images using Stable Diffusion with checkpoint switching, LoRA support, and self-portrait mode. Use when the user requests pictures, artwork, selfies, or portraits.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | music-assistant |
| description | Play and control music on speakers via Music Assistant |
| version | 1.0.0 |
| author | system |
| tools | ["music_search","music_play","music_control","music_now_playing","music_players"] |
| dependencies | [] |
Use these tools when the user wants to play music, control playback, or check what's playing.
music_play — Play music by name or URI on a speakermusic_control — Pause, resume, skip, volume, shuffle, repeatmusic_search — Find artists, albums, tracks, playlists, radio stationsmusic_now_playing — What's currently playingmusic_players — List available speakersNever invent a speaker name. Omit player to use the default; call music_players first if the user named a specific one.
Play music by name (auto-search):
music_play(media="Tarja Turunen")
music_play(media="chill jazz") # omit player — the default speaker is used
Play specific URI from search results:
results = music_search(query="Ave Maria")
music_play(media="library://track/19899")
Control playback:
music_control(action="pause")
music_control(action="volume_set", value=30)
music_control(action="next")
music_control(action="shuffle")
Enqueue options:
play — Replace queue and start playing (default)next — Insert after current trackadd — Append to end of queuereplace — Replace queue but don't startreplace_next — Replace upcoming tracks, keep current