ソース情報
- リポジトリ
- taracodlabs/aiden
- ソースの最終更新活動
- 2026年5月6日 12:31
- 検出された SKILL.md の言語
- 英語
- スター
- 779
- フォーク
- 140
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/taracodlabs/aiden --skill openhueコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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