"Put the watch in. It may not look like much, but for someone who wears one, it is really convenient."
What a Wrist Is For
A watch app is not a small phone app. It is the thing you can use while your other hand holds a bag, in the five seconds before a thought is gone. So the family's watch apps have one door: raise the wrist, tap the complication or press the Action Button, speak, and the capture is safe. No lists to browse, no settings to read, no keyboard, because typing on a wrist defeats the reason the app exists. The journal app's first watch view used a SwiftUI text field labelled "Speak", and on a real watch it opened the keyboard: a control whose label promised speech while the screen asked for typing. The dictation lesson in this track explains why SwiftUI cannot ask for the microphone there.
The Phone Is the Watch's Engine
The family's engines live on a private network the watch is not part of, and never will be. The App Group that ties the phone app to its extensions does not cross a pairing either: it is shared between processes on one device. So the watch does not talk to the engine at all. It hands its captures to the phone, the phone treats them like any other capture, and the phone's outbox takes them home. Every design choice in this track follows from that one hop: the watch keeps its own queue, the handoff is treated like a network send that can fail, and the capture carries the time it was spoken, not the time it arrived, because a phone that is off can take hours to receive it.
Surfaces Trusted at a Glance Must Not Overclaim
People read a watch in a glance and believe it. That makes stale or overconfident text worse here than anywhere else. The journal's watch view said "N waiting for the phone" when its queue was not empty and "Handed to the phone" otherwise, and on a fresh install, before a word had been spoken, it announced a handover that never happened. There are three facts, not two: something is waiting, something was delivered, and nothing has happened yet. The same reasoning keeps counts off complications, which refresh on the watch's schedule rather than when you capture, and it is why the phone's answer to the watch's ring matters: "waiting for the phone" and "the phone has it" should come from what the phone actually said.
What Stays on the Phone
Deciding what the watch does not do is most of the design. It holds no engine address and no PIN, because it never talks to the engine. It shows no history to browse and no settings to change; those belong to the phone, where there is room to read. It keeps no copy of the phone's data, because nothing on the wrist needs it. What remains is small enough to trust: a queue of words not yet handed over, a status line, and one way in. That smallness is also why the watch app ships inside the same TestFlight build as the phone app and costs almost nothing to maintain.