Install
openclaw skills install @voronindenis5/pet-food-calculatorCalculate exact daily calorie needs and food portions for dogs and cats from species, breed, weight, age, activity level, and body condition. Compares feeding costs across food types, generates feeding schedules for multi-pet households, and flags weight-loss plans. Use when the user asks how much to feed their dog or cat, whether their pet is overweight, or how to switch foods safely.
openclaw skills install @voronindenis5/pet-food-calculatorCompute exactly how much to feed your dog or cat — daily calories, grams per meal, feeding schedule, cost per month, and weight-loss trajectory — from species, weight, age, activity, and body-condition score. Flags weight-loss plans with safe calorie floors (never starve a cat) and builds transition schedules for switching foods.
Pet obesity affects over half of dogs and cats, shaving ~2 years off life expectancy, and the #1 cause is simple overfeeding — owners guess portions, food bags' guidelines are deliberately generous, and cups are imprecise. Vet nutrition formulas (RER → MER) are well-established but require a calculator nobody owns.
pet_food_calculator.py implements the veterinary-standard math:
Don't use for: diagnosing illness, prescription diets for renal/urinary conditions (follow vet guidance), or exotic pets (formulas are dog/cat only).
# Adult neutered dog, 30 kg, moderate activity, food is 3800 kcal/kg
python3 scripts/pet_food_calculator.py --species dog --weight 30 \
--age adult --activity moderate --food-calories 3800
# Overweight cat: 7.2 kg current, target 5.5 kg
python3 scripts/pet_food_calculator.py --species cat --weight 7.2 \
--target-weight 5.5 --food-calories 4800
# Puppy, 5 kg, expecting ~25 kg adult
python3 scripts/pet_food_calculator.py --species dog --weight 5 \
--age puppy --adult-weight 25 --food-calories 4100
# Compare monthly cost of two foods
python3 scripts/pet_food_calculator.py --species dog --weight 30 \
--age senior --food-calories 3400 --food-price 65 --bag-kg 12
# Full household plan (JSON out)
python3 scripts/pet_food_calculator.py --species cat --weight 4.5 \
--age adult --food-calories 5000 --json plan.json
--target-weight.--transition)references/energy-requirements.md — full factor tables, growth curves, BCS guidereferences/feeding-guide.md — meal frequency by age, transition schedules, treat budget, food-label decoding