JournalBot Daily Journaling with AI Prompts
PassAudited by ClawScan on May 1, 2026.
Overview
This journaling skill appears coherent and local-only, with the main thing to notice being that it intentionally stores personal journal entries on disk.
This looks like a benign local journaling helper. Before installing, be aware that entries are saved as local markdown files under a journal directory, so protect that folder if your journal contains sensitive personal information.
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.
Your private journal entries may remain on disk and could be read later by this skill or by anyone with access to that folder.
The code creates a local journal directory and persistently writes journal entries to markdown files. This is aligned with the skill's purpose, but journal content may be sensitive personal data.
this.journalDir = options.journalDir || './journal'; ... fs.writeFileSync(file, `# Journal — ${date}\n${entry}`); ... fs.appendFileSync(file, entry);Store the journal directory somewhere private, avoid writing secrets you would not want stored locally, and back up or delete entries according to your own privacy needs.
