2.3k★by mjrussell
beestat – OpenClaw Skill
beestat is an OpenClaw Skills integration for data analytics workflows. Query ecobee thermostat data via Beestat API including temperature, humidity, air quality (CO2, VOC), sensors, and HVAC runtime. Use when user asks about home temperature, thermostat status, air quality, or heating/cooling usage.
Skill Snapshot
| name | beestat |
| description | Query ecobee thermostat data via Beestat API including temperature, humidity, air quality (CO2, VOC), sensors, and HVAC runtime. Use when user asks about home temperature, thermostat status, air quality, or heating/cooling usage. OpenClaw Skills integration. |
| owner | mjrussell |
| repository | mjrussell/beestat |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mjrussell/beestat |
| last updated | Feb 7, 2026 |
Maintainer

name: beestat description: Query ecobee thermostat data via Beestat API including temperature, humidity, air quality (CO2, VOC), sensors, and HVAC runtime. Use when user asks about home temperature, thermostat status, air quality, or heating/cooling usage. homepage: https://beestat.io metadata: clawdbot: emoji: "🌡️" requires: bins: ["beestat"] env: ["BEESTAT_API_KEY"]
Beestat CLI
CLI for the Beestat API (ecobee thermostat analytics). Query temperature, humidity, air quality, and HVAC runtime.
Installation
npm install -g beestat-cli
Setup
- Create account at beestat.io and link your ecobee
- Email contact@beestat.io with your thermostat serial number to get an API key
- Set environment variable:
export BEESTAT_API_KEY="your-key"
Commands
Status
beestat status # Current temps, humidity, setpoints, weather
beestat status --json
Sensors
beestat sensors # All sensors with temperature and occupancy
beestat sensors --json
Air Quality
beestat air-quality # CO2, VOC, and air quality score
beestat aq # Short alias
beestat aq --json
Requires ecobee Smart Thermostat Premium (has built-in air quality sensors).
CO2 Levels:
- < 800 ppm: Excellent
- 800-1000 ppm: Good
- 1000-1500 ppm: Fair (consider ventilation)
-
1500 ppm: High (ventilate!)
VOC Levels:
- < 0.5 ppm: Excellent
- 0.5-1.0 ppm: Good
- 1.0-3.0 ppm: Fair
-
3.0 ppm: High
Thermostats
beestat thermostats # Model info, HVAC details
beestat thermostats --json
Runtime Summary
beestat summary # Runtime history (default 7 days)
beestat summary --days 14 # Last 14 days
beestat summary --json
Force Sync
beestat sync # Force sync with ecobee
Usage Examples
User: "What's the temperature in the house?"
beestat status
User: "Is the air quality okay?"
beestat aq
User: "Is anyone in the bedrooms?"
beestat sensors
User: "How much did we heat the house this week?"
beestat summary --days 7
User: "What thermostats do we have?"
beestat thermostats
Notes
- Air quality data comes from ecobee runtime, not sensor capabilities
- All commands support
--jsonfor scripting/automation - Use
beestat syncif data seems stale
No README available.
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 beestat?
Run openclaw add @mjrussell/beestat in your terminal. This installs beestat 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/mjrussell/beestat. Review commits and README documentation before installing.
