AOI Sandbox Shield (Lite)
PassAudited by ClawScan on May 1, 2026.
Overview
This appears to be a local snapshot and JSON-validation helper with no network or apply actions, though it can leave local copies of OpenClaw config and memory files.
This skill is reasonable for local audit snapshots and JSON config validation. Before using it, remember that snapshots are persistent local copies of OpenClaw config and memory/state files; inspect them before sharing and clean them up when no longer needed.
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.
Users have less external provenance context for the package, even though the included files are small and self-contained.
The registry metadata does not provide an independent source repository or homepage for provenance review. The bundled package has no dependencies or install script, so this is a notice rather than a concern.
Source: unknown; Homepage: none
Review the bundled SKILL.md and skill.js before installing, and prefer a publisher/source link for future releases.
Private OpenClaw configuration, state, or memory content may remain in local snapshot folders and could be exposed if those folders are shared or attached to release artifacts without review.
The snapshot command copies local agent state and memory/context files into a persistent snapshot directory. This is aligned with the snapshot purpose, but it duplicates potentially private local context.
const snapRoot = path.join(workspace, '.sandbox_snapshots_lite'); ... path.join(workspace, 'CURRENT_STATE.md'), path.join(workspace, 'MEMORY.md') ... fs.copyFileSync(p, path.join(dir, base));
Use the snapshot command only when needed, review snapshot contents before sharing, and delete or rotate old snapshots if they contain sensitive context.
