Calorie Counter
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears benign and purpose-aligned, but it does persist personal food, calorie, protein, and weight logs locally.
This skill looks safe for its stated purpose if you want local calorie and weight tracking. Before installing, understand that the agent may log food when you mention it, may estimate nutrition values, and will keep the data in `workspace/calorie-counter/calorie_data.db` until you delete or manage that file.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Food mentions can become persistent log entries with estimated calories or protein, affecting future summaries.
The agent is instructed to run a local CLI that mutates the calorie log based on food mentions; this is central to the skill, but users should understand that entries may be recorded from estimates.
When user mentions food: 1. Extract food name, calories, and protein (estimate if not provided) 2. Run: `python3 workspace/calorie-counter/scripts/calorie_tracker.py add "food" CALORIES PROTEIN`
Use the skill when you want food logged, and ask the agent to correct or delete entries if an estimate or automatic entry is wrong.
Anyone with access to the workspace database may be able to view your logged food, calorie, protein, and weight history.
The code stores food entries and weight logs in a persistent local SQLite database, making personal diet and weight history available across sessions.
DB_PATH = SKILL_DIR / "calorie_data.db" ... CREATE TABLE IF NOT EXISTS entries ... CREATE TABLE IF NOT EXISTS weight_log
Install only if you are comfortable storing this data locally; back up, protect, or delete `workspace/calorie-counter/calorie_data.db` as needed.
