Openclaw Lifx
by @stillstellung
Control LIFX smart lights via natural language. Toggle, set colors/brightness, activate scenes, create gradients on multi-zone devices.
clawhub install lifxπ About This Skill
name: lifx description: "Control LIFX smart lights via natural language. Toggle, set colors/brightness, activate scenes, create gradients on multi-zone devices." homepage: https://github.com/Stillstellung/via-clara-claw metadata: openclaw: emoji: "π‘" requires: env: ["LIFX_TOKEN"]
LIFX Light Control
Control LIFX smart lights via the LIFX HTTP API through natural language.
References
lifx-api.sh β Bash wrapper for all LIFX API callsscene-status.py β Scene matching and active detectionsetup.sh β Device discovery and skill configurationConfiguration
Set your LIFX API token (get one at https://cloud.lifx.com/settings):
bash setup.sh
This discovers your lights, groups, and scenes, then generates a personalized SKILL.md with your device context.
Device Context
> Run bash setup.sh to populate this section with your lights, rooms, and scenes.
> The setup script queries the LIFX API and rewrites this file with your personal device context.
Location: *(not configured)*
Rooms and Lights
*(populated by setup.sh)*
Scenes
*(populated by setup.sh)*
Multi-zone Devices
*(populated by setup.sh)*
How to Control Lights
Discover lights
bash lifx-api.sh discover
Shows all lights organized by room with power state, color, and brightness.
Toggle lights on/off
bash lifx-api.sh toggle
Selectors:
id:group_id:allSet light state (color, brightness, power)
bash lifx-api.sh state '{"power":"on","color":"blue","brightness":0.75,"duration":1.0}'
Color formats:
red, blue, green, white, warm white, purple, orange#ff6b35kelvin:2700 (warm) to kelvin:6500 (cool daylight)hue:240 saturation:1.0Always include "power":"on" and a brightness value when setting colors, or lights with brightness 0 will stay invisible.
Activate a scene
bash lifx-api.sh scene
Toggle a room
bash lifx-api.sh group-toggle
Multi-zone gradients (Beam / Strip devices)
Multi-zone devices support individually addressable zones. Create gradients by setting different zone ranges:
bash lifx-api.sh state 'id:|0-4' '{"power":"on","color":"purple","brightness":1.0,"duration":1.0}'
bash lifx-api.sh state 'id:|5-9' '{"power":"on","color":"red","brightness":1.0,"duration":1.0}'
The pipe character in zone selectors is automatically URL-encoded by the script.
Check scene status
python3 scene-status.py all # Show all active scenes
python3 scene-status.py check # Check specific scene
List current light states
bash lifx-api.sh list # Full JSON
bash lifx-api.sh groups # Summary by room
Behavior Guidelines
{"power":"off"} β don't toggle (toggling is ambiguous).{"power":"on","brightness":1.0} to ensure visibility.βοΈ Configuration
Set your LIFX API token (get one at https://cloud.lifx.com/settings):
bash setup.sh
This discovers your lights, groups, and scenes, then generates a personalized SKILL.md with your device context.