Hydration Tracker
PassAudited by VirusTotal on May 11, 2026.
Overview
Type: OpenClaw Skill Name: hydration-tracker Version: 2.0.1 The Hydration Tracker skill is a legitimate utility for logging water intake with all data stored locally in ~/.water_reminder/. The implementation in scripts/script.sh uses safe practices, such as input validation via regex and passing variables to Python sub-processes through environment variables to prevent shell injection. There are no network calls, obfuscated code, or attempts to access sensitive system files.
Findings (0)
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.
The skill may require local Bash/Python support even though the registry requirements do not declare it.
The implementation depends on Bash and Python, while the registry metadata declares no required binaries and no install spec. This can affect installation clarity, but the code is included and no remote download or hidden dependency is shown.
#!/bin/bash ... python3 << 'PYEOF'
Confirm the CLI setup path and required local tools before relying on it; the publisher should align registry metadata with the documented Bash/Python requirements.
Anyone with access to your local account/files could potentially see your hydration history and goal data.
The skill persistently stores hydration intake and goal data in local JSON files. This is disclosed and purpose-aligned, but it is personal wellness data retained across sessions.
DATA_DIR="$HOME/.water_reminder" DATA_FILE="$DATA_DIR/data.json" GOAL_FILE="$DATA_DIR/goal.json" mkdir -p "$DATA_DIR"
Install only if local storage of this wellness data is acceptable; delete ~/.water_reminder if you want to remove the stored records.
