AI Assistant Extracts Apple Watch Sleep Data for Clinic: 5 Gotchas

A developer spent a Sunday getting an AI assistant to convert six months of Apple Watch sleep data into a CSV matching a sleep clinic's intake form format. The process revealed five critical data pitfalls that any AI health data pipeline must handle.
Key Issues Found
- In-bed vs actual sleep: The watch logs an "in bed" window and separate sleep-stage records (core/deep/REM). The assistant initially reported the in-bed window as total sleep (e.g., 7 hours instead of 3). Correct total is the sum of sleep stages, not time in bed.
- Timezone offsets: Raw Apple Health export timestamps are in UTC. Without conversion to local time, bedtimes appeared at 7am. After conversion, some nights shifted to a different calendar date.
- Off-by-one dates: Apple's weekly/monthly summary emails date a night by the morning you woke up. The clinic form wants the night you went to bed. The assistant trusted the email's date, causing half the rows to be a day off.
- Zero-sleep nights vanished: Nights with zero asleep time have no "asleep" records, so the assistant skipped them. The monthly summary explicitly flags them as 0.0 hours — these are clinically important. The fix: include them at zero.
- Invented HR/HRV values: For nights missing morning HR or HRV readings, the assistant filled in a value (carried over from another day). For a medical form, this is unacceptable. The fix: write
N/Aand never estimate.
Cool Feature: Text Message Integration
The developer had texted a friend about sleep data (e.g., "watch says 2 hrs 40 min last tuesday"). The assistant matched these comments to the correct night and added them to the notes column. However, relative dates like "last tuesday" tripped it up at first — it anchored to the present day instead of the date the text was sent.
Final CSV
After fixing overcounting sleep, timezone conversion, using bed dates, including zero-sleep nights, and stopping invented HR values, the CSV matched the clinic's format exactly — one row per night with columns: bedtime, time in bed, total sleep, awakenings, efficiency, resting HR, HRV, notes.
Practical Takeaways
- Always verify the distinction between "in-bed" and "asleep" in any sleep tracking export — the difference is large.
- Handle timezone conversion explicitly and check for date boundary shifts.
- Include zero-value nights; they are often the most clinically relevant.
- Never allow AI to impute missing health metrics — use
N/A. - Cross-referencing text messages with sensor data is powerful but requires correct temporal anchoring.
📖 Read the full source: r/openclaw
👀 See Also

Automated QA and Testing with AI: A New Era for Software Testing
antirez describes using LLM agents for automated QA by writing a markdown file that instructs the agent to perform manual testing on new releases. Applied to DwarfStar and Redis Arrays, this approach raises software quality without compromising on thoroughness.
Claude + MCP Browser: User Reports Supercharged Web Access
A Claude user explains how hooking Claude to an external browser via MCP allowed it to navigate previously inaccessible sites, and wonders if Claude can use the browser's model tokens.

Claude User Shares 'Don't Manage My Feelings' Prompt for Direct Technical Feedback
A Claude user recommends setting a specific prompt in user preferences to reduce validation preamble and get more direct technical feedback. The prompt tells Claude to skip diplomatic phrasing and provide straightforward criticism on technical and creative work.

Skippy's Private LLM: How I Solved OpenClaw's Ollama Sub-Agent Timeout by Calling Ollama Directly
An OC COO's AI assistant bypasses OpenClaw's broken sub-agent system by calling a second Ollama instance directly via curl. No gateway, no event loop blocking.