Memory Shrink

PendingStatic analysis audit pending.

Overview

No static analysis result has been recorded yet. Pattern checks will appear here once the artifact has been analyzed.

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.

NoteHigh Confidence
ASI01: Agent Goal Hijack
What this means

The agent may pause the current task and perform memory archiving when context usage is high.

Why it was flagged

This changes task priority when context is very high. It is consistent with the cleanup purpose, but users should know the skill can interrupt other work to archive memory.

Skill content
| > 90% | 强制存档,跳过所有其他操作 |
Recommendation

Use this skill only if automatic context cleanup is desired, and review its output after it runs.

What this means

Older memory files in the targeted workspace may be moved into an archive folder, which can change what memory is readily available.

Why it was flagged

The helper script performs local file mutation by moving old markdown memory files into an archive directory. This is purpose-aligned, but the default workspace path should be checked.

Skill content
WORKSPACE="${1:-/root/.openclaw/workspace-code_analyst}" ... mv "$file" "$ARCHIVE_DIR/${TIMESTAMP}_${basename}"
Recommendation

Run the script only against the intended workspace, and confirm the archive directory contains the expected files.

What this means

Future sessions may have less detail available if memories are summarized or archived.

Why it was flagged

The skill searches and updates persistent memory. That is central to its purpose, but changes to memory can influence future agent context.

Skill content
调用 `memory_search` 查找可删除内容,然后更新 memory 文件。
Recommendation

Keep backups or review archived memories if important project context should remain immediately available.