Habit Tracker

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a straightforward local habit-tracking CLI that stores habit data on the user's computer and includes optional user-configured reminders.

This skill looks purpose-aligned for local habit tracking. Before installing, be aware that it saves habit history and notes under ~/.config/habit-tracker/ and that any cron reminders you choose to add will keep running until removed.

Findings (3)

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

Habit names, completion history, and notes will remain on the device and may reveal private routines if the account or files are accessed by others.

Why it was flagged

The CLI persists habit definitions and logs in local JSON files, which is expected for a habit tracker but can store personal routines and notes across sessions.

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

Avoid entering highly sensitive notes, and periodically review or delete the files in ~/.config/habit-tracker/ if you no longer want the data retained.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

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

Why it was flagged

The documentation suggests optional cron-based scheduling, which is disclosed and purpose-aligned but would continue running until the user removes the cron entry.

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 jobs if you want scheduled reminders, and remove the crontab entries when you stop using the skill.

What this means

You have less external information to verify the publisher or update history before installing.

Why it was flagged

The registry metadata does not provide an external source repository or homepage for provenance checking, though the included package has no dependencies and the static scan is clean.

Skill content
Source: unknown
Homepage: none
Recommendation

Review the included files and publisher information before installing, especially if you rely on this skill for long-term personal tracking.