Most voice assistants still work the same way: your device records audio, sends it to a server, and waits for an answer. Matic Robots shipped a home robot on August 13, 2026 that skips that round trip entirely. The new feature, called Cues, lets you point at a spill and say "Hey Matic, clean this" — and the robot hears you, locates the gesture in 3D, and navigates there, with every step of that pipeline running on a single onboard chip rather than in the cloud.
Matic is a consumer product — this isn't an explainx.ai product review. What's worth studying here, for anyone building agentic or on-device AI systems, is the edge AI architecture underneath the demo: what it actually takes to run voice, vision, and navigation entirely on-device, in real time, on hardware small enough to fit inside a home robot.
What Cues actually does
Per Matic's own launch thread, three commands anchor the feature:
| Command | What happens |
|---|---|
| "Hey Matic" | The robot localizes your voice, turns, and looks at you |
| "Hey Matic, follow me" | The robot tracks and follows you room to room as you walk |
| "Hey Matic, clean this" (while pointing) | The robot sees the point gesture in 3D, locates the target, and navigates to it |
| "Hey Matic, go clean the living room" | The robot uses its existing house map to navigate to a named room and clean it |
Matic says the system understands 75 languages and is simple enough for both a 5-year-old and an 80-year-old to use without a manual.
The on-device hardware stack
Matic published a teardown-style graphic breaking down the sensor and compute package that makes this possible:

- 5 × RGB-IR cameras — provide 3D perception and can see in the dark using infrared, which is what makes gesture-pointing and obstacle avoidance work at night without visible light.
- 3 × IR projectors — project structured infrared light so the robot can build depth maps in pitch-black rooms "without disturbing families at night," per Matic's own labeling.
- Nvidia Jetson Orin Nano (4GB) — the onboard compute board running the actual inference: wake-word detection, speech understanding, 3D scene parsing, and path planning, all locally.
The Jetson Orin Nano is Nvidia's small-footprint edge AI module, designed specifically for always-on robotics and vision workloads that need real inference performance without a server rack behind them. Seeing it drive a full multimodal pipeline — audio, vision, spatial reasoning, and navigation simultaneously — in a consumer device is a useful real-world data point for anyone estimating what edge hardware can actually carry today, distinct from Nvidia's own marketing benchmarks.
What's likely happening inside the pipeline
Matic hasn't published its model architecture, so the following is informed inference based on how comparable on-device voice-and-vision systems are typically built, not a confirmed breakdown of Matic's own stack. A system like this almost certainly separates the always-on, low-power stage from the heavier, triggered stage: a small, always-listening wake-word detector (a model tiny enough to run continuously without meaningfully draining power) watches for "Hey Matic" and only hands off to a larger speech-understanding model once triggered — the same two-stage pattern used by most on-device voice assistants, because running a full speech model continuously would be far too power-hungry for a battery-powered robot. Once triggered, a compact automatic speech recognition (ASR) model transcribes the command locally, while the vision stack — likely a lightweight object/gesture detection model plus depth estimation from the IR cameras and projectors — locates the pointed-at target in the room's existing 3D map. The "existing house map" mentioned in Matic's own demo implies a persistent SLAM (simultaneous localization and mapping) system that runs continuously in the background regardless of whether a voice command is active, since the robot needs to know its own position and the room layout to navigate at all, not just when responding to "Hey Matic."
The privacy claim is architectural, not just policy
Matic's stated privacy pitch: "Matic works on Nvidia Jetson Orin Nano so you never have to trade your family's privacy for a clean floor. Every data Matic collects is processed on the device and is deleted and discarded in real-time."
That's a materially different claim from "we don't sell your data" or "we delete it after 30 days." If accurate, it means raw audio and camera frames never leave the device in the first place — there's no server-side copy to delete, breach, or subpoena, because processing happens locally and the underlying frames are discarded once inference completes. This is the same category of design decision explainx.ai covered with Liquid AI's on-device agent models and browser-embedded models running entirely client-side — push inference to the edge, and privacy becomes a property of the system's architecture rather than a policy you have to trust a company to honor. It's worth noting this is Matic's own claim, not an independently audited one — but the architectural approach itself (on-device inference, no raw-data transmission) is verifiable in principle in a way a pure privacy policy isn't.
Reception and what it signals about physical AI demand
The launch thread crossed 10.1 million views, with unprompted testimonials from Shopify CEO Tobi Lütke ("This thing is just incredible"), Sahil Bloom (whose son now "spills things intentionally" to trigger a Cues cleanup), and Lenny Rachitsky, whose 2.5-year-old reportedly counts Matic as part of the family. Matic says 13,000 families already use the base product, and it previously received a 10/10 rating from WIRED — a score the company says no other hardware product has received from the outlet in a decade.
Whatever you make of the marketing framing, the underlying signal is real: there's clear consumer pull for physical AI systems that respond to natural voice and gesture commands rather than an app interface, and Matic is one of a growing set of companies — alongside efforts like Nvidia's Cosmos physical-AI and edge stack and motion-generation work aimed at humanoid robots — betting that on-device, real-time multimodal AI is the actual unlock for robots people want in their homes, not just faster cloud inference.
Cloud voice pipeline vs. what Cues is doing
It's worth spelling out the tradeoff Matic is making explicitly, since it's the same one any team building a voice-controlled product has to weigh:
| Typical cloud voice assistant | Matic Cues (on-device) | |
|---|---|---|
| Where audio/video is processed | Remote server | Onboard Jetson Orin Nano |
| Requires internet connection | Yes | No (per Matic's claims) |
| Round-trip latency | Network + server processing time | Local inference only |
| Data leaves the device | Yes, by design | No, per Matic's claims |
| Works during a home internet outage | No | Yes, per Matic's claims |
| Model can be updated/improved centrally | Easily, in real time | Requires an over-the-air firmware/model update |
| Compute cost per query | Borne by the provider's servers | Borne once, in the device's hardware cost |
The last two rows are the real tradeoff cloud-first teams rarely have to make explicitly. A cloud model can be swapped or improved the moment a better one ships, with zero device-side changes — Matic instead has to ship model updates as firmware, and its inference quality is capped by whatever the Orin Nano can run, not whatever the state of the art happens to be that week. In exchange, it gets offline reliability, no per-query cloud cost, and the privacy properties described above. Neither approach is strictly better; they're optimized for different products. A voice assistant embedded in something people expect to keep working without Wi-Fi, in their home, indefinitely, is a strong case for leaning toward the edge side of that tradeoff.
What this teaches builders
For anyone designing an on-device or agentic AI system, Matic's Cues architecture is a compact case study in a few recurring constraints:
- Low-latency, always-on wake-word detection has to run continuously without draining power or requiring a cloud connection — the same problem voice-first apps and always-on agents face.
- Multimodal fusion at the edge — combining audio localization with 3D visual gesture recognition — is harder than running either modality alone, and needs a compute budget that fits a small board like the Orin Nano.
- Offline reliability matters for trust. A robot (or agent) that only works with an internet connection breaks in exactly the moments — a home Wi-Fi outage, a spotty connection — when a user most wants it to just work.
- Privacy-by-architecture beats privacy-by-policy when it's achievable. If your system can avoid transmitting raw sensor data at all, that's a stronger guarantee than any retention policy layered on top of cloud processing.
Related on explainx.ai
- Build a Personal AI System: Local-First Workflow Guide
- Liquid AI's LFM2.5 2.6B: On-Device Agent Models
- Nvidia SIGGRAPH 2026: Cosmos, Edge, and Physical AI
- Nvidia MotionBricks: Real-Time Motion for Unitree G1
- Gemma 4 Open Duck: A Mini On-Device Robot
- Ternlight: A 7MB Browser-Embedded AI Model
- Official source: Matic Robots · Nvidia Jetson Orin Nano
Product claims (privacy architecture, language count, install base, review scores) reflect Matic Robots' own August 2026 launch materials as of publication and have not been independently verified by explainx.ai. Treat specifications as the manufacturer's stated design, not a third-party audit.
