Phase 1 MVP in development  ·  Apache 2.0

Trust infrastructure
for the robotic home.

HORO gives every robot, device, and person in your home a verified identity, auditable permissions, and a tamper-proof record — so autonomy never comes at the cost of accountability.

Join the Waitlist Explore the Platform
scroll
4
Core capability layers
2027
EU AI Act deadline we help you meet
<1ms
Permission evaluation target
0
Cloud dependencies required

The Problem

Two worlds that cannot talk to each other. Until now.

Smart home standards like Matter were built for human-operated devices. Robot platforms like ROS 2 were built for research labs. Neither was built for a world where a cleaning robot, a delivery drone, and your front door lock must make real-time trust decisions together.

🏠

Matter / Home Assistant

Great for humans controlling lights. Zero concept of robot actors or autonomous tasks.

🤖

ROS 2 / Robot SDKs

Powerful for motion planning. No native identity model or home permission system.

⚖️

EU AI Act 2027

Mandatory audit trails and accountability for autonomous systems. No existing solution covers the home.

🔐

Identity Gaps

Who authorized the robot to enter the bedroom? No vendor today can answer that question.

The Platform

One middleware.
Four pillars of trust.

HORO is a Rust-native middleware layer that runs on-premise in your home or building. No cloud dependency. No vendor lock-in.

🪪

Identity

Every actor — robot, device, person, or third-party service — gets a decentralised identifier (DID) and verifiable credentials. Cryptographically signed. Offline-first.

did:key · Ed25519 · VCs
🛡️

Permissions

Attribute-based access control with time-limited capability tokens, per-room rules, and human-in-the-loop approval flows. Works in <1 ms without any network call.

ABAC · Capability Tokens · OPA-ready
📋

Audit

Every permission grant, denial, and action is written to an append-only Merkle-tree log. Tamper-evident. Exportable. Ready for regulatory review on demand.

Merkle-tree · Anomaly detection

Orchestration

Task state machines with resource locking ensure two robots never conflict over a shared space. Emergency Stop broadcasts to all connected devices in milliseconds.

State machine · Emergency Stop

Who It's For

Built for every stakeholder
in the intelligent home.

HORO serves the full ecosystem — from the engineers shipping the hardware to the bodies writing the rules.

Robot Companies

Ship compliant robots, faster.

Integrate HORO's SDK once and inherit identity, permissions, and audit trails across every deployment — without rebuilding them per customer.

  • Single SDK integration for home & commercial deployments
  • Capability token system replaces fragile API keys
  • Pre-built OPA policies: guest (4 h), delivery (10 min), cleaning (2 h)
  • Emergency Stop broadcast to all connected devices
  • ROS 2 adapter roadmap for native integration
Smart Home Suppliers

Add robot-readiness to your ecosystem.

Your Matter and Home Assistant integrations are human-centric. HORO extends them to cover autonomous actors — without breaking anything you've already built.

  • Protocol adapter trait — wrap any device in minutes
  • Per-room access policies with time windows
  • Unified device registry across protocols
  • gRPC + REST APIs — integrates with existing toolchains
  • SQLite by default; Postgres for enterprise
Regulators & Policy Teams

Accountability built in, not bolted on.

HORO is designed from the ground up to make the EU AI Act and Machinery Regulation 2027 tractable for the residential and light-commercial market.

  • Tamper-evident Merkle-tree audit log
  • On-demand export for regulatory inspection
  • Human override and revocation at any time
  • Open source — fully auditable by third parties
  • Apache 2.0 license — no proprietary black box
Regulation-Ready

The EU AI Act clock is ticking.
HORO gives you a head start.

From August 2026, high-risk autonomous systems in the EU must demonstrate traceability, human oversight, and transparency. HORO makes those obligations addressable at the middleware layer — before your product ships, not after.

EU AI Act (2024/1689) Machinery Regulation 2027 GDPR-compatible audit exports ISO 27001 alignment Human-in-the-loop override Zero-cloud option Tamper-evident logging

Open Source

Built in public.
Auditable by design.

HORO is Apache 2.0 licensed and written in Rust for memory safety and sub-millisecond performance on the permission-critical path. The codebase is structured for auditability — not obfuscation.



🦀 Written in Rust — memory-safe, no GC pauses on the permission path
📡 gRPC + REST APIs via tonic and axum on a shared tokio runtime
🔑 Ed25519-signed capability tokens — no PKI infrastructure required
🌐 Optional OPA/Rego policy engine for enterprise-grade policy-as-code
policies/defaults.rego
# Pre-built HORO policy templates
# Drop-in rules for common scenarios

package horo.defaults

# Delivery robot: 10 min, entrance only
delivery_window[actor_id] {
  actor := data.actors[actor_id]
  actor.role == "delivery"
  actor.zone == "entrance"
  time.now_ns() < actor.expires_at
}

# Cleaning robot: 2 h, no bedrooms
cleaning_allowed {
  input.role == "cleaning"
  input.room != "bedroom"
  input.duration_mins <= 120
}

# Guest: 4 h, common areas only
guest_access {
  input.role == "guest"
  input.area == "common"
  input.duration_hrs <= 4
}

Early Access

Be first to shape
the robotic home standard.

We're opening early access to a select group of robot manufacturers, smart home suppliers, and regulatory partners. Join the waitlist.

No spam. No selling your data. We'll reach out when early access opens.

✓   You're on the list. We'll be in touch soon.