Birthday Reminder
PassAudited by ClawScan on May 1, 2026.
Overview
This is a simple local birthday manager, with expected persistent storage of birthday data and a minor mismatch between the documented and actual storage file.
This skill appears safe for normal use as a local birthday reminder. Be aware that it stores personal birthday information persistently in a JSON file, and that the actual file path used by the scripts differs from the Markdown file described in the documentation.
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.
Birthday information about people you add will remain saved locally until removed.
The script stores birthday records in a persistent local file, so names, birth dates, and optional birth years can be reused across future birthday queries.
BIRTHDAYS_FILE = Path("/home/clawd/clawd/data/birthdays.json")Only store birthday details you are comfortable keeping locally, and use the remove command or delete the data file if you no longer want the information retained.
A user looking for or backing up the documented Markdown file may miss the actual JSON file used by the scripts.
The script uses birthdays.json, while SKILL.md describes storage in /home/clawd/clawd/data/birthdays.md; this is a documentation/code mismatch rather than evidence of malicious behavior.
BIRTHDAYS_FILE = Path("/home/clawd/clawd/data/birthdays.json")Treat /home/clawd/clawd/data/birthdays.json as the actual storage file unless the skill is updated to make the documentation and code consistent.
