Habit Tracker

Security checks across malware telemetry and agentic risk

Overview

This appears to be a coherent local habit-tracking CLI, with the main things to notice being persistent local habit data and optional user-configured cron reminders.

This skill looks safe for local habit tracking. Before installing, be aware that your habit names, logs, and notes are saved locally, and only set up the optional cron jobs if you want automatic reminders or reports.

VirusTotal

64/64 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

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.

#
ASI06: Memory and Context Poisoning
Low
What this means

Your habit history and notes will remain on disk in your home directory until you remove them.

Why it was flagged

The CLI persists habit names, completion logs, and optional notes in local JSON files. This is expected for a habit tracker, but users should recognize that the data may be personal.

Skill content
const DATA_DIR = path.join(os.homedir(), '.config', 'habit-tracker'); ... const HABITS_FILE = path.join(DATA_DIR, 'habits.json'); const LOGS_FILE = path.join(DATA_DIR, 'logs.json');
Recommendation

Use non-sensitive wording for habit notes if privacy matters, and back up or delete ~/.config/habit-tracker when appropriate.

#
ASI10: Rogue Agents
Low
What this means

If you configure the cron examples, the tracker may run reminder or report commands automatically on a schedule.

Why it was flagged

The skill documents optional scheduled execution for reminders and reports. This is disclosed and purpose-aligned, but it can make the tool run periodically if the user adds the cron job.

Skill content
Add to crontab for hourly reminder checks: `0 * * * * node /path/to/habit-tracker/scripts/habit-cli.js reminder`
Recommendation

Only add the cron entries if you want scheduled reminders, and remove them from crontab when you no longer want automatic checks.