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

ratgdo32-discoRatgdo32 迪斯科

Agent Skill

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

总安装

7,538

周安装

302

GitHub Stars

公开资料未说明

下载量

2,440
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ratgdo32-disco

简介

通过本地 Web API 控制迪斯科车库门开启器。

  • 支持开关车库门、查询状态和控制灯光。
  • 适用于智能家居自动化场景。ratgdo32-disco 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装通过 clawhub,需配置本地网络访问权限。
  • 操作前请确认设备物理连接正常。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
ratgdo32-disco
description
Control a ratgdo32 disco garage door opener via its local web API. Use when the user asks to open/close the garage, check garage status, toggle the garage light, check if a car is parked, enable/disable remotes, or anything involving the garage door. Supports door control, light, obstruction detection, vehicle presence (laser sensor), parking assist, motion, and remote lockout. Uses local network trust model (LAN-only, no internet exposure).

ratgdo32 disco — Garage Door Controller

Control a ratgdo32 disco (HomeKit firmware) garage door opener via its local REST API.

Security Model

The ratgdo32 disco uses a local network trust model. The device's web API is only accessible from your LAN — it does not expose any ports to the internet and has no cloud dependency.

Your responsibilities:

  • Keep the device on a trusted, password-protected network (WPA2/WPA3)
  • Do not port-forward the device's HTTP port to the internet
  • Use your router's client isolation or VLAN features if you want extra segmentation
  • The agent should always confirm door state before acting (built into the helper script)

This is the same trust model used by most local smart home devices (Hue bridges, Shelly relays, ESPHome, etc.).

Setup

Set the RATGDO_HOST environment variable to your device's IP or mDNS hostname:

export RATGDO_HOST="192.168.1.XXX"  # or your-device.local

If unset, the helper script defaults to 192.168.1.XXX — you must update it.

Find your device IP via your router's DHCP table, or use mDNS:

dns-sd -B _hap._tcp  # Browse HomeKit devices

Device Info

Configure these for your setup:

FieldHow to Find
IPRouter DHCP table or mDNS browse
mDNSUsually Garage-Door-XXXXXX.local (based on MAC)
MACPrinted on the ratgdo32 board or in your router's client list
ProtocolCheck your garage opener's learn button color (yellow = Security+ 2.0, purple = Security+ 1.0)
Web UIhttp://<your-ip>/

Quick Reference

ActionCommand
Get full statuscurl -s http://$RATGDO_HOST/status.json
Open doorcurl -s -X POST -F "garageDoorState=1" http://$RATGDO_HOST/setgdo
Close doorcurl -s -X POST -F "garageDoorState=0" http://$RATGDO_HOST/setgdo
Light oncurl -s -X POST -F "garageLightOn=1" http://$RATGDO_HOST/setgdo
Light offcurl -s -X POST -F "garageLightOn=0" http://$RATGDO_HOST/setgdo
Disable remotescurl -s -X POST -F "garageLockState=1" http://$RATGDO_HOST/setgdo
Enable remotescurl -s -X POST -F "garageLockState=0" http://$RATGDO_HOST/setgdo

Status API

GET http://<host>/status.json returns JSON:

{
  "garageDoorState": "open|closed|opening|closing|stopped",
  "garageLightOn": true|false,
  "garageObstructed": true|false,
  "garageLockState": "locked|unlocked",
  "vehicleState": "present|absent|arriving|departing",
  "vehicleDistance": 42,
  "motionDetected": true|false
}

Key fields

  • garageDoorState — current door position
  • garageLightOn — ceiling light status
  • garageObstructed — safety sensor triggered (do NOT close if true)
  • garageLockState — "locked" means physical remotes are disabled
  • vehicleState — laser sensor detects parked car
  • vehicleDistance — distance to vehicle in cm (laser)
  • motionDetected — PIR motion sensor

Control API

POST http://<host>/setgdo with form data:

FieldValuesEffect
garageDoorState1 = open, 0 = closeOpens or closes the door
garageLightOn1 = on, 0 = offToggles ceiling light
garageLockState1 = lock, 0 = unlockDisables/enables physical remotes

Safety Rules

  1. Never close the door if garageObstructed is true. Report the obstruction and stop.
  2. Always check status before opening/closing to confirm current state and avoid unnecessary operations.
  3. Confirm with the user before disabling remotes — this temporarily locks out all physical remotes (wall button, car remotes). Re-enable with garageLockState=0.

Helper Script

Use scripts/garage.sh for common operations:

# Status (human-readable)
bash scripts/garage.sh status

# Control
bash scripts/garage.sh open
bash scripts/garage.sh close
bash scripts/garage.sh light-on
bash scripts/garage.sh light-off
bash scripts/garage.sh lock-remotes
bash scripts/garage.sh unlock-remotes

The helper script includes safety checks: it verifies obstruction status before closing and confirms current state before toggling.

Compatibility

  • Firmware: HomeKit firmware v3.x+ (tested on v3.4.4)
  • Protocols: Security+ 2.0 (yellow learn button), Security+ 1.0 (purple learn button)
  • Platforms: Works alongside HomeKit/Apple Home. Not compatible with Home Assistant simultaneously (HomeKit single-pair limitation). Use web API for agent control, Apple Home for Siri/manual control.
  • Vehicle sensor: Requires the optional laser parking sensor. Distance reading varies by vehicle position.

Notes

  • HomeKit pairing is separate from the web API. Both can operate simultaneously.
  • The device broadcasts mDNS as Garage-Door-XXXXXX.local where XXXXXX is derived from the MAC address.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.78%
按下载量换算1,751

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills