소스 정보
- 저장소
- taracodlabs/aiden
- 최근 소스 활동
- 2026년 5월 6일 12:31
- 감지된 SKILL.md 언어
- 영어
- 스타
- 779
- 포크
- 140
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/taracodlabs/aiden --skill openhue명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | openhue |
| description | Control Philips Hue lights via OpenHue CLI + Hue Bridge API |
| category | smart-home |
| version | 1.0.0 |
| origin | aiden |
| license | Apache-2.0 |
| tags | hue, philips, smart-home, lights, openhue, cli, iot, automation, rgb, brightness |
Control Philips Hue lights using the OpenHue CLI or the local Hue Bridge REST API. Works entirely on your local network — no cloud required.
# Install via winget
winget install openhue.cli
# Or via npm
npm install -g openhue-cli
# Verify
openhue --version
# Discover the Hue Bridge on your network
openhue discover
# Pair (press the button on the Bridge within 30 seconds, then run)
openhue pair --host 192.168.1.x # use IP from discover output
# Save credentials
openhue configure --host 192.168.1.x --api-key YOUR_API_KEY
openhue get lights
# Turn specific light on/off (by ID or name)
openhue set light "Living Room 1" --on true
openhue set light "Living Room 1" --on false
# Turn all lights off
openhue set lights --on false
# Brightness 0-100
openhue set light "Desk Lamp" --brightness 70
# Set color by hue/saturation (hue 0-360, saturation 0-100)
openhue set light "Desk Lamp" --hue 240 --saturation 80 --brightness 80
# Set color temperature in Kelvin (2000K warm to 6500K cool)
openhue set light "Desk Lamp" --color-temp 3000
# List available scenes
openhue get scenes
# Activate a scene in a room
openhue set scene "Relax" --room "Living Room"
$bridge = "192.168.1.x"
$apiKey = $env:HUE_API_KEY
$baseUrl = "https://$bridge/clip/v2"
$headers = @{ "hue-application-key" = $apiKey }
# List all lights
$lights = (Invoke-RestMethod -Uri "$baseUrl/resource/light" -Headers $headers -SkipCertificateCheck).data
$lights | Select-Object id, @{N="name";E={$_.metadata.name}}, @{N="on";E={$_.on.on}}
# Turn a specific light on
$lightId = $lights[0].id
$body = @{ on = @{ on = $true } } | ConvertTo-Json
Invoke-RestMethod -Uri "$baseUrl/resource/light/$lightId" -Method Put -Headers $headers -Body $body -SkipCertificateCheck
"Turn off all the lights in the bedroom"
→ Use step 4: openhue set lights --room "Bedroom" --on false
"Set my desk lamp to a cool blue for focus mode"
→ Use step 5: --hue 220 --saturation 90 --brightness 75 for a cool blue light.
"Activate the Movie scene in the living room"
→ Use step 6: openhue set scene "Movie" --room "Living Room".
-SkipCertificateCheck is needed for direct API calls — the Bridge uses a self-signed certificate~/.openhue/ — do not share this directory