#!/usr/bin/env bash
# Integrated daily routine script for the Morning Start Protocol
set -euo pipefail

COMMAND="${1:-morning}"

case "$COMMAND" in
    "health")
        bash scripts/dev/morning-health-check
        ;;
    "morning")
        echo "=== Quick Morning Routine ==="
        bash scripts/dev/morning-health-check
        echo ""
        echo "Check docs/MORNING-START-PROTOCOL.md for details."
        ;;
    "morning-full")
        echo "=== Full Morning Start Protocol ==="
        echo "1. Physical & Mental Readiness (2 min)"
        echo "2. Context Restoration (3 min)"
        echo "3. Automated Health Check (Running...)"
        bash scripts/dev/morning-health-check
        echo "4. Manual Maintenance & Verification (Check docs/MORNING-START-PROTOCOL.md)"
        echo "5. Priority MoSCoW Top 3 (3 min)"
        echo "6. Team Synchronization (2 min)"
        echo "7. Cognitive Warmup (2 min)"
        echo "8. Launch Deep Work (1 min)"
        ;;
    *)
        echo "Usage: ./scripts/dev/daily-routine {health|morning|morning-full}"
        exit 1
        ;;
esac
