gitextract_hv5p3yxa/ ├── .claude/ │ ├── commands/ │ │ ├── ai.md │ │ ├── allergy.md │ │ ├── child-development.md │ │ ├── child-illness.md │ │ ├── child-mental.md │ │ ├── child-nutrition.md │ │ ├── child-safety.md │ │ ├── child-sleep.md │ │ ├── child-vaccine.md │ │ ├── cognitive.md │ │ ├── consult.md │ │ ├── copd.md │ │ ├── cycle.md │ │ ├── diabetes.md │ │ ├── diet.md │ │ ├── discharge.md │ │ ├── eye-health.md │ │ ├── fall.md │ │ ├── family.md │ │ ├── fitness.md │ │ ├── get-profile.md │ │ ├── goal.md │ │ ├── growth.md │ │ ├── hypertension.md │ │ ├── interaction.md │ │ ├── male-fertility.md │ │ ├── male-menopause.md │ │ ├── medication.md │ │ ├── menopause.md │ │ ├── mental-health.md │ │ ├── mood.md │ │ ├── nutrition.md │ │ ├── occupational-health.md │ │ ├── oral-health.md │ │ ├── polypharmacy.md │ │ ├── postpartum.md │ │ ├── pregnancy.md │ │ ├── prepare.md │ │ ├── profile.md │ │ ├── prostate-health.md │ │ ├── psych-assess.md │ │ ├── puberty.md │ │ ├── query.md │ │ ├── radiation-data.md │ │ ├── radiation.md │ │ ├── rehabilitation.md │ │ ├── report-instructions.md │ │ ├── report.md │ │ ├── save-report.md │ │ ├── screening.md │ │ ├── sexual-health.md │ │ ├── skin-health.md │ │ ├── sleep.md │ │ ├── specialist.md │ │ ├── surgery.md │ │ ├── symptom.md │ │ ├── tcm-constitution.md │ │ ├── travel-health.md │ │ └── vaccine.md │ ├── skills/ │ │ ├── ai-analyzer/ │ │ │ └── SKILL.md │ │ ├── emergency-card/ │ │ │ ├── SKILL.md │ │ │ ├── examples.md │ │ │ └── formats.md │ │ ├── family-health-analyzer/ │ │ │ └── SKILL.md │ │ ├── fitness-analyzer/ │ │ │ └── SKILL.md │ │ ├── food-database-query/ │ │ │ └── SKILL.md │ │ ├── goal-analyzer/ │ │ │ └── SKILL.md │ │ ├── health-trend-analyzer/ │ │ │ ├── SKILL.md │ │ │ ├── algorithms.md │ │ │ ├── data-sources.md │ │ │ ├── examples.md │ │ │ ├── templates/ │ │ │ │ ├── charts-config.js │ │ │ │ ├── custom-styles.css │ │ │ │ └── report-template.html │ │ │ └── test-data/ │ │ │ └── profile-mock.json │ │ ├── mental-health-analyzer/ │ │ │ └── SKILL.md │ │ ├── nutrition-analyzer/ │ │ │ └── SKILL.md │ │ ├── occupational-health-analyzer/ │ │ │ └── SKILL.md │ │ ├── oral-health-analyzer/ │ │ │ └── SKILL.md │ │ ├── rehabilitation-analyzer/ │ │ │ └── SKILL.md │ │ ├── sexual-health-analyzer/ │ │ │ └── SKILL.md │ │ ├── skin-health-analyzer/ │ │ │ └── SKILL.md │ │ ├── sleep-analyzer/ │ │ │ └── SKILL.md │ │ ├── tcm-constitution-analyzer/ │ │ │ └── SKILL.md │ │ ├── travel-health-analyzer/ │ │ │ └── SKILL.md │ │ └── weightloss-analyzer/ │ │ └── SKILL.md │ └── specialists/ │ ├── README.md │ ├── cardiology.md │ ├── consultation-coordinator.md │ ├── dermatology.md │ ├── endocrinology.md │ ├── gastroenterology.md │ ├── general.md │ ├── geriatrics.md │ ├── gynecology.md │ ├── hematology.md │ ├── nephrology.md │ ├── neurology.md │ ├── oncology.md │ ├── orthopedics.md │ ├── pediatrics.md │ ├── psychiatry.md │ ├── respiratory.md │ └── urology.md ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.en.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── SECURITY.en.md │ └── SECURITY.md ├── .gitignore ├── AI_FEATURES_IMPLEMENTATION_SUMMARY.md ├── LICENSE ├── README.md ├── README.zh-CN.md ├── commands/ │ ├── ai.md │ ├── allergy.md │ ├── child-development.md │ ├── child-illness.md │ ├── child-mental.md │ ├── child-nutrition.md │ ├── child-safety.md │ ├── child-sleep.md │ ├── child-vaccine.md │ ├── cognitive.md │ ├── consult.md │ ├── copd.md │ ├── cycle.md │ ├── diabetes.md │ ├── diet.md │ ├── discharge.md │ ├── eye-health.md │ ├── fall.md │ ├── family.md │ ├── fitness.md │ ├── get-profile.md │ ├── goal.md │ ├── growth.md │ ├── hypertension.md │ ├── interaction.md │ ├── male-fertility.md │ ├── male-menopause.md │ ├── medication.md │ ├── menopause.md │ ├── mental-health.md │ ├── mood.md │ ├── nutrition.md │ ├── occupational-health.md │ ├── oral-health.md │ ├── polypharmacy.md │ ├── postpartum.md │ ├── pregnancy.md │ ├── prepare.md │ ├── profile.md │ ├── prostate-health.md │ ├── psych-assess.md │ ├── puberty.md │ ├── query.md │ ├── radiation-data.md │ ├── radiation.md │ ├── rehabilitation.md │ ├── report-instructions.md │ ├── report.md │ ├── save-report.md │ ├── screening.md │ ├── sexual-health.md │ ├── skin-health.md │ ├── sleep.md │ ├── specialist.md │ ├── surgery.md │ ├── symptom.md │ ├── tcm-constitution.md │ ├── travel-health.md │ └── vaccine.md ├── data-example/ │ ├── README-food-database.md │ ├── README.md │ ├── allergies.json │ ├── andropause-tracker.json │ ├── child-development-tracker.json │ ├── child-illness-tracker.json │ ├── child-mental-tracker.json │ ├── child-nutrition-tracker.json │ ├── child-safety-tracker.json │ ├── child-sleep-tracker.json │ ├── child-vaccinations.json │ ├── copd-tracker.json │ ├── cycle-tracker.json │ ├── diabetes-tracker.json │ ├── eye-health-tracker.json │ ├── family-health-tracker.json │ ├── fertility-tracker.json │ ├── fitness-logs/ │ │ ├── .index.json │ │ └── 2025-06/ │ │ └── 2025-06-20.json │ ├── fitness-tracker.json │ ├── fitness-tracker.json.backup │ ├── food-categories.json │ ├── food-database.json │ ├── growth-tracker.json │ ├── health-goals-logs/ │ │ ├── 2025-01/ │ │ │ └── 2025-01-01.json │ │ └── 2025-03/ │ │ └── 2025-03-20.json │ ├── health-goals-tracker.json │ ├── hypertension-tracker.json │ ├── index.json │ ├── interactions/ │ │ └── interaction-db.json │ ├── menopause-tracker.json │ ├── mental-health-logs/ │ │ ├── .index.json │ │ └── 2025-06/ │ │ └── 2025-06-20.json │ ├── mental-health-reports/ │ │ ├── comprehensive-mental-health-report-2025-06-20.md │ │ ├── crisis-risk-report-2025-06-20.md │ │ ├── mental-health-trend-report-2025-06-20.md │ │ ├── mood-pattern-report-2025-06-20.md │ │ └── therapy-progress-report-2025-06-20.md │ ├── mental-health-tracker.json │ ├── nutrition-logs/ │ │ ├── .index.json │ │ └── 2025-06/ │ │ └── 2025-06-20.json │ ├── nutrition-tracker.json │ ├── nutrition-tracker.json.backup │ ├── nutritional-reference.json │ ├── occupational-health-tracker.json │ ├── oral-health-tracker.json │ ├── postpartum-tracker.json │ ├── pregnancy-tracker.json │ ├── profile.json │ ├── prostate-tracker.json │ ├── radiation-records.json │ ├── rehabilitation-logs/ │ │ ├── .index.json │ │ └── 2025-06/ │ │ └── 2025-06-20.json │ ├── rehabilitation-tracker.json │ ├── reminders.json │ ├── screening-tracker.json │ ├── sexual-health-tracker.json │ ├── skin-health-tracker.json │ ├── sleep-logs/ │ │ ├── .index.json │ │ └── 2025-06/ │ │ └── 2025-06-20.json │ ├── sleep-tracker.json │ ├── tcm-constitution-logs/ │ │ └── 2025-06/ │ │ └── 2025-06-20.json │ ├── tcm-constitution-tracker.json │ ├── travel-health-logs/ │ │ └── pre-trip-assessment-2025-07-28.json │ ├── travel-health-tracker.json │ ├── vaccinations.json │ └── vaccine-database.json ├── docs/ │ ├── data-structures.en.md │ ├── data-structures.md │ ├── drug-interaction-database.md │ ├── marketing/ │ │ ├── README.en.md │ │ ├── devto-article.md │ │ ├── execution-checklist.md │ │ ├── github-discussions.md │ │ ├── github-readme-badges.md │ │ ├── indie-hackers.md │ │ ├── juejin-article.md │ │ ├── qiita-article.md │ │ ├── reddit-privacy.md │ │ ├── strategy.md │ │ └── v2ex-post.md │ ├── plans/ │ │ ├── 2025-01-14-child-health-commands-design.md │ │ ├── 2025-01-14-weight-loss-design.md │ │ └── 2025-01-14-weight-loss-implementation.md │ ├── postpartum-care-guide.md │ ├── safety-guidelines.md │ ├── technical-details.md │ ├── user-guide.en.md │ ├── user-guide.md │ ├── womens-health-implementation-summary.md │ ├── womens-health-integration.md │ └── womens-health-safety-checklist.md ├── package.json ├── scripts/ │ ├── README.md │ ├── ai_prediction.py │ ├── generate_ai_report.py │ ├── generate_emergency_card.py │ ├── generate_health_report.py │ ├── test-ai-features.sh │ ├── test-children-health.sh │ ├── test-chronic-diseases.sh │ ├── test-elderly-health.sh │ ├── test-eye-health.sh │ ├── test-family-health.sh │ ├── test-fitness.sh │ ├── test-food-database.sh │ ├── test-health-goals.sh │ ├── test-mens-health.sh │ ├── test-mental-health.sh │ ├── test-nutrition.sh │ ├── test-occupational-health.sh │ ├── test-oral-health.sh │ ├── test-rehabilitation.sh │ ├── test-sexual-health.sh │ ├── test-skin-health.sh │ ├── test-sleep.sh │ ├── test-tcm-constitution.sh │ ├── test-travel-health.sh │ ├── test-weightloss.sh │ ├── test.sh │ └── weightloss_calculations.py ├── skills/ │ ├── ai-analyzer/ │ │ └── SKILL.md │ ├── emergency-card/ │ │ ├── SKILL.md │ │ ├── examples.md │ │ └── formats.md │ ├── family-health-analyzer/ │ │ └── SKILL.md │ ├── fitness-analyzer/ │ │ └── SKILL.md │ ├── food-database-query/ │ │ └── SKILL.md │ ├── goal-analyzer/ │ │ └── SKILL.md │ ├── health-trend-analyzer/ │ │ ├── SKILL.md │ │ ├── algorithms.md │ │ ├── data-sources.md │ │ ├── examples.md │ │ ├── templates/ │ │ │ ├── charts-config.js │ │ │ ├── custom-styles.css │ │ │ └── report-template.html │ │ └── test-data/ │ │ └── profile-mock.json │ ├── mental-health-analyzer/ │ │ └── SKILL.md │ ├── nutrition-analyzer/ │ │ └── SKILL.md │ ├── occupational-health-analyzer/ │ │ └── SKILL.md │ ├── oral-health-analyzer/ │ │ └── SKILL.md │ ├── rehabilitation-analyzer/ │ │ └── SKILL.md │ ├── sexual-health-analyzer/ │ │ └── SKILL.md │ ├── skin-health-analyzer/ │ │ └── SKILL.md │ ├── sleep-analyzer/ │ │ └── SKILL.md │ ├── tcm-constitution-analyzer/ │ │ └── SKILL.md │ ├── travel-health-analyzer/ │ │ └── SKILL.md │ ├── weightloss-analyzer/ │ │ └── SKILL.md │ └── wellally-tech/ │ ├── SKILL.md │ ├── data-sources.md │ └── knowledge-base/ │ ├── chronic-disease.md │ ├── fitness.md │ ├── index.md │ ├── mental-health.md │ ├── nutrition.md │ └── sleep.md ├── specialists/ │ ├── README.md │ ├── cardiology.md │ ├── consultation-coordinator.md │ ├── dermatology.md │ ├── endocrinology.md │ ├── gastroenterology.md │ ├── general.md │ ├── geriatrics.md │ ├── gynecology.md │ ├── hematology.md │ ├── nephrology.md │ ├── neurology.md │ ├── oncology.md │ ├── orthopedics.md │ ├── pediatrics.md │ ├── psychiatry.md │ ├── respiratory.md │ └── urology.md └── todo/ ├── 01-womens-health.md ├── 02-mens-health.md ├── 03-children-health.md ├── 04-elderly-health.md ├── 05-pregnancy-postpartum.md ├── 06-chronic-diseases.md ├── 07-fitness.md ├── 08-sleep.md ├── 09-nutrition.md ├── 10-eye-health.md ├── 11-oral-health.md ├── 12-skin-health.md ├── 13-sexual-health.md ├── 14-rehabilitation.md ├── 15-mental-health.md ├── 16-health-goals.md ├── 17-travel-health.md ├── 18-occupational-health.md ├── 19-family-health.md ├── 20-tcm-health.md ├── 21-ai-features.md ├── 22-data-integration.md ├── 23-privacy-security.md ├── 24-scientific-weight-loss.md ├── README.md ├── implementation-roadmap.md └── skills/ ├── 00-技能总览.md ├── 01-健康趋势分析器.md ├── 02-用药顾问.md ├── 03-症状模式分析器.md ├── 04-就诊准备助手.md ├── 05-健康洞察.md ├── 06-健康教练.md ├── 07-营养顾问.md ├── 08-健身教练.md ├── 09-睡眠专家.md ├── 10-心理健康伴侣.md ├── 11-慢性病管理教练.md ├── 12-女性健康专员.md ├── 13-康复指导师.md └── 14-预防保健协调员.md