technical writing

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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 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.