Memory Manager

PassAudited by ClawScan on May 1, 2026.

Overview

This is a transparent local memory tool, but it intentionally saves conversation content to persistent workspace files that can be searched later.

Install this only if you want OpenClaw conversations or selected insights saved as long-term local memory. Review the workspace memory files periodically, avoid storing passwords or other sensitive information, and do not treat retrieved memory entries as automatically trustworthy.

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.

What this means

Conversation text, including accidentally shared secrets or untrusted instructions, may remain on disk and could be surfaced in future tasks.

Why it was flagged

The code persists raw conversation content and long-term insights into workspace memory files, which can later be searched and reused.

Skill content
entry = f"\n## [{timestamp}]\n\n{content}\n" ... f.write(entry) ... self.memory_file = self.workspace / "MEMORY.md"
Recommendation

Use only if you want persistent memory; avoid saving secrets, periodically review or delete the memory files, and treat retrieved memories as untrusted context.