gongwenformat
ReviewAudited by ClawScan on May 10, 2026.
Overview
The skill is mostly a local document formatter, but one bundled converter can silently give documents an unrelated title and omit later sections.
Use this skill cautiously for formatting guidance. If you run the bundled scripts, work on copies, provide an explicit title, and carefully compare the output against the original—especially for any content after “关键表格”. No evidence of exfiltration or persistence was found.
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.
A user could receive an official document with the wrong title or missing later sections while believing the tool only reformatted the draft.
The converter is packaged as part of a general gongwen formatting skill, but this hard-coded title and stop condition can silently change or omit content in arbitrary documents.
doc_title = args.title if args.title else "关于旅游行业人工智能咨询业务的调研报告" ... if text == '关键表格':
breakDo not use this converter on originals without reviewing a diff; remove the hard-coded title/filtering, require explicit user confirmation for omissions, and report any skipped content.
If run with the wrong output path, the user could overwrite a document copy or produce an altered version without a backup.
The formatter reads a user-selected DOCX and saves to a user-selected output path, which is expected for a document-formatting tool but can overwrite a destination file if the same or important path is chosen.
parser.add_argument("input_path")
parser.add_argument("output_path") ... doc.save(str(dst))Run the scripts only on copies, choose a new output filename, and manually compare the formatted document with the original before using it.
