technical writing

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: technical-writing Version: 1.0.0 The technical-writing skill bundle is a comprehensive collection of templates, style guides, and best practices for developer documentation. It includes a utility script, scripts/scaffold.sh, which creates a standard documentation directory structure and populates it with boilerplate markdown and configuration files. The content is purely informational and functional, with no evidence of malicious intent, data exfiltration, or prompt-injection attacks.

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.