Disk Analyzer

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: disk-analyzer Version: 1.0.0 The disk-analyzer skill is a straightforward implementation of disk usage utilities using standard Linux commands (df, du, find). The bash script in scripts/duf.sh performs legitimate system analysis tasks such as identifying large files and summarizing directory usage without any evidence of data exfiltration, persistence, or malicious execution.

Findings (0)

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

If run on sensitive directories, the output could expose private file names, directory names, mount points, or storage usage details to the conversation context.

Why it was flagged

The script can scan broad local filesystem paths and output file or directory size information. This is aligned with a disk analyzer, but users should notice that broad paths may reveal local file names and system layout in the agent output.

Skill content
usage) path="${1:-/}" ... du -sh "$path"/* ... top) ... find "$path" -type f ... find-big) ... find "$path" -type f
Recommendation

Run it only on directories you intend to inspect, and avoid sharing exported reports or command output if they include sensitive path names.