---
name: C Lights
slug: c-lights
category: Automation
description: C Lights controls Philips Hue lights, rooms, and scenes through the `openhue` CLI. Use it to turn lights on or off, change brightness or color, and activate scenes.
github: "https://github.com/daxaur/openpaw/tree/main/skills/c-lights"
language: TypeScript
stars: 167
forks: 11
install: "npx degit https://github.com/daxaur/openpaw/tree/main/skills/c-lights ~/.claude/skills/c-lights"
installs_to: ~/.claude/skills/c-lights
source_path: skills/c-lights/SKILL.md
collection_size: 25
category_size: 2226
collection_url: "https://dirskills.com/collections/daxaur/openpaw"
added: 2026-09-08T05:34:31.471Z
last_synced: 2026-09-08T05:34:31.471Z
canonical_url: "https://dirskills.com/skills/c-lights"
---

# C Lights

C Lights controls Philips Hue lights, rooms, and scenes through the `openhue` CLI. Use it to turn lights on or off, change brightness or color, and activate scenes.

**Install:**

```bash
npx degit https://github.com/daxaur/openpaw/tree/main/skills/c-lights ~/.claude/skills/c-lights
```

## README

## What This Skill Does

Enables Claude to control Philips Hue smart lighting — individual bulbs, rooms, and scenes — using the `openhue` CLI.

## Available CLI Tool: `openhue`

### Common Commands

```bash
# List all lights
openhue get lights

# List all rooms/groups
openhue get rooms

# Turn a light on or off
openhue set light "Desk Lamp" --on
openhue set light "Desk Lamp" --off

# Set brightness (0-100)
openhue set light "Bedroom" --brightness 75

# Set color by name or hex
openhue set light "Living Room" --color red
openhue set light "Living Room" --color "#FF6600"

# Set color temperature (warm to cool, in mirek)
openhue set light "Kitchen" --color-temp 370

# Control an entire room
openhue set room "Living Room" --on --brightness 80

# List available scenes
openhue get scenes

# Activate a scene
openhue set scene "Relax" --room "Living Room"
```

## Usage Guidelines

- Use room-level commands when the user refers to a space, not a specific bulb
- Brightness is 0–100; color-temp ranges roughly 153 (cool) to 500 (warm)
- List lights/rooms first if unsure of exact names

## Notes

- Requires `openhue` configured with your Hue Bridge IP and API key
- Bridge must be on the same local network
