永久记忆系统

AdvisoryAudited by Static analysis on May 2, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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 information shared in ordinary chats could be retained indefinitely and reused in later sessions.

Why it was flagged

The skill explicitly instructs the agent to log all conversation content, not just user-approved memories, into persistent daily files.

Skill content
所有对话内容都追加到 `memory/YYYY-MM-DD.md`,即使看起来不重要的闲聊也记录。
Recommendation

Use only with explicit consent and clear controls for what is saved; add opt-in recording, exclusions for secrets/private data, retention limits, and true deletion.

What this means

Future responses may be shaped by old or poisoned memory content that the user did not intend to make authoritative.

Why it was flagged

Persisted memory is automatically loaded into future sessions, so stale, incorrect, or maliciously inserted memory entries could influence later agent behavior.

Skill content
新会话开始
    └── 读取 MEMORY.md + 最新日记 → 上下文完整继承
Recommendation

Treat stored memory as untrusted context, show sources and dates, allow review before reuse, and provide a way to quarantine or delete questionable entries.

What this means

The agent may save information to persistent files when the user expected the conversation to remain temporary.

Why it was flagged

The skill directs automatic local file mutation without making per-write user approval or recording scope clear.

Skill content
无需手动调用。技能自动生效:

- 告诉太初重要的事 → 自动写入记忆
Recommendation

Require explicit user confirmation for recording, provide a visible recording status, and support a search-only or manual-save mode.

What this means

A user may believe sensitive memories were removed when they are still present in local memory files.

Why it was flagged

The wording presents a delete/forget action while also saying the system does not actually delete automatically, which can mislead privacy expectations.

Skill content
可以告诉太初"删除关于 xxx 的记忆",但系统永远不会自动删除,只会标记过期。
Recommendation

Clearly distinguish 'mark expired' from deletion, and implement a true purge command with confirmation and audit output.