Skip to main content

EdgeLoom

CI License Python

An open toolchain for validating, patching, and translating smart-home edge drivers across platforms.

Smart-home hubs decide what a device is allowed to be. A lock that reports nine configurable attributes over Zigbee may surface two of them, because the stock driver's profile — the declared set of capabilities — never mentions the rest. The device is not the limit; the driver is. EdgeLoom is the toolchain for inspecting, rewriting, and checking those drivers.

The three tools do different jobs, but they all produce or consume the same artifact: a device profile. EdgeLoom's position is that this artifact should be a checked contract rather than a file each tool invents privately. So the schema sits at the centre, and edgeloom validate is the gate everything passes through.

flowchart TD
    subgraph inputs [Inputs]
        A["Stock SmartThings<br/>Edge driver"]
        B["Home Assistant<br/>instance"]
        C["Driver catalog<br/>(GitHub or local)"]
    end

    A --> P["edgeloom patch<br/><i>expose hidden attributes</i>"]
    B --> T["edgeloom translate<br/><i>project HA entities onto Edge</i>"]
    C --> D["edgeloom discover<br/><i>enumerate drivers + fingerprints</i>"]

    P --> S
    T --> S
    D -.->|"flags drivers with<br/>no mapping"| S

    S{{"schema/ v0.1<br/><b>profile · capability-map</b>"}}

    S --> V["edgeloom validate<br/><i>assurance gate, CI-ready</i>"]
    V --> O["Hub-installable driver<br/>with a checked profile"]

Because both paths converge on one schema, a profile rewritten by the patcher and a profile emitted by the translator are checked against identical rules — which is what makes validate an assurance layer and not just a linter.

Install

pip install edgeloom

From a checkout:

git clone https://github.com/edgeloom-oss/edgeloom.git
cd edgeloom
pip install -e ".[dev]"

Requires Python 3.11 or newer.

Commands

edgeloom patch      DRIVER MODEL MANUFACTURER [ATTRIBUTES]  Expose hidden device attributes
edgeloom translate  --ha-url URL --output DIR               Bridge Home Assistant to SmartThings
edgeloom discover   [--source github|local]                 Enumerate drivers and fingerprints
edgeloom validate   [PATHS...]                              Check artifacts against the schema

Patch a Zigbee lock so its language and auto-relock settings become visible, previewing first:

edgeloom patch auto_patch/zigbee-lock "YRD226 TSDB" Yale Language:AutoRelockTime --dry-run
edgeloom patch auto_patch/zigbee-lock "YRD226 TSDB" Yale Language:AutoRelockTime

The original driver is copied to <driver>-backup before anything is written, and restored automatically if any step fails.

Generate SmartThings Edge proxy artifacts for your Home Assistant entities:

export HA_TOKEN=...   # a long-lived access token
edgeloom translate --ha-url http://homeassistant.local:8123 --output ./generated_edge

Check every profile and capability map in a tree:

edgeloom validate .

validate exits non-zero when a document violates the schema, and also when it finds nothing to check — a silent pass over zero files would otherwise read as success.

Components

Path Component Command Documentation
auto_patch/ Edge driver patcher edgeloom patch docs/patching.md
translator/ Home Assistant bridge edgeloom translate translator/README.md
discovery/ Driver catalog scanner edgeloom discover docs/discovery.md
schema/ Published contracts edgeloom validate schema/

The translator began life as HA2ST-Translator, written by Chuxiong Wu, and was merged here with its history intact. That repository is now archived and redirects to this one.

Schema

Version 0.1 publishes two JSON Schemas (draft 2020-12):

  • schema/profile.schema.json — a device profile: the capabilities a driver exposes for one device, and the categories describing it.
  • schema/capability-map.schema.json — which hidden attributes a driver may surface, and the capability each binds to. Capability IDs must be namespaced, so a vendor attribute cannot silently claim a standard identifier.

auto_patch/capability-map.yaml is the live map for the drivers shipped here, and is validated in CI on every push.

Both schemas are versioned and shipped inside the installed package, so edgeloom validate works without a checkout.

Development

make install   # dependencies
make lint      # ruff
make test      # pytest

CI runs lint, the full test suite, edgeloom validate, and shellcheck on every push and pull request. See docs/development.md for the container workflow.

Roadmap

  • Expand the library of subdrivers and handler templates.
  • Broaden the capability map beyond Zigbee locks, switches, and sensors.
  • Grow the schema toward Matter and Home Assistant capability namespaces.
  • Native Windows validation (the Python patch path no longer needs bash).
  • Device reports from real hardware — see the device report template.

Security

Please report vulnerabilities privately. See SECURITY.md.

Patching a driver changes what a device exposes on your own hub. EdgeLoom is research tooling: review a diff before installing anything on a hub you depend on, and keep the backup it creates.

How to Cite

If this project aids your research, cite the following work:

@inproceedings{xu2025hiddenattributes,
  title     = {Discovering and Exploiting IoT Device Hidden Attributes: A New Vulnerability in Smart Homes},
  author    = {Xuening Xu and Chenglong Fu and Xiaojiang Du and Bo Luo},
  booktitle = {Proceedings of the ACM Conference on Computer and Communications Security (CCS)},
  year      = {2025}
}

Machine-readable metadata is in CITATION.cff.

Contributing

Bug reports, device reports, and pull requests are welcome. Start with CONTRIBUTING.md and the Code of Conduct. Changes are recorded in CHANGELOG.md.

License

Apache License 2.0 — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

edgeloom-0.1.0.tar.gz (66.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

edgeloom-0.1.0-py3-none-any.whl (66.5 kB view details)

Uploaded Python 3

File details

Details for the file edgeloom-0.1.0.tar.gz.

File metadata

  • Download URL: edgeloom-0.1.0.tar.gz
  • Upload date:
  • Size: 66.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for edgeloom-0.1.0.tar.gz
Algorithm Hash digest
SHA256 2cf6ff8693b55b8ef88e2de44b7600a2aaf6f6bb3067bebc2db432b73fe9cf41
MD5 9dbce102d4b34740153599a1319957a7
BLAKE2b-256 92a6984ba90b996c6a9763e70831016d24936d1e24a9819e5d37685fd1b550ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for edgeloom-0.1.0.tar.gz:

Publisher: release.yml on edgeloom-oss/edgeloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file edgeloom-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: edgeloom-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 66.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for edgeloom-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2dfd8f5ddc600fd4bec10d73ec05839d0320f9c5ca98d61270cb603e122d465e
MD5 f76986b4c5c76e1838d1a8be72bb8c5f
BLAKE2b-256 7c6ae8e8b94463cc8a51e05d0b11bff45b134d67f1c6aec5ca91b6ec742af8a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for edgeloom-0.1.0-py3-none-any.whl:

Publisher: release.yml on edgeloom-oss/edgeloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.1.1

2 files

This release

0.1.0 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page