Agent Memory System Guide

Security checks across malware telemetry and agentic risk

Overview

This is a coherent local-first memory workflow skill, but it intentionally creates and reuses persistent local notes, so users should manage privacy and review import/export actions.

This skill appears suitable if you want a local, file-based agent memory workflow. Before installing, be comfortable with the agent reading and updating workspace memory files, keep passwords/API keys out of those notes, review remembered facts periodically, secure any exported backup zips, and use import `--clean` only after confirming the target workspace.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

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.

#
ASI06: Memory and Context Poisoning
Low
What this means

Old or inaccurate memory notes could affect later agent responses, and private profile details may be repeatedly reused.

Why it was flagged

The skill explicitly tells the agent to load persistent local notes into context at conversation start, which is expected for a memory system but can influence future behavior if stale, overly broad, or poisoned content is stored.

Skill content
先读 SESSION-STATE.md,再读最近 1-3 天 daily notes,最后才做 memory_search。
Recommendation

Keep memory files concise, review them periodically, remove secrets or obsolete instructions, and treat remembered notes as context rather than unquestionable truth.

#
ASI02: Tool Misuse and Exploitation
Low
What this means

Using import or clean-restore incorrectly could overwrite or remove workspace memory notes and attachments, though the docs describe a pre-import backup.

Why it was flagged

The helper CLI can restore and clean the supported memory surface. This is documented, scoped, and backed up, but it still changes user memory files.

Skill content
默认导入是保守模式:会先做导入前备份... 如果你要让受支持的记忆面与备份包保持一致,使用 `python3 scripts/memory_capture.py import --clean --workspace /path/to/new-workspace --input /path/to/memory-backup.zip` 做 clean restore。
Recommendation

Run import commands only on the intended workspace, keep the pre-import backup, and use `--clean` only when you really want the backup archive to replace the supported memory files.

#
ASI05: Unexpected Code Execution
Info
What this means

Users will be executing included local helper code to create or inspect memory files.

Why it was flagged

The skill is described as instruction-only, but its documented setup includes running a packaged Python helper. This is disclosed and purpose-aligned, not hidden.

Skill content
Run `python3 scripts/memory_capture.py bootstrap --workspace /path/to/workspace`.
Recommendation

Run the helper from the installed skill package you intended to install, and review the target `--workspace` path before executing commands.