Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

denon-avr-control天龙 AVR 控制

Agent Skill

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

总安装

6,952

周安装

284

GitHub Stars

公开资料未说明

下载量

2,227
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install denon-avr-control

简介

denon-avr-control 通过网络接口控制 Denon AVR/AVC 接收器,支持 TCP 和 HTTP 命令。

  • 适用于家庭影院系统中音频设备集中管理和自动化控制。
  • 通过 clawhub 安装并使用 openclaw skills install denon-avr-control 命令部署。
  • 需确认设备 IP 地址和控制端口是否开放,避免网络冲突。
  • 建议限制命令频率,防止设备响应超时或状态异常。

SKILL.md

name
denon-avr-control
description
Control a network-connected Denon AVR/AVC receiver over its classic IP control interface (TCP telnet-style commands or the goform HTTP endpoint), and expose local audio libraries through DLNA/UPnP for receiver playback. Use when asked to power the receiver on/off, change volume, mute, switch inputs, query status, send raw Denon commands, or serve user-chosen music directories to a compatible Denon/HEOS receiver.

Denon AVR Control

Use this skill to control a Denon receiver on the local network.

Quick start

  1. Identify the receiver host or IP address.
  2. Start with a read/query action before making changes.
  3. Use scripts/denon_avr.py for normal operations.
  4. If a model-specific command is missing, read references/commands.md and use --raw.

Default workflow

Query status

Run:

python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --status

Power

python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --power on
python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --power off

Volume

python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --volume 35.5
python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --volume-up 3
python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --volume-down 2

Inputs

python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --input tv
python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --input game
python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --input heos

Mute

python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --mute on
python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --mute off

Transport choice

Prefer the default TCP transport first:

python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --status

If the receiver only responds on the HTTP control endpoint:

python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --transport http --status

Raw commands

Use raw mode for model-specific features or when the canned arguments are not enough:

python3 skills/denon-avr-control/scripts/denon_avr.py --host <ip-or-hostname> --raw PW? --raw MV? --raw SI?

Read references/commands.md for the common command families.

Local computer playback

If the user wants to play local audio files on the computer itself, use scripts/local_audio_jukebox.py together with this receiver-control skill.

Read references/local-playback.md when the task is to:

  • scan a local directory for songs
  • play a random song or a short random queue
  • play tracks that match a user query
  • build a simple playlist from user-provided terms
  • stop or inspect the local player state

This workflow plays audio on the local computer, so that machine's system output must already be routed to the receiver if sound should come out of the receiver.

Experimental DLNA push mode

If the user wants the Denon itself to fetch and play a local file over the LAN, use scripts/dlna_push.py.

Read references/dlna-push.md when the task is to:

  • scan a folder for audio files before choosing one
  • push a random local track directly to the Denon renderer
  • push a track chosen by user query
  • push a specific file path to the Denon
  • stop the remote playback and shut down the temporary HTTP server
  • support the same approach on Windows and macOS

This mode is more cross-platform than local-output playback because it uses Python + HTTP + UPnP/DLNA. It is still experimental and currently strongest for single-track push.

Real DLNA media server mode

If ad-hoc URL push is unreliable on a receiver, use scripts/simple_dlna_server.py instead.

Read references/dlna-server.md when the task is to:

  • expose one or more user-chosen music directories as a real discoverable DLNA MediaServer
  • let the user decide the music path(s) instead of assuming a fixed folder
  • let the Denon browse the library through its Local Music / HEOS path
  • support a more Windows-friendly and standards-based setup
  • avoid raw one-off URL playback hacks

This mode provides SSDP discovery, a device description, a ContentDirectory service, a ConnectionManager service, and direct HTTP media serving.

Prefer this mode for cross-platform local-library playback.

Guardrails

  • Query first when you do not know current state.
  • Send one mutating action at a time unless the user explicitly wants a batch.
  • Treat input names and sound modes as model-dependent; if a friendly alias fails, switch to --raw.
  • If the user did not provide the receiver address, ask for the IP/hostname or discover it only if they explicitly want network scanning.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.24%
按下载量换算1,809

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills