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.
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.
The checkpoint can contain sensitive project context, and if it is stale or tampered with it could mislead the agent after compaction.
The skill creates and later trusts a persistent workspace file containing task state, decisions, changed files, and next steps.
write `.context-checkpoint.md` in the workspace root ... check for it and use it to restore context. Delete after consuming.
Review unexpected checkpoint files, avoid putting secrets in them, and treat checkpoint contents as state to verify rather than unquestioned instructions.
Delegated work may happen outside the main conversation context, so task descriptions should be scoped and should not include unnecessary sensitive details.
The skill intentionally delegates work to sub-agents and passes task descriptions across an agent boundary.
spawn sub-agents for remaining tool-heavy work ... Sub-agents have no conversation context — they only know what the task field tells them.
Use sub-agents for bounded tool-heavy tasks, and require normal user approval before delegated work performs destructive, publishing, deployment, or account-changing actions.
Applying these changes could affect future sessions, including earlier compaction or more aggressive pruning that may require re-reading files or re-running tools.
The skill provides instructions for changing OpenClaw configuration and restarting the gateway, which can persistently alter agent compaction and pruning behavior.
use the `gateway` tool: `gateway config.patch` ... `openclaw gateway restart`
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.
