DEPRECATED - Bobo Context Cleanup
Analysis
This is a coherent cleanup skill that archives workspace memory files after a plan and confirmation, but users should review the archive list because it changes persistent agent memory.
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.
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.
# 非交互执行(需谨慎) ./skills/context-cleanup/cleanup.sh archive --yes
The skill documents a non-interactive archive mode that bypasses the confirmation prompt, while also warning that it should be used cautiously.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
MEMORY_DIR="$WORKSPACE/memory" ... find "$MEMORY_DIR" -type f -name '*.md' ... mv "$file" "$ARCHIVE_DIR/"
The script reads workspace memory Markdown files and moves selected files into an archive directory, changing what remains in active memory context.
