DOCX Formatter

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to be a straightforward Word document formatter; the main thing to notice is that it installs an unpinned Python dependency during setup.

This appears safe for formatting documents. Before installing, note that the setup script installs python-docx from the package index without a pinned version; if that matters for your environment, pin the dependency or review the package source first.

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

Installing the skill may fetch the latest available python-docx package from the configured package index, so future installs could differ if the package changes.

Why it was flagged

The setup script installs an external Python package without pinning a version. This is purpose-aligned for DOCX generation, but users should be aware of the dependency source and version.

Skill content
uv pip install python-docx
Recommendation

Prefer a pinned dependency version or lockfile, and run the install in the included virtual environment rather than a global Python environment.