Resize Move Partition Coach

WarnAudited by ClawScan on May 10, 2026.

Overview

This disk-partitioning skill is not clearly malicious, but it should be reviewed because it silently installs a downloaded administrator-level tool and exposes broad commands that could change your drive layout.

Install only if you trust the EaseUS installer source and understand the risk of partition changes. Prefer manually downloading from the vendor, verify the installer signature, back up your data, and require a visible preview/confirmation before allowing any resize, move, split, or allocation operation.

Findings (3)

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

A downloaded installer would run with installer-level impact on the machine, and the user has limited visibility into what is being installed during the silent flow.

Why it was flagged

The script downloads an installer executable from remote mirrors and runs it silently. The provided code does not show checksum, signature, or pinned-release verification before execution.

Skill content
url = f"https://{host}.easeus.com/epm/free/epm_free_ob.exe?source=skills&dest={dest_arg}" ... subprocess.run([str(dest_path), "/verysilent", "/suppressmsgboxes", "/norestart", "/log"], check=False)
Recommendation

Avoid silent installation by default. Provide a normal install spec, verify the vendor signature or checksum, show the exact download URL, and require explicit user approval before running the installer.

What this means

An agent or user could launch partition-manager actions outside the intended resize/move path, which could lead to unintended disk layout changes if the external tool applies them.

Why it was flagged

The first command-line argument is passed directly as an EPMUI shell command. For a partition manager, an unrestricted command pass-through is broader than a tightly scoped resize/move workflow.

Skill content
shellcmd = argv[0] ... f"shellcmd={shellcmd}", f"shellparam={tmp_file}",
Recommendation

Restrict the helper to documented safe commands, validate the target drive/partition, show a dry-run plan, and require explicit user confirmation before any disk-changing operation.

What this means

Running this elevated can change disks and system state; mistakes or unwanted behavior could be difficult to undo.

Why it was flagged

The skill explicitly asks for administrator/UAC elevation. That is expected for partition work, but it gives the installer and app high system privileges.

Skill content
Run terminal as Administrator before script execution or app launch; Approve User Account Control prompts during install and launch
Recommendation

Only run it from a trusted source, back up important data first, verify the partition preview carefully, and do not approve UAC prompts unless you intentionally started the action.