skills$openclaw/enzoldhazam
daniel-laszlo2.0k

by daniel-laszlo

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.

2.0k stars5.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameenzoldhazam
descriptionControl 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.
ownerdaniel-laszlo
repositorydaniel-laszlo/enzoldhazam
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @daniel-laszlo/enzoldhazam
last updatedFeb 7, 2026

Maintainer

daniel-laszlo

daniel-laszlo

Maintains enzoldhazam in the OpenClaw Skills directory.

View GitHub profile
File Explorer
10 files
.
internal
api
client.go
5.7 KB
config
config.go
2.0 KB
models
models.go
1.8 KB
_meta.json
281 B
README.md
1.5 KB
SKILL.md
1.6 KB
SKILL.md

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

  1. 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/
  1. Login (credentials stored in macOS Keychain):
enzoldhazam login

Or set environment variables:

export ENZOLDHAZAM_USER="your-email"
export ENZOLDHAZAM_PASS="your-password"

Commands

CommandDescription
enzoldhazam statusShow all rooms with temperatures
enzoldhazam status --jsonJSON output for parsing
enzoldhazam get <room>Get specific room details
enzoldhazam set <room> <temp>Set target temperature
enzoldhazam loginSave credentials to Keychain
enzoldhazam logoutClear 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:

  1. Use enzoldhazam status to check current state
  2. Use enzoldhazam set <room> <temp> to change temperature
  3. Parse --json output when you need to process the data

Always confirm temperature changes with the user before executing.

README.md

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.