Track and assess child developmental milestones based on ASQ-3 and Denver II standards. Use when user mentions development, milestones, motor skills, language, social skills, or cognitive development.
Child developmental milestone tracking and assessment based on ASQ-3 and Denver II standards, providing early warning for developmental delays.
User Input → Parse Operation Type → Read Child Information → Calculate Age → Determine Assessment Items → Generate Assessment Report → Save Data
| Input | action | domain |
|---|---|---|
| record | record | all(default)/gross/fine/language/social/cognitive |
| check | check | - |
| milestone |
| milestone |
| Optional: specify domain |
| delay | delay | - |
| history | history | - |
| Input Keywords | domain |
|---|---|
| gross motor | gross |
| fine motor | fine |
| language | language |
| social | social |
| cognitive | cognitive |
Child profile not found
Please set child basic information first:
/profile child-name Xiaoming
/profile child-birth-date 2020-01-01
/profile child-gender male
birthDate = profile.child_birth_date
today = new Date()
ageMonths = (today - birthDate) / (30.44 * 24 * 60 * 60 * 1000)
// Prematurity correction (<37 weeks, correct until 2 years)
if gestational_age < 37 && ageMonths <= 24:
correctedAgeMonths = ageMonths - (40 - gestational_age) * 4