Context Management

Security checks across malware telemetry and agentic risk

Overview

The skill coherently manages agent context, but it can write local checkpoint state, delegate work to sub-agents, and guide persistent OpenClaw config changes that users should review.

This appears safe for its stated purpose. Before installing, be aware that it may create a .context-checkpoint.md file in your workspace, ask the agent to delegate tool-heavy work to sub-agents, and recommend OpenClaw config changes; review those files and patches before relying on them or applying persistent changes.

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

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.

#
ASI06: Memory and Context Poisoning
Low
What this means

The checkpoint can contain sensitive project context, and if it is stale or tampered with it could mislead the agent after compaction.

Why it was flagged

The skill creates and later trusts a persistent workspace file containing task state, decisions, changed files, and next steps.

Skill content
write `.context-checkpoint.md` in the workspace root ... check for it and use it to restore context. Delete after consuming.
Recommendation

Review unexpected checkpoint files, avoid putting secrets in them, and treat checkpoint contents as state to verify rather than unquestioned instructions.

#
ASI07: Insecure Inter-Agent Communication
Low
What this means

Delegated work may happen outside the main conversation context, so task descriptions should be scoped and should not include unnecessary sensitive details.

Why it was flagged

The skill intentionally delegates work to sub-agents and passes task descriptions across an agent boundary.

Skill content
spawn sub-agents for remaining tool-heavy work ... Sub-agents have no conversation context — they only know what the task field tells them.
Recommendation

Use sub-agents for bounded tool-heavy tasks, and require normal user approval before delegated work performs destructive, publishing, deployment, or account-changing actions.

#
ASI02: Tool Misuse and Exploitation
Medium
What this means

Applying these changes could affect future sessions, including earlier compaction or more aggressive pruning that may require re-reading files or re-running tools.

Why it was flagged

The skill provides instructions for changing OpenClaw configuration and restarting the gateway, which can persistently alter agent compaction and pruning behavior.

Skill content
use the `gateway` tool: `gateway config.patch` ... `openclaw gateway restart`
Recommendation

Review the exact config patch before applying it, keep a backup and rollback plan, and prefer conservative settings unless you intentionally want more aggressive pruning.