Your AI agent app has traction. But users want it available without opening a phone — always-listening on a desk, clipped to a shirt, a button that means "I'm talking to you now." This guide is the technical playbook for that journey.

This is the moment most software teams go wrong. They assume hardware is just a container for their software — pick a chip, 3D-print a case, ship it. The graveyard of AI hardware (Humane, Rabbit, dozens of Kickstarter ghosts) proves otherwise. But it doesn't have to be that way. Plaud Note crowdfunded over $3 million and hit $10M+ monthly revenue by Black Friday 2025. The Friend pendant sold out its first batch. Ray-Ban Meta shipped 7 million units. Each started as an insight about what users wanted to hold in their hands.

Step 1: Decide Where the AI Runs

This is the single most important architectural decision you'll make, and it determines everything downstream: BOM cost, battery life, thermal design, form factor, and even your business model.

Option A: Cloud-Only (Thin Client)

Your hardware is essentially a microphone, a Bluetooth SoC, a battery, and a button. Audio is streamed to your cloud API, where the LLM runs.

  • What's inside: Nordic nRF52810 ($2-4) or similar BLE SoC, MEMS microphone ($0.50-1), small battery, minimal enclosure. Total BOM: $8-15.
  • Pros: Cheapest hardware. Longest battery life (days, not hours). Easy software updates — your agent improves without firmware pushes.
  • Cons: 200-500ms latency on every interaction. Requires always-on internet. You pay API inference costs per query, which scale with users.
  • Who this works for: Audio recording devices (Plaud Note, Omi pendant), companion devices that pair with a phone.

Option B: Hybrid (Edge Sensing + Cloud Intelligence)

The device handles wake-word detection, voice activity detection (VAD), noise reduction, and possibly local speech-to-text on an edge SoC. When the user asks a complex question, audio or text is sent to the cloud LLM.

  • What's inside: ESP32-S3 ($1.50-3) or Realtek RTL8722CSM ($3-5) for edge processing, MEMS microphones, Bluetooth/WiFi radio, moderate battery. Total BOM: $15-35.
  • Pros: Fast wake response (sub-100ms). Privacy-preserving — raw audio never leaves the device unless the user activates it. Moderate cost.
  • Cons: Dual firmware complexity. More BOM components to source and test. Still needs internet for full agent capability.
  • Who this works for: AI pendants, smart recorders, wearables with conversational interfaces. This is the architecture Plaud Note, Friend, and most 2026 AI hardware actually use.

Option C: Full On-Device Inference

Your device runs a quantized model locally on an NPU-equipped SoC. No cloud required for inference. Zero-latency, fully private AI.

  • What's inside: Rockchip RK3588S ($25-40) with 6 TOPS NPU, or Qualcomm Snapdragon Wear Elite ($15-30, requires volume commitment), plus 4-8GB RAM, thermal management, larger battery. Total BOM: $35-80+.
  • Pros: Zero cloud latency. Full privacy. No per-query API costs. Works offline.
  • Cons: Highest BOM cost. Thermal management becomes a real engineering challenge. Battery life measured in hours. Model updates require firmware pushes.
  • Who this works for: Premium devices with specific privacy or latency requirements, robotics, enterprise devices. Most consumer AI hardware does NOT need this.

Step 2: Select Your SoC

Once you've chosen your architecture, chip selection narrows quickly. Here's the 2026 landscape for consumer AI hardware.

The Practical Decision Framework

  • Thin-client wearable (Option A): You need a Bluetooth SoC, not an AI chip. The Nordic nRF52810 family is the industry standard — it's what Plaud Note uses for its Bluetooth connection. At $2-4 per chip in moderate volumes, it's hard to beat.
  • Local sensing (Option B): The ESP32-S3 from Espressif is the default choice. At $1.50-3, it includes WiFi, Bluetooth, and enough processing power for wake-word detection. If you need better audio codec integration, the Realtek RTL8722CSM adds an onboard audio codec, WiFi, and Bluetooth in a single $3-5 chip — this is what Plaud Note uses for its core processing.
  • On-device models (Option C): The Rockchip RK3588S offers 6 TOPS NPU performance at $25-40 and can run a quantized 7B model. For wearables, the Qualcomm Snapdragon Wear Elite (announced MWC 2026) offers dual NPUs at sub-1W power — but Qualcomm requires volume commitments and NDAs. For prototyping, NVIDIA Jetson Thor developer kits ($3,499) demonstrate what's possible — 1,035 TOPS.

What Plaud Note Actually Uses (Real Teardown)

ComponentPartFunctionEst. Cost
Bluetooth SoCNordic nRF52810BT 5.0 connection to phone$2-3
Main SoCRealtek RTL8722CSMWiFi, BT, audio codec, app logic$3-5
Flash (firmware)Puya PY25Q32HB (32Mbit)Stores firmware configuration$0.30
StorageLongsys FEMDNN064G-A3A55 (64GB)Stores recorded audio$3-5
Microphones2× MEMS (S3182) + 1× bone conductionAudio capture + call recording$2-4
BatteryZWD 400mAh (3.8V)Power$1-2
HapticsLinear vibration motor (7mm)Recording feedback$0.50
EnclosureCNC aluminumProduct housing$3-8
Total estimated BOM$15-30

Plaud sells for $159-179. That's roughly 5-6x BOM — exactly the ratio a healthy hardware product needs. The device uses a hybrid architecture: local audio capture and storage on-device, AI transcription and summarization in the cloud.

Step 3: Define Your Form Factor

Form factor isn't a design decision. It's a use-case decision. The question isn't "what shape should our device be?" — it's "what is the user doing when they interact with our agent?"

Form factorInteraction modeBattery targetKey constraint
Pendant / pinAlways-present, hands-free1-3 daysWeight (<30g), water resistance
Card / wallet insertOn-demand, deliberate1-2 weeksThinness (<5mm), MagSafe integration
Desk deviceAmbient, voice-activatedAlways plugged inSpeaker quality, microphone array
WristbandContinuous monitoring1-2 daysSkin contact, sweat resistance
Glasses / wearableAlways-on vision/audioFull dayWeight distribution, heat near skin

The form factor rule: Your device must be usable with zero friction at the moment of need. If the user has to find it, turn it on, and wait for it to connect before they can interact, you've already lost.

Step 4: Build Your Prototype (2-4 Weeks, $500-3,000)

You don't need a factory to build your first hardware prototype. You need a dev board, a 3D printer, and a weekend.

  • Week 1 — Hardware Breadboard: Order an ESP32-S3 dev kit ($8-15), a MEMS microphone breakout ($3-5), a small speaker or buzzer ($2-3), and a battery with a charging module ($5-10). Wire them together. Flash your agent's client code. Prove your agent can receive audio, send it to your cloud API, and play back a response.
  • Week 2 — PCB Design: Design a custom PCB in KiCad (free) or Altium. For your first PCB, keep it simple: 2-layer, standard FR-4. Upload Gerber files to JLCPCB — 5 boards for $2, delivered in 24-48 hours. SMT assembly for 5 boards with your BOM: $200-400.
  • Week 3-4 — Enclosure and Integration: 3D-print your enclosure. Send an STL file to any Shenzhen printing shop via WeChat, pick up the part next morning for $15-50. Iterate on fit and feel. If you need metal, CNC machining costs $80-150 per part with 3-4 day turnaround.

At this point you should have 3-5 functional prototypes that look and feel like real products. This is your POC (Proof of Concept).

Step 5: From Prototype to Production

EVT (Engineering Validation Test) — 3-4 weeks, $4,000-12,000

Design your production PCB: 4-layer, proper SMT components (0402 minimum), test points for production-line testing. Get 10-30 units assembled by a contract manufacturer. CNC-machine your enclosure in the final material. Test everything: audio quality, battery life, thermal performance, RF range.

DVT (Design Validation Test) — 6-10 weeks, $15,000-35,000

Cut aluminum soft molds ($2,000-8,000 per part). Produce 50-100 units. Run EMC pre-scanning ($1,500-2,500). This is where you discover that your microphone placement picks up too much handling noise, or your battery dies after 6 hours instead of 12.

PVT (Production Validation Test) — 4-8 weeks, $30,000-80,000+

Steel production molds ($6,000-20,000+). 200+ units on a real assembly line. Full packaging. This is your dress rehearsal. If PVT units pass, you're ready for mass production.

Step 6: Don't Forget the Software Side

Your hardware is only half the product. The other half is the firmware, the cloud API, the mobile app, and the OTA (over-the-air) update system.

  • Firmware — HAL: Drivers for your SoC, microphone, speaker, battery, buttons. ESP-IDF (ESP32) or Nordic nRF SDK (nRF52) does the heavy lifting.
  • Firmware — Application layer: Your agent's client logic — wake word detection, audio capture, encoding, cloud API calls, response handling.
  • Firmware — OTA update system: Implement dual-bank OTA. Download new firmware to a spare partition, verify checksum, swap on reboot. If the new firmware crashes, auto-rollback.
  • Cloud API: Audio streaming (WebSocket or gRPC, not REST), LLM inference, user auth and device pairing, conversation history, rate limiting.

Budget $0.01-0.05 per interaction for cloud API costs if you're using commercial LLM APIs. At 50 interactions per day per user, that's $0.50-2.50 per user per month — which must be factored into your pricing model.

The Budget Reality Check

PhaseTimeBudget
POC (dev board + 3D print)1-2 weeks$300-1,500
EVT (custom PCB + CNC enclosure, 10-30 units)3-4 weeks$4,000-12,000
DVT (soft tooling + EMC, 50-100 units)6-10 weeks$15,000-35,000
PVT (hard tooling + pilot run, 200+ units)4-8 weeks$30,000-80,000+
FCC + CE certification6-10 weeks (parallel)$15,000-40,000
Total, concept to pilot production4-6 months$70,000-120,000

These are Shenzhen prices with an experienced local partner. If you're doing this from San Francisco without on-the-ground support, double the timeline and triple the cost.

"Your AI agent doesn't need a body. It needs a reason to have one. Figure out the reason first — the hardware follows."

Ready to give your agent a body?

From chip selection and PCB design to factory selection and mass production in Shenzhen.

Whether you have a working prototype or just a hypothesis about what your users want to hold, we can map the path forward.

Submit Your Idea
All insights Submit a project need