chinese gongwen writing
PassAudited by ClawScan on May 13, 2026.
Overview
This skill is a coherent Chinese official-document writing aid with an optional local DOCX renderer and no evidence of hidden network access, credential use, persistence, or destructive behavior.
This appears safe to install for drafting and formatting Chinese official documents. If you use the optional DOCX renderer, install its Python dependency in a controlled environment, choose input/output file paths carefully, and verify that any generated official-looking document is accurate and authorized before distribution.
Findings (2)
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.
Installing the optional renderer dependency will fetch code from the Python package ecosystem.
The skill depends on an external Python package with a lower-bound version rather than an exact pin. This is common for a DOCX renderer, but users should be aware of the package dependency.
python-docx>=1.1
Install dependencies in a virtual environment from a trusted package index, and pin or review versions if using the skill in a controlled workplace environment.
If you request DOCX output, the agent may run local code and create or overwrite the output file path you provide.
The optional renderer runs local Python code that reads a selected input file and writes a DOCX output file. This is expected for the advertised DOCX generation feature.
text = Path(draft_path).read_text(encoding="utf-8") ... doc.save(out_path)
Use explicit draft and output paths you trust, review generated documents before sending them, and avoid pointing the output at important existing files.
