Awesome-openclaw-skills govee-lights
Control Govee smart lights via the Govee API. Supports turning lights on/off, adjusting brightness, setting colors, and scenes. Use for: (1) Controlling individual lights or groups by name, (2) Setting colors and brightness, (3) Managing device states
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/govee-lights" ~/.claude/skills/sundial-org-awesome-openclaw-skills-govee-lights && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/govee-lights" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-govee-lights && rm -rf "$T"
manifest:
skills/govee-lights/SKILL.mdsource content
Govee Lights Control
Control Govee smart lights using natural language commands.
Quick Reference
| Command | Example |
|---|---|
| List devices | |
| Turn on | |
| Turn off | |
| Brightness | |
| Color | |
Natural Language Patterns
- "Turn on [device name]"
- "Turn off [device name]"
- "Set [device name] to [brightness]%"
- "Set [device name] to [color name or RGB]"
- "Dim/Brighten [device name]"
Setup
- Get API key from Govee Developer Portal
- Set environment variable:
export GOVEE_API_KEY="your-key" - Install dependencies:
pip3 install requests
Usage Examples
# List all devices python3 scripts/govee.py list # Control lights python3 scripts/govee.py on "living room" python3 scripts/govee.py off bedroom python3 scripts/govee.py brightness "desk lamp" 50 # Set colors (RGB 0-255) python3 scripts/govee.py color "strip" 255 0 0 # Red python3 scripts/govee.py color "strip" 0 255 0 # Green python3 scripts/govee.py color "strip" 255 165 0 # Orange
Troubleshooting
See TROUBLESHOOTING.md for common issues.