Openclaw Cache Kit

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to do what it claims—edit local OpenClaw caching settings—but it will change global OpenClaw defaults, enable a recurring heartbeat, and write local cache diagnostics.

Before installing, be comfortable with a local script editing ~/.openclaw/openclaw.json, restarting the OpenClaw gateway, and enabling a persistent 59-minute heartbeat. Keep the backup path printed by the script, review cache-trace logs for sensitive content, and restore the backup if the changes are not wanted.

Findings (4)

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.

What this means

Running the script can change how all default OpenClaw agents behave and may restart the local gateway.

Why it was flagged

The user-run script directly modifies OpenClaw default agent configuration and restarts the gateway. This is consistent with the caching purpose, but it affects live OpenClaw behavior.

Skill content
deep_set(config, ["agents", "defaults", "contextPruning", "ttl"], "1h") ... openclaw gateway restart 2>&1 || true
Recommendation

Review the generated backup and the changed openclaw.json settings before relying on them; restore the backup if the changes are not desired.

What this means

OpenClaw may continue making periodic cache-maintenance activity, which can affect API usage and cost.

Why it was flagged

The script configures a recurring heartbeat. This is disclosed as part of the cache-retention strategy, but it is persistent background behavior after the setup command completes.

Skill content
deep_set(config, ["agents", "defaults", "heartbeat", "every"], "59m")
Recommendation

Install only if you want ongoing heartbeat behavior; use the printed restore command or edit openclaw.json to disable it later.

What this means

Cache trace files under the OpenClaw log directory may contain information about system context or cache behavior that should not be broadly shared.

Why it was flagged

The script enables cache trace diagnostics and includes system-level data while disabling messages and prompt logging. Local diagnostic logs can still expose operational/system context depending on OpenClaw's log format.

Skill content
deep_set(config, ["diagnostics", "cacheTrace", "enabled"], True)
deep_set(config, ["diagnostics", "cacheTrace", "includeSystem"], True)
Recommendation

Check the contents and permissions of ~/.openclaw/logs/cache-trace.jsonl and prune or disable diagnostics if the logs contain sensitive context.

What this means

A user may not know from the registry metadata that local command-line tools are needed before running the scripts.

Why it was flagged

The metadata does not declare required binaries, while the included apply script checks for the openclaw CLI and python3. This is an install metadata gap, not hidden execution.

Skill content
Required binaries (all must exist): none ... Install specifications: No install spec — this is an instruction-only skill.
Recommendation

Confirm openclaw, bash, and python3 are installed before running the setup script.