Split Tool

PassAudited by ClawScan on May 4, 2026.

Overview

This appears to be a straightforward local file-splitting skill with no network, credential, or hidden background behavior, though it can create or overwrite local output files.

Before installing, verify how the `split-tool` command is connected to the included script, and run it in a safe output directory or with a unique prefix so it does not overwrite existing files.

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

If the chosen prefix matches existing files, those files could be replaced by split-file chunks.

Why it was flagged

The script writes output files using a user-controlled prefix and opens them in write-binary mode, which will overwrite existing files with the same generated names.

Skill content
part_path = f"{prefix}{part_num:03d}"
            with open(part_path, 'wb') as out:
                out.write(chunk)
Recommendation

Use a dedicated output prefix or directory and check for existing files before running the tool.

What this means

Users may need to manually verify what executable is being run when invoking `split-tool`.

Why it was flagged

The skill documents a `split-tool` command and includes a Python script, but it does not declare how that command is installed or connected to the script.

Skill content
No install spec — this is an instruction-only skill.
Recommendation

Confirm the command path or run the reviewed script directly from a trusted location.