From sundial-org-awesome-openclaw-skills-4
Controls Govee smart lights via Govee API: turn on/off individual lights/groups by name, adjust brightness, set colors and scenes. For natural language home automation commands.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Control Govee smart lights using natural language commands.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Control Govee smart lights using natural language commands.
| Command | Example |
|---|---|
| List devices | python3 scripts/govee.py list |
| Turn on | python3 scripts/govee.py on "lamp" |
| Turn off | python3 scripts/govee.py off "lamp" |
| Brightness | python3 scripts/govee.py brightness "lamp" 75 |
| Color | python3 scripts/govee.py color "lamp" 255 100 50 |
export GOVEE_API_KEY="your-key"pip3 install requests# 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
See TROUBLESHOOTING.md for common issues.