Daily Digest

PassAudited by ClawScan on May 1, 2026.

Overview

This skill is a coherent local daily-digest generator that reads dated memory files and writes a digest journal, with only expected privacy and persistence considerations.

This skill appears safe for its stated purpose. Before installing or scheduling it, remember that it reads local daily memory files and saves summaries under journals/digest, so review the output if your memory files may contain private information.

Findings (2)

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

Private or sensitive items stored in daily memory files may be summarized into another local file.

Why it was flagged

The script reads local memory notes and writes a derived digest file, which can duplicate sensitive information from memory into a persistent journal.

Skill content
mem_today = os.path.join(base_dir, 'memory', f"{date_str}.md") ... out_path = os.path.join(out_dir, f"digest-{date_str}.md")
Recommendation

Review the generated digest before sharing it, and avoid storing secrets or highly sensitive information in the memory files used by this skill.

What this means

If you configure a scheduler, the skill may create new digest files every day without further manual invocation.

Why it was flagged

The documentation describes optional recurring execution, which is disclosed and user-controlled but means the digest could continue being generated automatically if scheduled.

Skill content
Optional: integrate with clawdbot to run automatically via a cron job or a scheduler.
Recommendation

Only enable scheduling if you want recurring digest creation, and periodically review or remove the scheduled job if it is no longer needed.