Notice

July 19, 2026 · View on GitHub

The component and platforms in this repository are not meant to be used by a user, but as a "blueprint" that custom component developers can build upon, to make more awesome stuff.

HAVE FUN! 😎

Why?

This is simple, by having custom_components look (README + structure) the same it is easier for developers to help each other and for users to start using them.

If you are a developer and you want to add things to this "blueprint" that you think more developers will have use for, please open a PR to add it :)

What?

This repository contains multiple files, here is a overview:

FilePurpose Documentation
.devcontainer.jsonUsed for development/testing with Visual Studio Code.Documentation
.github/renovate.jsonDependency update configuration for Renovate (enabled by default).Documentation
.github/_dependabot.ymlDependency update configuration for Dependabot (disabled, see "Dependency updates" below).Documentation
.github/ISSUE_TEMPLATE/*.ymlTemplates for the issue trackerDocumentation
custom_components/integration_blueprint/*Integration files, this is where everything happens.Documentation
CONTRIBUTING.mdGuidelines on how to contribute.Documentation
LICENSEThe license file for the project.Documentation
README.mdThe file you are reading now, should contain info about the integration, installation and configuration instructions.Documentation
requirements_dev.txtPython packages used for development/testing this integration (also installs lint tooling via requirements_lint.txt).Documentation
requirements_lint.txtPython packages used to lint this integration (installed by the Lint CI job).Documentation
requirements_common.txtPython packages common to CI and local dev, installed first so any pip upgrade completes before other dependencies (e.g. a modern pip).Documentation

Dependency updates

This template ships with configuration for two dependency update tools. Pick one and remove or disable the other:

  • Renovate (.github/renovate.json) is enabled by default.
  • Dependabot (.github/_dependabot.yml) is included but disabled — the _ prefix means GitHub ignores it. To use Dependabot instead, rename the file back to .github/dependabot.yml and delete .github/renovate.json.

How?

  1. Create a new repository in GitHub, using this repository as a template by clicking the "Use this template" button in the GitHub UI.
  2. Open your new repository in Visual Studio Code devcontainer (Preferably with the "Dev Containers: Clone Repository in Named Container Volume..." option).
  3. Rename all instances of the integration_blueprint to custom_components/<your_integration_domain> (e.g. custom_components/awesome_integration).
  4. Rename all instances of the Integration Blueprint to <Your Integration Name> (e.g. Awesome Integration).
  5. Run the scripts/develop to start HA and test out your new integration.

Next steps

These are some next steps you may want to look into: