Back to skill
v0.2.1

DEPRECATED - Bobo Context Cleanup

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 6:35 AM.

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.

GuidanceBefore installing or using it, confirm you want a tool that can move workspace memory files into an archive. Use analyze and plan first, review the file list carefully, and reserve --yes for cases where you have already approved the plan.

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.

Abnormal behavior control

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.

Tool Misuse and Exploitation
SeverityLowConfidenceHighStatusNote
SKILL.md
# 非交互执行(需谨慎)
./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.

User impactIf --yes is used too broadly, candidate memory files can be archived without an additional interactive prompt.
RecommendationAvoid --yes unless the user has explicitly approved the exact plan or the run is a deliberate dry-run/automation workflow.
Sensitive data protection

Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.

Memory and Context Poisoning
SeverityLowConfidenceHighStatusNote
cleanup.sh
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.

User impactArchived memory records may no longer be available as active context for future agent sessions.
RecommendationRun analyze and plan first, inspect the listed files, and confirm only if the archive candidates are acceptable.