Healthcheck Ready

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a simple local health-check skill, though users should not treat it as a full security or hardening audit.

This skill looks safe for a basic local readiness snapshot. Before relying on it, remember that it checks resource usage and a few processes only; it does not prove that OpenClaw is current, fully hardened, or secure.

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

The skill may display host utilization, service presence, usernames, and process command names in the agent conversation or logs.

Why it was flagged

The script uses fixed local system commands to inspect host resource usage and service/process status. This is expected for the stated health-check purpose, but users should know it reads local runtime state.

Skill content
DISK_USAGE=$(df -h / ...); CPU_LOAD=$(uptime ...); MEM_USED_PERCENT=$(free -h ...); ps aux --sort=-%cpu | head -6; pgrep -f "openclaw-gateway"
Recommendation

Use it as a local operational snapshot and review the output before sharing it outside your environment.

What this means

A user could mistakenly believe the host has passed a full security-readiness review.

Why it was flagged

This wording implies version and hardening validation, while the provided script performs only basic disk, CPU, memory, and service checks. The 'starter scaffold' note reduces concern, but the result should not be over-trusted.

Skill content
Run to confirm OpenClaw is up-to-date and hardened.
Recommendation

Treat this as a starter health check only; use separate, explicit checks for OpenClaw versioning, configuration hardening, and security posture.