HabitTracker Conversational Habit Tracking

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to do ordinary habit tracking, with the main consideration being that your habit history is saved locally.

This appears reasonable for conversational habit tracking. Before using it, remember that habit logs may reveal personal health or routine information, choose a safe local storage location, and only enable reminders if you want the agent to prompt you.

Findings (1)

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.

What this means

Your habit history is saved locally and could be read by anyone or any process with access to that file.

Why it was flagged

The skill persists habit entries to a local JSON file, which can contain personal routine or health-related information.

Skill content
this.dataFile = options.dataFile || './habits-data.json'; ... fs.writeFileSync(this.dataFile, JSON.stringify(this.entries, null, 2));
Recommendation

Use a dedicated local data file, avoid storing sensitive details you do not want persisted, and keep backups if the habit history matters to you.