Local Memory

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a coherent local memory skill, with notable but disclosed persistence and dependency-installation risks.

Before installing, review the setup script, consider using a virtual environment, and remember that anything you store becomes persistent local memory that can be recalled later.

Findings (2)

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.