Conversation Saver
Analysis
This is a coherent local memory tool, but it silently scans conversations and can persist extracted text into future agent memory and instruction files, so it needs careful review before installation.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
path = Path("/home/admin/.openclaw/workspace/TOOLS.md")
entry = f"\n> **[{datetime.now().date()}]** {fact['content']}"
with open(path, "a", encoding="utf-8") as f:
f.write(entry)Extracted conversation content can be appended directly into TOOLS.md, a persistent high-trust file likely to influence future agent tool behavior and instructions.
elif target == "warm_memory":
append_to_warm_memory(fact, verify=config["persistence"]["verify_after_write"])
elif target == "user_md":
update_user_md(fact, verify=config["persistence"]["verify_after_write"])
elif target == "memory_md":
append_to_memory(fact, verify=config["persistence"]["verify_after_write"])
elif target == "tools_md":
append_to_tools(fact, verify=config["persistence"]["verify_after_write"])The persistence path can mutate several durable workspace files based on extracted message content, without an approval gate in the write flow.
- **On Session End**: Automatically run after each conversation (requires AGENTS.md hook) - **Heartbeat Backfill**: Scan recent days for missed conversations (configurable)
The background/session-end behavior is disclosed and purpose-aligned, but it creates ongoing autonomous processing after normal conversations.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Automatically extracts key facts from your conversations and persists them to the appropriate local memory files (WARM_MEMORY.md, MEMORY.md, ontology, USER.md). Works silently in the background without interrupting the user flow.
Private conversation content is automatically transformed into persistent memory that can be reused in future contexts, with no per-fact confirmation described.
