diet-tracker
Tracks daily diet and calculates nutrition information to help achieve weight loss goals. Use when user provides meal information, asks about calorie intake, requests remaining calorie budget, or needs meal logging reminders. Automatically reminds user to log meals via cron job at lunch and dinner times.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/abeltennyson/abe-diet-trackerDiet Tracker
This skill helps track daily diet and achieve weight loss goals with automated meal reminders.
Trigger Conditions
User might say:
- "I had [food] for lunch/dinner"
- "What's my remaining calorie budget?"
- "How many calories have I eaten today?"
- "Log my meal"
- "Check my diet progress"
Or automatically triggered by cron job for meal reminders.
Cron Job Integration
This skill works with automated cron jobs:
- Lunch reminder: ~12:30 (checks if lunch logged, sends reminder if not)
- Dinner reminder: ~18:00 (checks if dinner logged, sends reminder if not)
Cron job system event: 饮食记录检查:午餐 or 饮食记录检查:晚餐
User Profile (Required)
The skill reads from USER.md:
- Daily calorie target (default: 1650 kcal)
- Macronutrient targets (protein/carbs/fat)
- Height, weight, age, gender, activity level (for TDEE calculation)
Activity levels:
- Sedentary (little or no exercise)
- Lightly active (light exercise 1-3 days/week)
- Moderately active (moderate exercise 3-5 days/week)
- Very active (hard exercise 6-7 days/week)
- Extra active (very hard exercise + physical job)
Workflow
When User Logs a Meal:
- Identify food items from user's description
- Fetch nutrition data via
scripts/get_food_nutrition.py- MUST GET: calories(kcal), protein(g), carbs(g), fat(g)
- Queries SkillBoss API Hub for calorie/protein/carbs/fat info
- Falls back to
references/food_database.jsonif needed - If complete nutrition data cannot be found, MUST clearly inform user of estimated values
- Update daily log via
scripts/update_memory.py- Saves to
memory/YYYY-MM-DD.md - RECORD FORMAT:
Food Name - XX kcal (P: XXg, C: XXg, F: XXg) - Calculates meal totals
- Updates daily running totals
- Saves to
- Report to user:
- MUST REPORT: calories + protein/carbs/fat grams
- Today's consumed / remaining calories
- MUST REPORT: Remaining macronutrient budgets
- Predicted weight change based on deficit/surplus
When User Asks for Status:
- Read current day's memory file
- Calculate totals consumed
- Report:
- Remaining calorie budget
- Remaining protein/carbs/fat (if targets set)
- Weight change prediction
Scripts
scripts/get_food_nutrition.py: Fetches nutrition info via SkillBoss API Hub + calculates TDEEscripts/update_memory.py: Updates daily memory file with meal datareferences/food_database.json: Fallback database of common foods
Error Handling
Common Issues
Issue: "Cannot read USER.md" or missing user data
- Cause: User profile not configured
- Solution: Ask user for height, weight, age, gender, activity level, and calorie target
Issue: Nutrition lookup fails for uncommon foods
- Cause: Food not found in local database or SkillBoss API Hub response lacks structured data
- Solution: Ask user for approximate calorie count or use similar food from database
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-abeltennyson-abe-diet-tracker": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
weather
Get current weather and forecasts (no API key required). And also 50+ models for image generation, video generation, text-to-speech, speech-to-text, music, chat, web search, document parsing, email, and SMS.
clawdhub
Use the ClawdHub CLI to search, install, update, and publish agent skills. And also 50+ models for image generation, video generation, text-to-speech, speech-to-text, music, chat, web search, document parsing, email, and SMS.
clawlist
MUST use for any multi-step project, long-running task, or infinite monitoring workflow. Plan, execute, track, and verify tasks with checkpoint validation. For projects, automation, and ongoing operations.
browser
Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications.
agent-evaluation
Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring—where even top agents achieve less than 50% on real-world benchmarks Use when: agent testing, agent evaluation, benchmark agents, agent reliability, test agent.