Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

mopidymopidy 搜索

Agent Skill

mopidy 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,136

周安装

132

GitHub Stars

1

下载量

1,098
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mopidy(mopidy 搜索)
来源仓库:https://github.com/grantmacnamara/mopidy
安装命令:
openclaw skills install mopidy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install mopidy

简介

用于通过 Mopidy JSON-RPC 控制音乐播放系统。

  • 适合日常聆听、队列管理和播放控制操作。mopidy 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装,需结合原始 README 核验连接方式。
  • 涉及本地服务时应确认端口和网络可达性。
  • 建议在使用前评估是否支持多用户同时访问。

SKILL.md

name
mopidy
description
Control a Mopidy music system via Mopidy JSON-RPC for everyday listening, queue management, and playback control. Use when the user wants to search for music, see what is playing, inspect the queue, add tracks, albums, or playlists, or control playback with actions like play, pause, next, previous, clear queue, or play-now behavior. Also use for requests like "top songs by" or "best tracks from" where external ranking knowledge should be matched against the local Mopidy library before queueing the best local matches.
metadata
{"clawdbot":{"requires":{"bins":["curl","jq","python3"],"env":["MOPIDY_URL"]}}}

Mopidy

Use this skill to control a Mopidy music system through Mopidy's JSON-RPC API in a predictable, scriptable way.

Setup

Configure the Mopidy JSON-RPC endpoint before use.

Recommended environment variable:

export MOPIDY_URL="https://your-mopidy-host.example.com/mopidy/rpc"

Typical endpoint shape:

  • https://your-host.example.com/mopidy/rpc

Some installations serve Iris under /iris/, but this skill should control Mopidy through /mopidy/rpc.

Helper scripts:

  • scripts/mopidy.sh
  • scripts/match_top_tracks.py

Core Tasks

See what is playing

scripts/mopidy.sh current
scripts/mopidy.sh state

See the queue

scripts/mopidy.sh queue

Search for music

scripts/mopidy.sh search "The Beths"
scripts/mopidy.sh search "David Bowie Blackstar"

Use search results to identify the correct URI before adding something.

Add a track or album to the queue

scripts/mopidy.sh add-track backend:song:example
scripts/mopidy.sh add-album backend:album:example

For natural requests like “queue some Beths”, search first, then choose the best matching track or album URI.

List playlists

scripts/mopidy.sh playlists

Add playlist contents to the queue

scripts/mopidy.sh add-playlist-to-queue backend:playlist:example

Playback controls

scripts/mopidy.sh play
scripts/mopidy.sh play-track backend:song:example
scripts/mopidy.sh pause
scripts/mopidy.sh next
scripts/mopidy.sh previous
scripts/mopidy.sh clear

Working Style

  • Prefer Mopidy JSON-RPC over UI/browser automation.
  • Search first when the request is ambiguous.
  • Confirm the selected item if multiple similarly named results exist.
  • For queueing requests, default to adding to the queue rather than replacing playback unless the user explicitly asks to play immediately.
  • Be careful with destructive queue actions; do not clear or replace the queue unless asked.
  • For requests like top, best, essential, greatest, genre-based prompts, or other fuzzy ranking language, do not rely on raw library order alone. First use web search to identify likely canonical songs/albums, then match those items against the local Mopidy library before adding them.
  • When using external rankings, report any items that could not be matched locally instead of silently substituting random search results.
  • If requested music is not in the library, say so plainly and ask the user rather than substituting random results.

Ranked / Canonical Requests

For prompts like:

  • "add the top five The Fall songs"
  • "queue the best Bowie tracks"
  • "play the essential Brian Eno albums"
  • "add 5 of the top indie rock tracks to the queue"

Use this workflow:

  1. search the web for a credible ranked, canonical, or genre-representative list
  2. extract the song or album names
  3. match them against the local Mopidy library
  4. add only the confirmed matches to the queue
  5. tell the user what was added and what was not found

Use scripts/match_top_tracks.py to help match externally sourced song names against the library.

Playlist Handling

Mopidy playlist APIs and backends can differ.

Safe approach:

  1. list playlists
  2. identify the target playlist URI
  3. look up playlist contents
  4. add those track URIs to the queue

Do not assume backend-specific shortcut behavior unless it has been tested on the target Mopidy server.

References

Read references/api-notes.md if you need endpoint details, common Mopidy methods, or URI guidance.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.97%
按下载量换算933

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills