Local Memory

AdvisoryAudited by Static analysis on Apr 30, 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

Package or model changes upstream could affect what code or files are installed in the user's Python environment.

Why it was flagged

The setup script installs unpinned Python dependencies and downloads a model. This is consistent with the skill's purpose, but dependency and model provenance matter.

Skill content
[py, "-m", "pip", "install", "chromadb", "sentence-transformers", "certifi"] ... SentenceTransformer("BAAI/bge-small-zh-v1.5")
Recommendation

Install in an isolated Python environment, review dependencies, and prefer pinned package/model versions if possible.

What this means

Information saved through this skill may be recalled in later sessions and could influence future agent responses.

Why it was flagged

The skill persistently stores user-provided memory text in a local ChromaDB database under the skill directory.

Skill content
DB_PATH = os.path.join(SCRIPT_DIR, '..', 'data') ... collection.add(... documents=[args.text] ...)
Recommendation

Only store information you intentionally want retained, avoid secrets, and use the forget command to remove memories when needed.