← Back to Skills Marketplace
m0nkmaster

Hive Home

by Rob MacDonald · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
267
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install hivehome
Description
Control and query Hive Home (UK) smart heating, hot water, lights and devices via the unofficial API. Use when the user mentions Hive, Hive Home, Hive thermo...
README (SKILL.md)

Hive Home (UK)

Control Hive thermostats, hot water, lights and other devices programmatically. Hive does not provide a public API; this skill uses the community Pyhiveapi library, which talks to the same backend as the Hive app.

Prefer the bundled scripts for common actions. Run scripts/hive_control.py from the skill directory (or {baseDir}/scripts/hive_control.py when the agent has the skill path). Only generate custom Pyhiveapi code when the user needs something the scripts do not support (e.g. lights, multi-zone by name, or custom logic).

Important: The API is unofficial. Never hardcode credentials or 2FA codes in prompts, logs or code. Use environment variables or a secure secret store.

Bundled scripts

From the skill root (e.g. hivehome/ or the skill directory loaded by your agent):

# Status (heating + hot water)
python scripts/hive_control.py status

# Heating
python scripts/hive_control.py set-temp 21
python scripts/hive_control.py mode heat
python scripts/hive_control.py mode schedule
python scripts/hive_control.py boost 30 21    # 30 min at 21°C
python scripts/hive_control.py boost-off

# Hot water
python scripts/hive_control.py hotwater-boost 30
python scripts/hive_control.py hotwater-boost-off
python scripts/hive_control.py hotwater-mode schedule
python scripts/hive_control.py hotwater-mode off

# Multiple zones (default zone 0)
python scripts/hive_control.py --zone 1 set-temp 20

Requires HIVE_USERNAME, HIVE_PASSWORD; for non-interactive use (e.g. agent runs) set HIVE_DEVICE_GROUP_KEY, HIVE_DEVICE_KEY, HIVE_DEVICE_PASSWORD after one interactive first-time login.

Credentials

Required env vars: HIVE_USERNAME, HIVE_PASSWORD. For automation (no 2FA each run): HIVE_DEVICE_GROUP_KEY, HIVE_DEVICE_KEY, HIVE_DEVICE_PASSWORD.

Where to set them:

  • Generic / Cursor / CLI: Set in your shell (export HIVE_USERNAME=...) or in a local .env file that is not committed. Run the script in an environment where these are set.
  • OpenClaw: Set in ~/.openclaw/openclaw.json under skills.entries.hivehome.env. OpenClaw injects these into the process for the agent run; they are not put in prompts or logs.
  • Other agents: Use that agent’s recommended way to inject env vars or secrets so the skill’s scripts see them at runtime.

Agent instruction: If credentials are missing, do not ask the user to paste passwords or keys in chat. Tell them to set the required environment variables (or configure the skill in their agent’s config) and run the script again. See references/CREDENTIALS.md for platform-specific notes.

When to use this skill

  • User asks to control Hive heating, thermostat, or hot water.
  • User wants to script or automate Hive devices (heating, lights, plugs).
  • User mentions Hive, British Gas Hive, or the Hive app in the context of automation or code.

Prerequisites

  • Python 3 with pyhiveapi>=1.0.0 (session API): pip install "pyhiveapi>=1.0.0". If you see attribute or method errors, run pip install -U pyhiveapi and try again.
  • Hive account (UK; my.hivehome.com). First-time login requires SMS 2FA; subsequent logins can use device credentials to avoid 2FA.

Authentication

First-time login (username + password + 2FA)

Hive enforces two-factor authentication. After initial login, capture device credentials for future runs so the user does not need to enter a 2FA code every time.

import os
from pyhiveapi import Hive, SMS_REQUIRED

username = os.environ.get("HIVE_USERNAME")
password = os.environ.get("HIVE_PASSWORD")
if not username or not password:
    raise SystemExit("Set HIVE_USERNAME and HIVE_PASSWORD")

session = Hive(username=username, password=password)
login = session.login()

if login.get("ChallengeName") == SMS_REQUIRED:
    code = input("Enter 2FA code from SMS: ")
    session.sms2fa(code, login)

# Save these for next time (e.g. to env or a secure store)
device_data = session.auth.getDeviceData()
print("Store for device login:", device_data)

session.startSession()
# Now use session.heating, session.hotwater, session.light, etc.

Device login (no 2FA after first time)

Use after the user has run first-time login and stored device credentials. Set HIVE_DEVICE_GROUP_KEY, HIVE_DEVICE_KEY, HIVE_DEVICE_PASSWORD (or pass them another secure way).

import os
from pyhiveapi import Hive

session = Hive(
    username=os.environ["HIVE_USERNAME"],
    password=os.environ["HIVE_PASSWORD"],
    deviceGroupKey=os.environ["HIVE_DEVICE_GROUP_KEY"],
    deviceKey=os.environ["HIVE_DEVICE_KEY"],
    devicePassword=os.environ["HIVE_DEVICE_PASSWORD"],
)
session.deviceLogin()
session.startSession()

Device lists

After session.startSession(), devices are in session.deviceList by type:

heating = session.deviceList["climate"]
water_heaters = session.deviceList["water_heater"]
lights = session.deviceList["light"]
switches = session.deviceList["switch"]
sensors = session.deviceList["sensor"]
binary_sensors = session.deviceList["binary_sensor"]

Use the first (or chosen) device when calling the methods below.

Heating (thermostat)

if heating:
    zone = heating[0]
    # Read
    session.heating.getMode(zone)
    session.heating.getState(zone)
    session.heating.getCurrentTemperature(zone)
    session.heating.getTargetTemperature(zone)
    session.heating.getBoostStatus(zone)
    session.heating.getBoostTime(zone)
    session.heating.getOperationModes()  # e.g. SCHEDULE, HEAT, OFF

    # Write
    session.heating.setMode(zone, "SCHEDULE")
    session.heating.setMode(zone, "HEAT")
    session.heating.setTargetTemperature(zone, 21)
    session.heating.setBoostOn(zone, 30, 21)   # 30 min at 21°C
    session.heating.setBoostOff(zone)

Hot water

if water_heaters:
    hw = water_heaters[0]
    session.hotwater.getMode(hw)
    session.hotwater.getState(hw)
    session.hotwater.getBoost(hw)
    session.hotwater.setMode(hw, "OFF")
    session.hotwater.setMode(hw, "SCHEDULE")
    session.hotwater.setBoostOn(hw, 30)
    session.hotwater.setBoostOff(hw)

Lights

if lights:
    light = lights[0]
    session.light.getState(light)
    session.light.getBrightness(light)
    session.light.getColorTemp(light)
    session.light.getColor(light)
    # Set state (exact method names depend on pyhiveapi version; see reference)

Quick reference

  • Modes (heating): SCHEDULE, HEAT, OFF (and others per getOperationModes()).
  • Temperatures: Use integers (e.g. 21 for 21°C). Check session.heating.getMinTemperature(zone) / session.heating.getMaxTemperature(zone) for limits.
  • Boost: Heating boost takes (minutes, target_temp); hot water boost takes (minutes) only.

Additional resources

External endpoints

This skill ships scripts (scripts/hive_control.py) that call the Pyhiveapi Python library. The agent should run these scripts for common actions. When the user needs unsupported behaviour (e.g. lights), the agent may generate Pyhiveapi code. In all cases, only the following endpoints are used. No direct HTTP is made from the skill; Pyhiveapi encapsulates it.

Purpose Endpoint / host Data sent
Login (first time) beekeeper.hivehome.com / api.prod.bgchprod.info (via Pyhiveapi) Hive username, password; after 2FA, device registration
Device login Same Username, password, device group key, device key, device password
Device control (heating, hot water, lights, etc.) Same Session token; device IDs and command payloads (e.g. target temperature, mode)

Credentials and 2FA codes must be supplied via environment variables or user input; the skill never contains or logs them. The bundled script includes a SECURITY MANIFEST header (env vars and endpoints used).

Security and privacy

  • What leaves the machine: Hive account credentials (username, password, and optionally device keys) and API requests (device state, setpoints, mode changes) are sent to Hive’s backend (Centrica/British Gas). The skill does not send data elsewhere.
  • What stays local: Credentials should be stored only in the user’s environment or secret store; the skill instructs the agent never to hardcode or log them.
  • Autonomous invocation: When this skill is enabled, the agent may suggest or generate code that calls the Hive API when the user asks about heating, thermostats, or Hive. The user controls whether to run that code and what credentials to provide.

Trust statement

By using this skill, you send your Hive account credentials and device commands to Hive’s servers (beekeeper.hivehome.com / api.prod.bgchprod.info). Only install and use this skill if you trust that infrastructure and the Pyhiveapi library. This skill is not affiliated with Hive or British Gas.

Usage Guidance
This skill appears to do what it says: run the bundled Python script which uses the community pyhiveapi library to talk to Hive’s backend. Before installing: (1) Only provide your Hive credentials via secure environment/secret injection (do not paste them in chat); (2) store device keys securely if you want to skip 2FA; (3) be aware the API is unofficial — the library talks to Hive endpoints and may break if Hive changes things; (4) avoid following the reference note about using mitmproxy unless you understand traffic interception and legal/privacy implications; and (5) if you require higher assurance, review the pyhiveapi package source and the included scripts to confirm there is no unexpected network or file access.
Capability Analysis
Type: OpenClaw Skill Name: hivehome Version: 1.0.1 The hivehome skill provides a legitimate interface for controlling Hive Home smart devices using the community-standard pyhiveapi library. The bundled script (scripts/hive_control.py) and instructions (SKILL.md) follow security best practices by mandating the use of environment variables for credentials and explicitly instructing the agent not to request secrets in chat. All network communication is directed to official Hive API endpoints (beekeeper.hivehome.com), and no evidence of data exfiltration, obfuscation, or malicious execution was found.
Capability Assessment
Purpose & Capability
Name/description (control Hive devices) match the requested environment variables (HIVE_USERNAME, HIVE_PASSWORD) and the included Python CLI. The primary credential is the Hive username which is appropriate for this integration.
Instruction Scope
SKILL.md and the CLI script limit actions to authenticating and calling Hive device APIs. The only noteworthy expansion is guidance in references/REFERENCE.md about using DevTools or mitmproxy to discover endpoints — that is beyond normal user needs and has privacy/operational implications if followed (it’s not required for typical use).
Install Mechanism
No install spec; this is instruction-only plus a bundled script. Dependency is pyhiveapi via pip which is reasonable and expected; nothing is downloaded from untrusted arbitrary URLs.
Credentials
Requested env vars are limited to Hive credentials and optional device keys for avoiding 2FA; this is proportionate to the stated functionality and matches the documentation. No unrelated secrets or system paths are requested.
Persistence & Privilege
Skill is not always-enabled, does not request elevated system presence, and does not modify other skills or global agent settings. The agent can invoke it autonomously (platform default) but that is not combined with other concerning privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install hivehome
  3. After installation, invoke the skill by name or use /hivehome
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
Hivehome 1.0.1 - Updated code examples and quick reference for heating to use new pyhiveapi method names (e.g. getCurrentTemperature, getTargetTemperature, getBoostStatus, setBoostOn). - Updated temperature limit references to use getMinTemperature and getMaxTemperature methods. - No functional or code changes; documentation only.
v1.0.0
Initial release of Hive Home (UK) skill. - Control and query Hive heating, hot water, lights, and other smart devices via the unofficial API using Pyhiveapi. - Provides bundled Python scripts for common heating and hot water actions. - Requires Hive UK account credentials via environment variables; 2FA setup and device credentials supported. - Supports automation, scripting, and use in agent environments with env var injection. - Full usage instructions and references included in documentation.
Metadata
Slug hivehome
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Hive Home?

Control and query Hive Home (UK) smart heating, hot water, lights and devices via the unofficial API. Use when the user mentions Hive, Hive Home, Hive thermo... It is an AI Agent Skill for Claude Code / OpenClaw, with 267 downloads so far.

How do I install Hive Home?

Run "/install hivehome" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Hive Home free?

Yes, Hive Home is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Hive Home support?

Hive Home is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Hive Home?

It is built and maintained by Rob MacDonald (@m0nkmaster); the current version is v1.0.1.

💬 Comments