Humanize AI

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: humanize-ai Version: 1.1.0 The skill bundle is designed to analyze and humanize text content using Python scripts. While it declares the `Shell` tool in `SKILL.md`, which is a high-risk capability, its usage is transparently demonstrated for executing the Python scripts (`analyze.py`, `humanize.py`) and performing basic file iteration, which is directly aligned with the stated purpose of processing local files. The Python scripts themselves only perform local text processing, reading from specified input files or stdin, and writing to specified output files or stdout, without any evidence of data exfiltration, malicious execution, persistence mechanisms, or deceptive prompt injection.

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 without backups or review, many text files could be changed at once.

Why it was flagged

The documented batch workflow can rewrite every .txt file in the current directory. This is user-directed and purpose-aligned, but it is still broad local file mutation.

Skill content
for f in *.txt; do
  python scripts/humanize.py "$f" -o "$f.tmp" && mv "$f.tmp" "$f"
done
Recommendation

Run on copies or version-controlled files first, review diffs, and avoid broad globs in directories containing important documents.

What this means

Users have less external context for who maintains the skill or where updates come from.

Why it was flagged

The registry information does not provide an upstream source or homepage for provenance checks. The provided code is simple and self-contained, so this is a provenance note rather than a concern.

Skill content
Source: unknown
Homepage: none
Recommendation

Review the included scripts before use and prefer pinned, auditable sources for future updates.

What this means

Using this skill may violate academic, workplace, publishing, or platform rules about AI-generated content disclosure.

Why it was flagged

The skill explicitly advertises detector-bypass use. This is disclosed and matches the implementation, but it can be used to misrepresent AI-assisted writing.

Skill content
Use when you want to analyze text in AI detector and bypass it in future
Recommendation

Use it for legitimate editing and clarity improvements, and follow any rules requiring disclosure of AI assistance.