Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Control LG smart appliances via ThinQ API. Use when user asks about their fridge, washer, dryer, AC, or other LG appliances. Supports checking status, changing temperature, toggling modes (express, eco), and monitoring door status.
Control LG smart appliances via ThinQ API. Use when user asks about their fridge, washer, dryer, AC, or other LG appliances. Supports checking status, changing temperature, toggling modes (express, eco), and monitoring door status.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Control LG smart home appliances via the ThinQ Connect API.
Get a Personal Access Token from https://connect-pat.lgthinq.com Store token: echo "YOUR_TOKEN" > ~/.config/lg-thinq/token Store country code: echo "MX" > ~/.config/lg-thinq/country
All scripts are in the skill's scripts/ directory. Activate venv first: cd ~/clawd && source .venv/bin/activate
python3 skills/lg-thinq/scripts/thinq.py devices
python3 skills/lg-thinq/scripts/thinq.py status <device_id> python3 skills/lg-thinq/scripts/thinq.py status fridge # alias
# Set fridge temperature (0-6°C) python3 skills/lg-thinq/scripts/thinq.py fridge-temp 3 # Set freezer temperature (-24 to -14°C typical) python3 skills/lg-thinq/scripts/thinq.py freezer-temp -15 # Toggle express fridge python3 skills/lg-thinq/scripts/thinq.py express-fridge on|off # Toggle express freeze python3 skills/lg-thinq/scripts/thinq.py express-freeze on|off # Toggle eco mode python3 skills/lg-thinq/scripts/thinq.py eco on|off
python3 skills/lg-thinq/scripts/thinq.py status washer python3 skills/lg-thinq/scripts/thinq.py status dryer
DeviceStatusControlRefrigerator✅ temp, door, modes✅ temp, express, ecoWashTower Washer✅ state, time⚠️ limitedWashTower Dryer✅ state, time⚠️ limitedAir Conditioner✅ temp, mode✅ temp, mode, fan
Fridge: 0°C to 6°C Freezer: -24°C to -14°C (varies by model)
NOT_CONNECTED_DEVICE: Device offline, check WiFi or open ThinQ app INVALID_COMMAND_ERROR: Wrong command format or value out of range NOT_PROVIDED_FEATURE: Feature not supported by this model
User says → Action: "check my fridge" → status fridge "set fridge to 5 degrees" → fridge-temp 5 "turn on express freeze" → express-freeze on "is the fridge door open?" → status fridge (check doorStatus) "how's the washer doing?" → status washer
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.