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.
Private or deleted conversation content may be retained in summaries and reused later, even if the original session was reset or deleted.
The skill directs periodic processing of conversation logs, including deleted/reset sessions, into persistent memory files.
读取 `sessions/` 目录下所有 `.jsonl` 文件 ... **被删除/重置会话** ... 合并写入 `memory/daily/YYYY-MM-DD.md`
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.
Old or inaccurate memories could influence future responses if they are stale, sensitive, or poorly summarized.
The skill tells the agent to retrieve and incorporate stored long-term memories into future answers.
使用 `memory_search` 工具检索相关内容 ... `MEMORY.md` — 全部长期记忆
Periodically review MEMORY.md and the memory directories, and remove sensitive or outdated entries.
After manual setup, summaries can be generated automatically on a schedule without asking each time.
The skill documents persistent scheduled jobs for daily, weekly, monthly, quarterly, and yearly summaries.
openclaw cron add --name daily-summary ... --system-event "generate-daily-summary"
Review `openclaw cron list` after setup and disable any scheduled job you do not want running continuously.
Running the cleanup command can permanently remove matching session artifacts.
The skill includes optional shell commands that delete old reset/deleted session files.
find sessions/ -name "*.jsonl.reset.*" -mtime +90 -delete
Run cleanup only after confirming the path and pattern are correct, and consider backing up sessions first.
