Works with the AI tools you already use

    Claude CodeClaude CodeCursorCursorCodex CLICodex CLIGitHub CopilotGitHub CopilotGemini CLIGemini CLI+20 more

    Hue Light Choreographer

    1

    Tune Philips Hue lighting directly against the Hue Bridge REST API: discover the bridge, mint an API key, set brightness/color/temperature per bulb or room grou

    Free

    0 installsSecurity scanned
    Hue Light Choreographer

    Hue Light Choreographer

    Example session with this skill installed

    Turn the living room lights to a warm orange and set brightness to 50 percent.

    • Read your context and instructions
    • Compiled the hue light choreographer

    I have updated the living room (Group 2) to a warm orange color and 50% brightness (bri: 127, ct: 450). The command was successful.

    Connects securely to your tools. The creator never sees your data.

    About this skill

    Hue Light Choreographer

    Drive Philips Hue lights through the bridge's own REST API. One curl pattern, four resource types: lights, groups, scenes, and schedules.

    When to Use

    • User says "turn off the living room lights" or "dim the bedroom to 20%"
    • User wants a warm sunset scene or a specific RGB color on a bulb
    • User wants a routine like "bright at 7am, dim at 11pm" via the bridge schedule
    • User wants to know what lights/groups/scenes exist on the network

    Do not use for: Zigbee-level automation or scenes that need motion sensors outside Hue — keep to the bridge API. Also avoid for non-Hue Zigbee bulbs that the bridge cannot see.

    Procedure

    1. Find the bridge on the LAN (or ask the user for its IP):
    curl -s https://discovery.meethue.com/ | jq -r '.[0].internalipaddress'
    
    1. Mint an API key. Press the physical link button on the bridge, then within 30 seconds:
    curl -s -X POST http://BRIDGE_IP/api \
      -H 'Content-Type: application/json' \
      -d '{"devicetype":"seoproagent#desktop"}'
    # -> [{"success":{"username":"ABC123..."}}] ; save the username as HUE_USER
    
    1. Enumerate resources:
    export HUE=http://BRIDGE_IP/api/$HUE_USER
    curl -s $HUE/lights | jq -r 'to_entries[] | "\(.key) \(.value.name) on=\(.value.state.on)"'
    curl -s $HUE/groups | jq -r 'to_entries[] | "\(.key) \(.value.name)"'
    curl -s $HUE/scenes | jq -r 'to_entries[] | "\(.key) \(.value.name)"'
    
    1. Set a bulb state (on, brightness, color). Brightness is 0–254; hue 0–65535; sat 0–254; ct in mireds (153 warm … 500 cool):
    curl -s -X PUT $HUE/lights/3/state \
      -H 'Content-Type: application/json' \
      -d '{"on":true,"bri":200,"sat":0,"ct":350}'
    
    1. Command a whole room/group — same payload, group scope:
    curl -s -X PUT $HUE/groups/2/action \
      -H 'Content-Type: application/json' -d '{"on":true,"bri":80}'
    
    1. Recall a saved scene and put the room back to normal later:
    curl -s -X PUT $HUE/groups/2/action \
      -H 'Content-Type: application/json' -d '{"scene":"SCENE_ID"}'
    
    1. Schedule a routine — create a timer that fires a group action at a clock time (RCTime format "PT07:00:00"):
    curl -s -X POST $HUE/schedules \
      -H 'Content-Type: application/json' \
      -d '{"name":"morning-bright","localtime":"PT07:00:00","description":"wakeup","command":{"address":"/api/'$HUE_USER'/groups/2/action","method":"PUT","body":{"on":true,"bri":254}},"status":"enabled"}'
    

    Reference

    | Endpoint | Method | Purpose | |---|---|---| | /lights | GET | list bulbs | | /lights/{id}/state | PUT | single bulb control | | /groups | GET | room/zone list | | /groups/{id}/action | PUT | whole-room control | | /scenes | GET | list scenes | | /schedules | POST | timed routines |

    | Field | Range | Meaning | |---|---|---| | bri | 0–254 | brightness | | hue | 0–65535 | color wheel position | | sat | 0–254 | color saturation | | ct | 153–500 | color temperature (mireds) | | `transitionti

    How to install

    Works the same in every agent - Claude, Cursor, Codex, Copilot and 20+ more.

    ~30 seconds
    1. 1

      Download the ZIP

      Free skills download straight away. Paid skills unlock right after purchase.

    2. 2

      Unzip into your skills folder

      Every agent reads skills from one folder on your machine. Drop the unzipped folder in there.

    3. 3

      Ask your agent to use it

      Restart the agent if it was already running. It picks the skill up automatically - no config needed.

    Skills folder by agent

    Click the path to copy it. Create the folder if it does not exist yet.

    Reviews

    No reviews yet

    Be one of the first to try it. Every listed skill passes our trust checks below.

    Security scanned

    Passed our 8-point scan before listing

    Fresh listing

    Recently published to Agensi

    Free forever

    No account required to browse

    Trust & safety

    Security scanned

    Verified clean 29 days ago

    • Free to download with an account

    Listed29 days ago
    Updated1 day ago

    Frequently Asked Questions