2.0k★enzoldhazam – OpenClaw Skill
enzoldhazam is an OpenClaw Skills integration for data analytics workflows. Control NGBS iCON Smart Home thermostats. Use when the user asks about home temperature, heating, thermostat control, or wants to adjust room temperatures.
Skill Snapshot
| name | enzoldhazam |
| description | Control NGBS iCON Smart Home thermostats. Use when the user asks about home temperature, heating, thermostat control, or wants to adjust room temperatures. OpenClaw Skills integration. |
| owner | daniel-laszlo |
| repository | daniel-laszlo/enzoldhazam |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @daniel-laszlo/enzoldhazam |
| last updated | Feb 7, 2026 |
Maintainer

name: enzoldhazam description: Control NGBS iCON Smart Home thermostats. Use when the user asks about home temperature, heating, thermostat control, or wants to adjust room temperatures.
enzoldhazam
Control NGBS iCON Smart Home thermostats via enzoldhazam.hu.
Setup
- Install the CLI:
git clone https://github.com/daniel-laszlo/enzoldhazam.git
cd enzoldhazam
go build -o enzoldhazam ./cmd/enzoldhazam
sudo mv enzoldhazam /usr/local/bin/
- Login (credentials stored in macOS Keychain):
enzoldhazam login
Or set environment variables:
export ENZOLDHAZAM_USER="your-email"
export ENZOLDHAZAM_PASS="your-password"
Commands
| Command | Description |
|---|---|
enzoldhazam status | Show all rooms with temperatures |
enzoldhazam status --json | JSON output for parsing |
enzoldhazam get <room> | Get specific room details |
enzoldhazam set <room> <temp> | Set target temperature |
enzoldhazam login | Save credentials to Keychain |
enzoldhazam logout | Clear stored credentials |
Examples
# Check current temperatures
enzoldhazam status
# Set a room to 22°C
enzoldhazam set "Living Room" 22
# Get room info as JSON
enzoldhazam get "Bedroom" --json
Instructions
When the user asks about home temperature, heating, or thermostats:
- Use
enzoldhazam statusto check current state - Use
enzoldhazam set <room> <temp>to change temperature - Parse
--jsonoutput when you need to process the data
Always confirm temperature changes with the user before executing.
enzoldhazam
CLI tool for controlling thermostats via enzoldhazam.hu (NGBS iCON Smart Home system).
Installation
# Clone the repository
git clone https://github.com/daniel-laszlo/enzoldhazam.git
cd enzoldhazam
# Build
go build -o enzoldhazam ./cmd/enzoldhazam
# Optional: move to PATH
mv enzoldhazam /usr/local/bin/
Usage
Authentication
Login and save credentials to macOS Keychain:
enzoldhazam login
Or use environment variables:
export ENZOLDHAZAM_USER="your-email@example.com"
export ENZOLDHAZAM_PASS="your-password"
Commands
# Show all rooms with current/target temperatures
enzoldhazam status
# Get specific room details
enzoldhazam get <room-name>
enzoldhazam get <thermostat-id>
# Set target temperature
enzoldhazam set <room-name> <temperature>
# Clear stored credentials
enzoldhazam logout
JSON Output
All data commands support --json flag for automation:
enzoldhazam status --json
enzoldhazam get <room-name> --json
Example Output
$ enzoldhazam status
Device: My Device (123456789012)
Status: Online | Water: 38.2°C | External: 5.0°C
Living Room 22.5°C (target: 21.5°C) RH: 31%
Office 21.6°C (target: 21.5°C) RH: 30%
Bedroom 21.8°C (target: 21.5°C) RH: 26%
Requirements
- Go 1.21+
- macOS (for Keychain credential storage)
- An enzoldhazam.hu account with registered NGBS iCON device(s)
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install enzoldhazam?
Run openclaw add @daniel-laszlo/enzoldhazam in your terminal. This installs enzoldhazam into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/daniel-laszlo/enzoldhazam. Review commits and README documentation before installing.
