technical writing

PassAudited by ClawScan on May 1, 2026.

Overview

This documentation-writing skill appears benign; the main thing to notice is an optional scaffold script that writes template documentation files if you run it.

This skill is suitable for writing and structuring developer documentation. Before using the included scaffold script, inspect it and run it only in the directory where you want documentation templates created.

Findings (1)

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 you run the scaffold script, it will create documentation folders and write template files in the chosen path; in an existing directory, those specific template files could be overwritten.

Why it was flagged

The skill includes a Bash scaffolding script that creates directories and writes template files. This is purpose-aligned for a documentation skill and shows no network, credential, deletion, or hidden execution behavior, but it is still executable local code that changes the filesystem when run.

Skill content
PROJECT_NAME="${1:-docs}" ... mkdir -p "$PROJECT_NAME"/{adr,runbooks,api,guides,references,assets} ... cat > "$PROJECT_NAME/README.md"
Recommendation

Run the script only intentionally, preferably with an explicit new or empty project directory, and review the generated files before committing them.