gongwenformat

AdvisoryAudited by Static analysis on Mar 19, 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

A user could receive an official document with the wrong title or missing later sections while believing the tool only reformatted the draft.

Why it was flagged

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.

Skill content
doc_title = args.title if args.title else "关于旅游行业人工智能咨询业务的调研报告" ... if text == '关键表格':
            break
Recommendation

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

What this means

If run with the wrong output path, the user could overwrite a document copy or produce an altered version without a backup.

Why it was flagged

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.

Skill content
parser.add_argument("input_path")
    parser.add_argument("output_path") ... doc.save(str(dst))
Recommendation

Run the scripts only on copies, choose a new output filename, and manually compare the formatted document with the original before using it.