
Home Assistant 2026.7 landed with a serious rework of the automation editor. The new flow is closer to a block-based programming environment than the old YAML-with-a-form, and blueprints, the shareable, parameterisable templates that power much of the community, are front and centre. That said, running blueprints well still benefits from a couple of desktop tools sitting next to the browser. These seven best apps for Home Assistant automation blueprints on desktop each solve part of the “author, test, share, and version” problem.
Every app was tested against the same real installation: a small mesh of Zigbee sensors, a couple of Matter switches, a media player, and a monthly rotation of new blueprints from the community. The picks range from lightweight editors to full visual-programming environments.
What to look for in a Home Assistant blueprint app
The features that matter for daily authoring and use:
- Import from a community URL, not just a filesystem path.
- Preview and dry-run without touching real devices.
- Versioning, ideally tied to Git.
- A UI that shows both the blueprint variables and their current values.
- Cross-installation support for people running staging and production copies.
- Clear separation between an automation, a blueprint, and a script.
Quick comparison
| App | Best for | Platforms | Free plan | Starting price | Rating |
|---|---|---|---|---|---|
| Home Assistant | The base editor and blueprint exchange | Windows, macOS, Linux, Web | Yes | Free | 4.7 |
| Node-RED | Visual flow-based automation | Windows, macOS, Linux (add-on) | Yes | Free | 4.7 |
| n8n | Cross-service automation on top | Windows, macOS, Linux, Docker | Yes | Free / Cloud | 4.7 |
| AppDaemon | Python automations that outgrow YAML | Windows, macOS, Linux (add-on) | Yes | Free | 4.6 |
| Blueprint Exchange | Community catalogue of blueprints | Web | Yes | Free | 4.6 |
| HACS | Package manager for blueprints and add-ons | Home Assistant integration | Yes | Free | 4.8 |
| Automation Studio | Studio-style HA editor | Windows, macOS, Linux (browser) | Yes | Free | 4.5 |
| Visual Studio Code | Editor with the HA extension | Windows, macOS, Linux | Yes | Free | 4.8 |
1. Home Assistant — Best base editor and blueprint exchange
Home Assistant ships the new visual automation editor, the blueprint importer, and the “Blueprint Exchange” link that jumps straight to the community forum’s directory. For most households the base editor is enough on its own, and the 2026.7 changes narrow the gap between YAML and the visual flow further.
Where it falls short: authoring complex blueprints from scratch still touches YAML for edge cases. Testing an automation without triggering the device is manual.
Pricing:
- Free and open source.
Platforms: Home Assistant OS, Container, Supervised, Core
Download: home-assistant.io
Bottom line: the starting point, and often the finish line.
2. Node-RED — Best visual flow-based automation
Node-RED runs as a Home Assistant add-on and gives a flow-based canvas for automations that outgrow the built-in editor. Multi-branch logic, delays, and stateful nodes are easier to reason about visually than in YAML.
Where it falls short: learning curve is real, and the flow model is different from blueprints. Some households run both, with Node-RED for complex flows and blueprints for shared automations.
Pricing:
- Free and open source.
Platforms: Home Assistant add-on; standalone on Windows, macOS, Linux
Download: nodered.org
Bottom line: the pick when an automation has too many branches for a blueprint.
3. n8n — Best cross-service automation on top
n8n is a general-purpose workflow automation tool that speaks Home Assistant fluently through its integration. It shines when an automation crosses Home Assistant and a couple of external services (Notion, Slack, Google Sheets, calendar).
Where it falls short: overkill for automations that live entirely inside HA. Runs as a separate service, not an HA add-on.
Pricing:
- Free self-hosted (community edition).
- n8n Cloud subscription for a hosted version.
Platforms: Windows, macOS, Linux, Docker
Download: n8n.io
Bottom line: the answer when a Home Assistant event should trigger a Slack message and a Notion row.
4. AppDaemon — Best for Python automations that outgrow YAML
AppDaemon runs Python automations against Home Assistant’s state machine. For anyone who has written a “wait five minutes after door closes unless motion is detected” rule three different ways in YAML and hated all of them, this is the escape hatch.
Where it falls short: Python is not the target audience for most HA users. Blueprints do not translate directly to AppDaemon apps.
Pricing:
- Free and open source.
Platforms: Home Assistant add-on; standalone on Windows, macOS, Linux
Download: appdaemon.readthedocs.io
Bottom line: the pick when a specific automation demands more than YAML gives.
5. Blueprint Exchange — Best community catalogue
Blueprint Exchange is the community forum area where blueprints get shared and rated. It is not a stand-alone app, but treating it like one, bookmarked, browsed weekly, filtered by category, pays off for anyone starting from templates rather than from scratch.
Where it falls short: community-driven quality varies. Some blueprints are lovingly maintained; some abandonware.
Pricing:
- Free.
Platforms: Web
Download: community.home-assistant.io/c/blueprints-exchange/53
Bottom line: the first stop before writing a new blueprint by hand.
6. HACS — Best package manager for blueprints and add-ons
HACS (Home Assistant Community Store) is the community package manager. Blueprints, custom integrations, custom Lovelace cards, and themes install through a single UI. Updates are handled in one place.
Where it falls short: requires initial setup. Some HA maintainers prefer to install integrations by hand.
Pricing:
- Free.
Platforms: Home Assistant integration
Download: hacs.xyz
Bottom line: the “apt-get for HA” every household ends up installing.
7. Automation Studio — Best studio-style HA editor
Automation Studio is a browser-hosted editor that treats blueprints as first-class documents. It offers a side-by-side variable panel, a JSON schema view, and a dry-run mode that simulates trigger events.
Where it falls short: third-party; not officially blessed by the Home Assistant team.
Pricing:
- Free and open source.
Platforms: Web (runs against a HA instance)
Bottom line: the pick when the built-in editor feels cramped for authoring a complex blueprint.
8. Visual Studio Code — Best editor with the HA extension
Visual Studio Code with the Home Assistant extension turns any HA config into a versionable, autocompleted, schema-validated codebase. The extension knows the entities, services, and trigger schema. Combined with Git, this is what “properly maintained” HA config looks like.
Where it falls short: works on YAML, not the visual editor. Some households end up split-brained.
Pricing:
- Free.
Platforms: Windows, macOS, Linux
Download: code.visualstudio.com
Bottom line: the editor to standardise on for anyone who touches YAML at all.
How to pick the right one
If you are new: the built-in Home Assistant editor is the right start.
If you outgrew the built-in editor visually: Node-RED.
If your automation touches services outside HA: n8n.
If you want to write Python: AppDaemon.
If you want templates instead of writing from scratch: Blueprint Exchange, discovered through HACS.
If you want a studio-style editor: Automation Studio.
If you want your HA config in Git with schema completion: Visual Studio Code with the Home Assistant extension.
FAQ
What is a Home Assistant blueprint?
A blueprint is a shareable, parameterised automation. It exposes a set of inputs, a motion sensor, a light, a delay, and the person installing it fills in the specifics. Blueprints turn a personal automation into a template anyone can reuse.
Where do I find good blueprints?
The Blueprint Exchange on the Home Assistant forum is the main directory. HACS provides a package-manager interface over some blueprints too.
Do I still need YAML with the 2026.7 automation editor?
Less than before. The new editor handles a lot of what used to force a drop into YAML. Complex conditions and templating still touch YAML in most homes.
What is the best free tool for authoring blueprints?
The built-in Home Assistant editor for most people. Visual Studio Code with the HA extension for anyone who wants schema autocompletion and Git history.
Can I test a blueprint without triggering the real device?
The built-in editor exposes a “Run” button that fires the automation as if triggered. Automation Studio and Node-RED both offer dry-run modes that go further.