Experience Summary Sys

ReviewAudited by ClawScan on May 10, 2026.

Overview

This instruction-only skill is coherent, but it should be reviewed because it can automatically summarize all chat session logs, including deleted or reset sessions, into persistent memory used later.

Install only if you are comfortable having your conversation history summarized into persistent local memory. Before enabling the cron jobs, decide whether deleted/reset sessions should be included, define retention and cleanup rules for memory files, and regularly review MEMORY.md for sensitive or stale content.

Findings (4)

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 deleted conversation content may be retained in summaries and reused later, even if the original session was reset or deleted.

Why it was flagged

The skill directs periodic processing of conversation logs, including deleted/reset sessions, into persistent memory files.

Skill content
读取 `sessions/` 目录下所有 `.jsonl` 文件 ... **被删除/重置会话** ... 合并写入 `memory/daily/YYYY-MM-DD.md`
Recommendation

Only enable this if you want that retention. Add exclusions and retention rules, and remove deleted/reset session processing if deletion should prevent future reuse.

What this means

Old or inaccurate memories could influence future responses if they are stale, sensitive, or poorly summarized.

Why it was flagged

The skill tells the agent to retrieve and incorporate stored long-term memories into future answers.

Skill content
使用 `memory_search` 工具检索相关内容 ... `MEMORY.md` — 全部长期记忆
Recommendation

Periodically review MEMORY.md and the memory directories, and remove sensitive or outdated entries.

What this means

After manual setup, summaries can be generated automatically on a schedule without asking each time.

Why it was flagged

The skill documents persistent scheduled jobs for daily, weekly, monthly, quarterly, and yearly summaries.

Skill content
openclaw cron add --name daily-summary ... --system-event "generate-daily-summary"
Recommendation

Review `openclaw cron list` after setup and disable any scheduled job you do not want running continuously.

What this means

Running the cleanup command can permanently remove matching session artifacts.

Why it was flagged

The skill includes optional shell commands that delete old reset/deleted session files.

Skill content
find sessions/ -name "*.jsonl.reset.*" -mtime +90 -delete
Recommendation

Run cleanup only after confirming the path and pattern are correct, and consider backing up sessions first.