food-expiry-reminder
PassAudited by ClawScan on May 1, 2026.
Overview
This looks like a local food-expiry tracker with no network or credential behavior, but it writes a local inventory file and optionally can be scheduled to run daily.
This skill appears safe for its stated purpose. Before installing, note that it stores food inventory locally in data/food_data.json, ships with sample records you may want to clear, and should only be scheduled with cron or HEARTBEAT if you intentionally want ongoing reminders.
Findings (4)
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.
Users have less context about who maintains the skill or where to verify updates.
The registry metadata does not provide upstream source or homepage provenance; no remote installer or dependencies are shown, but the origin is not documented.
Source: unknown; Homepage: none
Review the included scripts before use and prefer installing from a source you trust.
Using the add command changes the local food inventory file.
The add script writes user-supplied food records to the skill's local JSON file; this is purpose-aligned and scoped to the skill data directory.
data['foods'].append(food_item) ... with open(data_file, 'w', encoding='utf-8') as f: json.dump(data, f, ensure_ascii=False, indent=2)
Only run add/edit actions for records you intend to store, and back up the JSON file if the inventory matters.
The skill may show reminders for preloaded sample items, and future food notes will persist locally.
The skill package includes persistent food records that scripts will read as inventory data unless the user clears or replaces them.
"foods": [ { "id": "a3bd5788", "name": "牛奶", ... } ]Clear or reinitialize data/food_data.json before personal use if you do not want the bundled sample records.
If you add the cron entry, the reminder script will keep running daily until you remove it.
The documentation suggests an optional cron job for daily reminders; this is user-directed, but it creates recurring behavior if configured.
0 9 * * * cd /path/to/skills/food-expiry-reminder && python scripts/get_reminders.py
Only set up scheduled reminders if you want persistent daily checks, and keep track of how to remove the cron entry.
