# AI recommends standard sleep hygiene for delayed sleep phase disorder without assessing circadian rhythm or light exposure

- **ID:** `mental-health/ai-recommends-sleep-hygiene-for-delayed-phase-without-assessment`
- **Domain:** mental-health
- **Category:** data_error
- **Error Code:** `SLEEP-DSPD-001`
- **Verification:** ai_generated
- **Fix Rate:** 83%

## Root Cause

Delayed sleep phase disorder (DSPD) is a circadian rhythm disorder, not a sleep hygiene issue; standard advice like 'go to bed earlier' can worsen the condition by creating sleep effort and anxiety.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| llama-3.1-70b-instruct | active | — | — |
| gpt-4o-2024-05-13 | active | — | — |
| claude-3-sonnet-20240229 | active | — | — |

## Workarounds

1. **Use chronotherapy: gradually advance bedtime by 15-30 minutes every 2-3 days. Track with a sleep log. Code example: from datetime import timedelta; new_bedtime = current_bedtime - timedelta(minutes=15); print(f'New bedtime: {new_bedtime}')** (80% success)
   ```
   Use chronotherapy: gradually advance bedtime by 15-30 minutes every 2-3 days. Track with a sleep log. Code example: from datetime import timedelta; new_bedtime = current_bedtime - timedelta(minutes=15); print(f'New bedtime: {new_bedtime}')
   ```
2. **Recommend bright light therapy (10,000 lux) within 30 minutes of waking for 20-30 minutes. Use a light box like Carex Day-Light Classic. Avoid bright light (especially blue light) 2 hours before desired bedtime.** (85% success)
   ```
   Recommend bright light therapy (10,000 lux) within 30 minutes of waking for 20-30 minutes. Use a light box like Carex Day-Light Classic. Avoid bright light (especially blue light) 2 hours before desired bedtime.
   ```
3. **Screen for comorbid conditions: depression, ADHD, and bipolar disorder are commonly comorbid with DSPD. If mood symptoms are present, refer to a sleep specialist before starting any intervention.** (90% success)
   ```
   Screen for comorbid conditions: depression, ADHD, and bipolar disorder are commonly comorbid with DSPD. If mood symptoms are present, refer to a sleep specialist before starting any intervention.
   ```

## Dead Ends

- **Advising the user to 'just go to bed earlier' regardless of their natural sleep time** — DSPD involves a shifted circadian clock; trying to sleep before the body's natural sleep onset leads to lying awake, creating conditioned insomnia and sleep anxiety (85% fail)
- **Recommending melatonin at bedtime** — Melatonin is most effective when taken 2-3 hours before the desired sleep time, not at bedtime. Taking it at the wrong time can actually phase-delay the clock further (70% fail)
- **Suggesting caffeine avoidance in the evening only** — While helpful, this does not address the core circadian misalignment; users with DSPD may need light therapy in the morning and light avoidance in the evening (60% fail)
