ソース情報
- リポジトリ
- Rotoslider/Choom
- ソースの最終更新活動
- 2026年7月28日 02:58
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 3
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Rotoslider/Choom --skill music-assistantコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
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.
| 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