Install
openclaw skills install health-auto-logAutomatically detect and log health data (weight, blood sugar, exercise) to AX3 system. Use when user sends health measurements via WhatsApp or other messagi...
openclaw skills install health-auto-logAutomatically detect health metrics from user messages and record them to AX3 Personal system. Supports weight, blood sugar, and exercise time tracking with flexible input formats.
Trigger this skill when user messages contain:
Use the record_health_data.py script to process any message:
python3 scripts/record_health_data.py "體重69.8公斤"
The script will:
Habit ID: 1
Unit: kg
Range: 40-200 kg
Supported formats:
體重69.8公斤69.8kg69.8 (plain number)Habit ID: 4
Unit: mg/dL
Range: 50-500 mg/dL
Supported formats:
血糖120120 mg/dLHabit ID: 2
Unit: minutes
Supported formats:
跑步機30分跑步30python3 scripts/record_health_data.py "<message>"ax3-personal.record_habit# Single metric
python3 scripts/record_health_data.py "體重69.8公斤"
# Output: ✅ 體重 69.8 kg 已記錄
# Multiple metrics in one message
python3 scripts/record_health_data.py "體重69.8公斤 血糖120"
# Output:
# ✅ 體重 69.8 kg 已記錄
# ✅ 血糖 120 mg/dL 已記錄
When a user sends a health-related message:
The script includes validation:
Python script that handles:
The script can be called directly or integrated into message handling workflows.