Openclaw-master-skills openhue

Control Philips Hue lights/scenes via the OpenHue CLI.

install
source · Clone the upstream repo
git clone https://github.com/LeoYeAI/openclaw-master-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/LeoYeAI/openclaw-master-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/openhue" ~/.claude/skills/leoyeai-openclaw-master-skills-openhue && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/LeoYeAI/openclaw-master-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/openhue" ~/.openclaw/skills/leoyeai-openclaw-master-skills-openhue && rm -rf "$T"
manifest: skills/openhue/SKILL.md
source content

OpenHue CLI

Use

openhue
to control Hue lights and scenes via a Hue Bridge.

Setup

  • Discover bridges:
    openhue discover
  • Guided setup:
    openhue setup

Read

  • openhue get light --json
  • openhue get room --json
  • openhue get scene --json

Write

  • Turn on:
    openhue set light <id-or-name> --on
  • Turn off:
    openhue set light <id-or-name> --off
  • Brightness:
    openhue set light <id> --on --brightness 50
  • Color:
    openhue set light <id> --on --rgb #3399FF
  • Scene:
    openhue set scene <scene-id>

Notes

  • You may need to press the Hue Bridge button during setup.
  • Use
    --room "Room Name"
    when light names are ambiguous.