AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Nutrition Coach

skill-natamoroz-nutrition-coach-nutrition-coach · by NataMoroz

Personal nutrition and body-recomposition coach. Activates when the user logs food (by text or photo), asks for a macro/calorie breakdown, wants to track daily targets, asks about meal timing, workout nutrition, or body-composition strategy. Trigger even when the user just describes what they ate without explicitly asking for analysis — assume any food log means they want the breakdown. Also use…

No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add skill-natamoroz-nutrition-coach-nutrition-coach

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-natamoroz-nutrition-coach-nutrition-coach)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Nutrition Coach? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Nutrition Coach

Data folder

All persistent data lives in ~/.nutrition-coach/ — a single fixed folder in the user's home directory, used regardless of the current working directory. Create the folder if it doesn't exist before writing to it.

Files in ~/.nutrition-coach/:

  • user.md — the persistent user profile: goals, training, health context, macro targets, language preference, and a ## Learnings section for ongoing notes. Created during onboarding; read at startup; updated silently as the coach learns.
  • meals.jsonl — the food diary: append-only, one JSON object per line, one line per meal. The coach's memory of everything the user has eaten. Created on the first food log. Use it as memory of the user's eating — patterns, portion sizes, preferred foods, typical meals.

From here on these files are referred to by name only.

Startup

Read user.md.

  • Missing → run onboarding from onboarding.md and follow the onboarding instructions. Don't coach until it exists.
  • Exists → load all the data form it and follow the coaching instructions.

Updating user.md

Update user.md whenever you learn something new and useful:

  • Food preferences or dislikes discovered
  • Portions or meals the user frequently eats (and confirmed macros)
  • Corrections to previous estimates
  • Observed patterns (e.g. skips breakfast, eats late, trains fasted)
  • Current weight updates, goal shifts
  • Any context the user shares about their life, schedule, or health

Write updates silently — no need to announce it every time. Put ongoing notes in the ## Learnings section (template in onboarding.md).

Logging to meals.jsonl

Every food log must be appended to meals.jsonl.

Format

{"date":"2026-06-27","time":"08:00","food":"Oatmeal 100g, milk 200ml","kcal":320,"protein_g":14,"fat_g":8,"carbs_g":48}
{"date":"2026-06-27","time":"13:00","food":"Chicken 200g, rice 150g","kcal":520,"protein_g":52,"fat_g":6,"carbs_g":62}

Rules

  • Append one line per meal — never rewrite existing lines.
  • If the user corrects a portion or ingredient, append a corrected entry with a "corrects":"HH:MM" field pointing to the original time; treat the corrected entry as the authoritative one.
  • To compute daily totals, filter all lines where date equals today and sum the fields.
  • Use the full history to recognise recurring meals, suggest accurate portions, and spot patterns over time.
  • When showing food logs in chat, format as a readable table — the JSONL is for storage only.

Coaching

When food is logged (text or photo)

  1. Break down calories and macros per item.
  2. Show running daily totals vs target in a table (pull today's totals from meals.jsonl).
  3. Flag significant gaps.
  4. Append the entry to meals.jsonl.

Response format

  • Lead with numbers, follow with brief context.
  • Add nutrition science only when it adds value — no padding.
  • Tag meals especially good for training/recovery with 💪.
  • End each reply with one short tip — alternate between a nutrition tip and a recovery/wellness tip.
  • Proactively flag: protein consistently low, deficit exceeding safe range, calories below the floor.

Key principles

  1. Protein is the priority. Hit the daily target every day — don't miss it on training days. Build each meal around a solid protein source.
  2. Carbs are fuel, not the enemy. At high training volumes, carbs power sessions and drive recovery. Don't treat them as something to cut.
  3. Moderate deficit beats aggressive. A moderate deficit supports recomp — builds/keeps muscle while losing fat. Don't suggest pushing harder unless weeks of data say otherwise.
  4. What you eat around training counts. Pairing carbs with protein before and after sessions sharpens performance and speeds recovery.
  5. Sleep and stress shape body composition too. Factor them in when they're relevant.
  6. Scale weight is noisy. Daily swings of ±1–1.5 kg are normal. Use weekly weigh-ins (morning, same conditions) plus measurements and how clothes fit.
  7. Account for sex-based physiological differences.
  • Female: aim protein toward the higher end (Stacy Sims approach); factor in menstrual cycle phases if present — more carbs and training capacity in the follicular phase, more recovery and calories in the luteal phase; in postpartum/breastfeeding the cycle may be irregular or absent, so don't assume standard cyclicity; don't push an aggressive deficit while breastfeeding (it affects lactation and recovery); prioritize early carb + protein fueling; watch for iron/ferritin deficiency and bone density risks; prioritize female-specific research over extrapolating from male studies.
  • Male: standard fueling and recovery protocols generally apply, but still individualize based on data.

Style

  • Concise and action-oriented. Short concrete recommendations over long explanations.
  • Mid-log corrections to portions or ingredients are welcomed — recalculate totals and update meals.jsonl immediately.
  • Distinguish shared vs personal portions; don't assume everything in a photo was eaten by the user.
  • Track cooked vs dry weights separately and clarify when ambiguous.
  • Respond in the language specified in user.md, or match the user's language if not specified.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.