fnOS OpenClaw Updater

ReviewAudited by ClawScan on May 2, 2026.

Overview

This skill transparently documents how to update OpenClaw via npm in its managed install directory, but it does change the local OpenClaw installation and should only be run intentionally.

Use this skill only when you deliberately want to update OpenClaw. Before running it, confirm that OPENCLAW_DATA_DIR points to the correct managed-install location, compare the current and latest versions, and be comfortable with npm installing the selected OpenClaw package.

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.

What this means

Running the skill can change the local OpenClaw/gateway version and behavior.

Why it was flagged

The skill instructs the agent to run a local npm install command that overwrites the existing OpenClaw package in a persistent managed-install directory.

Skill content
cd "$OPENCLAW_DATA_DIR/openclaw" && npm install openclaw@<最新版本>
Recommendation

Only invoke it when you intend to update OpenClaw; verify the target directory and version first, and consider having a rollback or backup plan.

What this means

If the npm package or registry result is wrong or compromised, the update could install an unintended OpenClaw version.

Why it was flagged

The skill resolves the latest OpenClaw version from npm at run time and installs it without any artifact-shown lockfile, checksum, signature, or pinned version. This is expected for an updater but still relies on npm/package provenance.

Skill content
npm view openclaw version ... npm install openclaw@<最新版本>
Recommendation

Confirm the version you are installing and use trusted npm registry settings; avoid running the update during suspected registry or package compromise.