Performs nutritional assessment and diet plan generation for cancer patients using NRS-2002 scoring and LLM-based dietary recommendations. Tracks weight, albumin, caloric intake, and generates personalized meal plans based on cancer type and treatment phase. Use when the user wants nutrition guidance during cancer treatment.
A nutrition management tool designed specifically for cancer patients, providing the following capabilities:
# Record nutrition data
python cancer_nutrition_coach.py record --weight 65.5 --albumin 35 --intake 1800 --phase chemotherapy
# NRS-2002 nutritional risk screening
python cancer_nutrition_coach.py screen --ns 2 --ds 2 --age 68
# Weight alert
python cancer_nutrition_coach.py weight-alert --days 30
# BMI calculation
python cancer_nutrition_coach.py bmi --weight 65 --height 170
# Generate personalized diet plan
python cancer_nutrition_coach.py diet-plan --diagnosis "colorectal cancer" --phase "on FOLFOX chemotherapy" --allergies "seafood"
# Generate comprehensive nutrition report
python cancer_nutrition_coach.py report --days 30