A community-driven registry for the Claude Code ecosystem. Not affiliated with Anthropic.
Are you the author? Sign in to claim
aurora-smart-home
A Claude Code plugin for building smart home projects with verified reference data. Aurora routes your request to a specialist, validates every pin, entity, and address against schema-checked profiles, and refuses to ship code that does not pass.
⚠️ Use at your own risk. Aurora generates code and recommendations for educational purposes. Smart home projects involve mains electricity, batteries, and devices that control locks, water, heating, and gas. AI-generated configs can be plausible but wrong. The maintainers, contributors, and Anthropic accept no liability for property damage, personal injury, data loss, or any other harm. See DISCLAIMER.md for full terms.
The Home Assistant YAML skill's reference library has been brought up to date against the official HA documentation snapshot from 2026-05-30.
actions.md reference now covers all seven Lovelace tap/hold/double-tap action types (more-info, toggle, perform-action, navigate, url, assist, none) including confirmation dialogs. Also added: response variables for capturing return data from calendar, weather, and other actions that produce structured output.conditions.md gained a Device-Specific Conditions section covering alarm, climate, timer, calendar (calendar.is_event_active), and more, plus a selection guide. triggers-advanced.md gained a Device Trigger Inventory spanning 18+ device domains and a dedicated Calendar Trigger section.service:, platform:, and singular automation keys (trigger:, condition:, action:) replaced with action:, trigger: state, triggers:, conditions:, actions: across all four core reference files. The skill now also lists all 50 reference files in its Quick Reference table.Aurora now targets ESPHome 2026.5.0. Twelve user-visible changes landed in this
release at once - some of them (battery life, Bluetooth proxy stability, the
audio stack) take effect the moment you reflash, no YAML changes required. Others
unlock things that were not possible before: synchronized whole-house audio from
ESP32s, Zigbee built into core for the C6 and H2, and a radio_frequency entity
type that finally treats RF transceivers as first-class devices in Home Assistant.
delay_compensation to align with whatever
amp/DAC chain you wire up.on_join automation trigger and power_source field
for advertising battery vs mains.radio_frequency is now a first-class HA entity type. The entity itself
has no knowledge of which RF chip is wired underneath, so a CC1101, RFM69,
SX127x, or custom external all work through the same YAML triggers. Pair with
the new ir_rf_proxy platform if you want HA to know your frequency range.esp32: watchdog_timeout: knob lets you trade
responsiveness for sleep time, 5 to 60 seconds.status=133 GATT failures that have
hit Yale and August lock owners for years are gone. The proxy now holds BT
priority during active connections instead of releasing it after the
handshake.esp32: toolchain: esp-idf
switches the build system to idf.py. ESP-IDF v6.0.1 readiness work landed in
the same release.esp32_ble: use_psram: true,
which moves the Bluedroid stack into SPIRAM.mode: spdif setting
on i2s_audio. Drive an optical TOSLINK module or a 75-ohm coax line directly
from the ESP, no external DAC.usb_host: max_packet_size: 512.
Previously P4 USB was stuck on 64-byte full-speed packets.modbus_server is its own component now. If you used modbus_controller
in server mode, move the keys to a top-level modbus_server: block:
server_registers: becomes registers:, server_courtesy_response: becomes
courtesy_response:. Worth about 60% flash savings on the way out.Full details, breaking changes, and copy-paste recipes: esphome/references/release-2026-5.md.
Aurora is a community plugin for Claude Code. You install it once. After that, every smart home request you make ("build a temperature sensor on ESP32", "automate my lights at sunset", "publish this integration to HACS") is handed to a specialist agent that consults machine-readable board and component profiles before generating code.
If the GPIO you asked for is reserved by USB, Aurora says so. If two I2C sensors collide on address 0x76, Aurora says so. If an automation references an entity the firmware never creates, Aurora says so. The reference data is the source of truth, not the model's training memory.
No runtime dependencies. The plugin is markdown and JSON. Claude reads it. Python and pytest are only used by maintainers to keep the reference data correct.
| Term | Means |
|---|---|
| Plugin | aurora@aurora-smart-home. The single thing you install. |
| Command | /aurora:aurora. Opens the orchestrator. The fastest entry point. |
| Skill | A topic module (esphome, home-assistant, etc.) that activates on keywords. |
| Agent | A named specialist (Volt, Sage, Ada, etc.) the orchestrator hands work to. |
| Validator | A reference spec the specialist must run before generating code. |
| Snapshot | aurora-project.json. Shared state when more than one agent is involved in a task. |
Already comfortable with Claude Code skills? Skip to How Aurora works, Validation and safety, or Included skills.
You need Claude Code installed first. Get it at claude.com/claude-code.
Inside Claude Code:
/plugin marketplace add tonylofgren/aurora-smart-home
/plugin install aurora@aurora-smart-home
Restart Claude Code, then run:
/aurora:aurora
Aurora opens, asks what you want to build, and routes the request to the right specialist. That is it.
After /aurora:aurora opens, paste any of these:
| You say | Aurora does |
|---|---|
I want a temperature sensor with OLED on ESP32 | Routes to Volt. Picks a board, validates the pins, returns ESPHome YAML and a wiring diagram. |
Lights on at sunset, off at midnight | Routes to Sage. Returns a Home Assistant automation in modern syntax. |
Motion lights: sensor on ESP32, automation in HA | Plans Volt then Sage. Writes the entity IDs once, both agents use them. |
Python integration for the Acme cloud API, HACS ready | Routes to Ada. Walks you through architecture and config flow. |
Review this YAML for me | Volt or Sage reads your config, runs validators, reports findings anchored to line numbers. |
datetime.now() inside an async coroutine.Aurora fits three kinds of work:
┌─────────────────────────────────────────────────────────────┐
│ Inline (one turn): │
│ /aurora:aurora build a CO2 monitor on ESP32-S3 │
│ │
│ Two-step (separate turns): │
│ 1) /aurora:aurora │
│ → Aurora shows its banner and asks the opening │
│ question. │
│ 2) build a CO2 monitor on ESP32-S3 │
└─────────────────────────────────────────────────────────────┘
Both paths end up in the same routing flow. Re-running /aurora:aurora
later in the same conversation skips the banner and just acknowledges
that Aurora is already loaded — no version check, no re-greeting.
┌─────────────────────────────────────────────────────────────┐
│ Aurora (orchestrator) │
│ Parses intent, picks the right specialist(s), │
│ recommends a Claude model tier, opens a shared snapshot │
│ if more than one specialist is involved. │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ Specialist (Volt for firmware in this case) │
│ Loads the board profile (aurora/references/boards/). │
│ Loads the component profile (aurora/references/ │
│ components/). │
│ Calls validators: pin, conflict, i2c-address, voltage, │
│ ota-safety, version, entity-id, secrets. │
│ If a validator fails, refuses to generate. Shows a fix. │
│ If validators pass, returns YAML + wiring + calibration. │
└─────────────────────────────────────────────────────────────┘
When the project spans firmware plus automations plus a dashboard, the agents
share a project snapshot written to your workspace as aurora-project.json.
Single-agent (QUICK mode) tasks skip the snapshot so there is no overhead for
small jobs. Multi-agent (DEEP mode) tasks use it like this:
You: "Motion sensor on ESP32, automation in HA, with a dashboard tile"
Volt creates: binary_sensor.living_room_motion
Sage uses: binary_sensor.living_room_motion as trigger
Iris places: binary_sensor.living_room_motion on the room view
If Sage references an entity Volt did not produce, or if Iris cannot find
the entity on the dashboard, Aurora raises a conflict instead of generating
broken YAML. Conflicts surface to you, not silently to the next agent.
Aurora does not paste code into chat and call it done. Every project produces a folder on disk with the working files plus a README.md you can hand to someone else.
bedroom-co2/
├── README.md ← project manual
├── bedroom-co2.yaml ← ESPHome firmware
└── secrets.yaml.example ← WiFi + API key template
The project README carries: what it does, BOM with estimated unit prices and a dated total, wiring with connection table and ASCII diagram, installation steps from flash to verified entities in Home Assistant, calibration procedures for the specific sensors used, troubleshooting for the three most likely failure points, and recovery instructions for when OTA goes wrong.
For custom PCB or production runs the folder grows with SCHEMATIC.md, PCB-NOTES.md, and (for production) MANUFACTURING.md, COST-ANALYSIS.md, CERTIFICATION.md, TEST-JIG.md. Aurora produces text specifications, not KiCad binaries.
For automations (Sage), custom integrations (Ada), Node-RED flows (River), and dashboards (Iris), the project folder includes the working YAML / Python / JSON plus a README.md with agent-specific installation steps, troubleshooting, and recovery.
Custom integrations (Ada) include the full custom_components/<id>/ structure with manifest.json, strings.json, translations, and a HACS-ready repo layout (hacs.json, LICENSE, .github/workflows/validate.yaml) when requested.
Aurora does not produce KiCad files, gerbers, or PNG wiring images. Schematics ship as text with ASCII block diagrams that a human or PCB designer can rebuild in their preferred tool.
The contract is enforced by Iron Law 8 in Volt's soul and Iron Law 3 in the four software-only specialists. Each agent verifies that every required file exists on disk before declaring delivery complete.
Aurora ships 12 validators that specialist agents must run before
returning code, plus three supporting specs (a shared output format, a
retroactive review protocol, and a board-selector helper). All files live
in aurora/references/validators/.
Validators (block code generation on failure):
| Validator | Catches |
|---|---|
pin-validator | GPIO that does not exist on this board, reserved pins (USB, flash, PSRAM), strapping pins. |
conflict-validator | Two devices on the same GPIO, two pull-up sensors fighting. |
i2c-address-validator | BME280 + BMP280 collision at 0x76, reserved address ranges. |
voltage-level-validator | 5V sensor on a 3.3V board, missing level shifter, wrong shifter type. |
ota-safety-validator | YAML that would leave the board unrecoverable (e.g. disabling WiFi on a board without USB recovery). |
version-validator | References to features your ESPHome or HA version does not support. |
entity-id-validator | Automation that references an entity no integration produces. |
secrets-validator | API keys, OAuth tokens, or webhook URLs pasted as literals. |
async-correctness-validator | datetime.now(), requests, time.sleep in HA async code. |
llm-config-validator | Conversation agent pointed at the wrong provider, prompt template over the token budget. |
node-red-syntax-validator | Legacy node type names that silently fail to deploy on Node-RED 4.x. |
unknown-component-validator | A community component Aurora has not seen. Asks for source URL, version, docs. Refuses if you cannot answer. |
Supporting specs:
| Spec | Role |
|---|---|
_tiered-errors | Shared output format used by every validator above. |
retroactive-yaml-review | Protocol agents follow when you paste existing YAML and ask for review. |
board-selector | Helper that picks a board for your project requirements. |
Every validator emits the same four-tier output:
❌ Problem (short):
GPIO 19 cannot be used on ESP32-S3 DevKit C-1 while USB CDC is enabled.
📚 Explanation (medium):
The ESP32-S3 routes USB D+/D- to GPIO 19/20. With usb_cdc: enabled,
these pins are reserved and any assignment to them collides with USB.
🔧 Fix (concrete):
Move the sensor to GPIO 8 (SDA) and GPIO 9 (SCL), the board's default
I2C pins.
💡 Deeper (optional):
You can set usb_cdc: false to free GPIO 19/20, but you lose USB serial
console (only OTA-over-WiFi remains for log inspection).
When this block fires, the agent stops. No YAML is written until the problem is resolved or you explicitly tell the agent to override. The fix line is concrete enough that you usually paste two lines into your config and rerun.
When validators pass, you get a complete result: the YAML, a wiring diagram, the calibration procedure for the sensors involved, and a troubleshooting section. Not half-finished code that compiles but fails to boot.
Safety scope. Smart home work touches mains electricity, batteries, locks, water, and heating. Aurora validates configuration against verified reference data, but it does not replace your judgement, your electrician, or your fuse box. See DISCLAIMER.md for the full statement.
Aurora is one plugin (aurora@aurora-smart-home). Inside it sits the
/aurora:aurora orchestrator command plus six topic skills. The orchestrator
routes requests across skills and across agents. The topic skills also
activate automatically when you mention relevant keywords, so you can skip
the orchestrator on quick tasks.
| Skill | Activates on |
|---|---|
esphome | "ESPHome", "ESP32", "ESP8266", board names |
home-assistant | "automation", "blueprint", "automations.yaml" |
ha-integration-dev | "custom integration", "HACS", "custom_components" |
node-red | "Node-RED", "flow", "function node" |
api-catalog | Specific service names (Tibber, SMHI, OpenAI, etc.) |
ha-dashboard-design | "dashboard look", "card-mod", "Lovelace theme" |
Aurora runs like a small smart home agency. 1 orchestrator + 20 named specialists across 7 departments. Each specialist has a defined domain, a soul (aurora/souls/), and a voice. Agents are not owned by a single skill, they are routed in by the orchestrator wherever their domain fits.
🏠 Aurora | Founder and orchestrator. "Your home should work for you, locally, privately, without asking permission."
Hardware department
Home Assistant department
dt_util.now()."Field intelligence
Quality desk
Research library
Operations
Design studio
Complete, working projects live in examples/:
| Example | What it builds |
|---|---|
| complete-smart-room | Full room with sensors, voice control, automations. |
| smart-greenhouse | Automated irrigation, climate monitoring, grow lights. |
| smart-garage | Garage door control, car detection, safety features. |
| energy-monitor | CT clamp power monitoring, cost tracking, alerts. |
For how the skills connect across a multi-step project, see SKILL-INTEGRATION.md.
Claude Code does not auto-update plugins by default. Aurora ships new boards, sensors, and validators regularly.
# Inside Claude Code (refreshes every installed plugin)
/reload-plugins
# From your terminal (targets aurora only)
claude plugin update aurora@aurora-smart-home
Then restart Claude Code so the new files load.
Enable auto-update once and forget:
/plugin to open the plugin manager.aurora-smart-home.Note: the slash command /plugin update <name> does not accept arguments.
Use /reload-plugins or the CLI form above.
| Symptom | First thing to check |
|---|---|
/aurora:aurora not found | Restart Claude Code after install. Then /reload-plugins. |
| Validator never fires | Confirm your request triggers a specialist (say "ESPHome", "automation"). |
| Aurora invents a community component | It should not. If it does, that is a bug. Open an issue. |
| Plugin feels out of date | claude plugin update aurora@aurora-smart-home, then /reload-plugins. |
Full guide: TROUBLESHOOTING.md.
Version history lives in CHANGELOG.md.
What's new in v1.9.1: Path-resolution fix. /aurora:aurora no longer reports "the aurora directory doesn't exist in the project" when invoked from a working directory that isn't an Aurora-structured repo. The slash command at commands/aurora.md now explicitly tells Claude that aurora/SKILL.md lives in the plugin install directory, not the user's project. A new Path Conventions section at the top of aurora/SKILL.md clarifies the same rule for every reference Aurora makes to its own files. Latent regression since 2026-01-03 when the aurora plugin structure was first introduced; affected 15 releases (v1.0.0 through v1.9.0). If you ever saw such an error and gave up, this is fixed.
What's new in v1.9.0: Aurora now targets ESPHome 2026.5.0 with a complete release reference, working examples for every new feature (Sendspin multi-room audio, Zigbee on ESP32-C6/H2, radio_frequency entity, BLE coex fix for Yale/August locks, soft-brick OTA recovery), and the first vendored external component (panasonic_ac from DomiStyle, MIT-licensed, ships locally so builds work offline). The examples library expanded from 4 to 27 working projects covering battery sensors, leak detection, LED strips, smart plugs, soil moisture, voice assistant, solar inverter monitoring, EV charger control, pool chemistry, smart blinds, fingerprint unlocking, e-paper weather stations, LVGL touchscreen panels, and more. Skill orchestrator polish: cross-skill handoffs table in home-assistant, Process flowchart added to node-red, reactivation boundary documented.
What's new in v1.8.1: Custom PCB builds are now first-class. Tell Volt "bare chip", "custom board", or "module" and it routes to a new Mode C: picks the right Espressif module (ESP32-S3-WROOM-2, C3-MINI-1, or C6-MINI-1 for Thread/Matter), explains what a bare module demands (external LDO, no onboard USB-UART), and always walks you through the prototype-first workflow before you commit to a PCB layout. Board recommendation engine fixed: commercial devices (Shelly, Sonoff) no longer appear as fresh-build suggestions. LilyGO T-Display S3 default I2C pins now warn about the silent UART0 conflict.
What's new in v1.8.0: Hardware safety analysis — dangerous projects (battery, mains relay, outdoor, >5V) now trigger Vera's review before Volt starts and produce hardware/HAZARD-ANALYSIS.md. PCB files move from esphome/ to hardware/. Four HA integration patterns documented in aurora/references/ha-integration/. Self-validating delivery via aurora/scripts/check-delivery.py — every specialist must pass the script before declaring done.
The roadmap lives in ROADMAP.md.
Issues and pull requests welcome. Start with CONTRIBUTING.md
for the contribution workflow. Adding boards or components goes through
aurora/references/ and must pass the pytest suite
(pytest aurora/tests/).
MIT. See LICENSE.
Aurora's agent personas are inspired by the people building the Open Home.
| Agent | Inspired by |
|---|---|
| Aurora | Otto Privacyhaus, believes your home should work without asking the cloud. |
| Ada + Lens | Hendrik Nomerge, your PR is not ready, he knows, he will tell you. |
| Atlas | Lars Hacsworth, built the store everyone uses to share their builds. |
| Iris + Lore | Penelope Crowwhisperer, tamer of crows, bridge between humans and their homes. |
| Mira | François Backlogeau, has opinions about roadmaps, very French ones. |
/plugin marketplace add tonylofgren/aurora-smart-home
/plugin install aurora@aurora-smart-home
/aurora:aurora
Then describe what you want to build.
Aurora helps you work with Home Assistant. Home Assistant's core development is funded by Nabu Casa. If your home runs on HA, please consider supporting them. Aurora is an independent community project, not affiliated with, endorsed by, or funded by Nabu Casa, the Open Home Foundation, or Anthropic. Agent personas are fictional.
Questions, build ideas, or want to share a project? Reach out on Instagram: @roligaprojekt.
Bug reports and feature requests: open a GitHub issue.
Created for use with Claude Code by Anthropic.
ML engineering — model training, deployment, MLOps, monitoring
DevOps practices — CI/CD, containers, monitoring, infrastructure automation
Professional skills marketplace with production-ready skills for enhanced development
Self-learning system that captures corrections and syncs them to CLAUDE.md and AGENTS.md