国顺政府发文Word格式技能

PassAudited by ClawScan on May 14, 2026.

Overview

This skill coherently converts user-provided Chinese text or Markdown into a formatted Word document, with no evidence of network access, credential use, persistence, or hidden behavior.

This appears safe for its stated purpose. Before installing or using it, make sure you trust the local Python environment and choose input/output file paths deliberately, since the script will read the selected source text and create the requested Word document.

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.

What this means

The skill will run local code that reads the chosen input file and creates the chosen Word output file.

Why it was flagged

The skill asks the agent/user to run a local Python script. This is expected for generating the Word document and the included code is purpose-aligned, but users should still notice that local code execution is involved.

Skill content
python3 scripts/create_official_docx.py input.txt output.docx --title "标题" --org "单位名称" --date "2026年5月14日"
Recommendation

Use it with input and output paths you intend, and run it in a trusted local environment.

What this means

If the dependency is missing, the user or environment may need to provide python-docx before the skill works.

Why it was flagged

The script depends on the python-docx library, while the provided install metadata does not declare an install spec or package requirement. This is a normal dependency for DOCX generation but should come from a trusted environment or package source.

Skill content
from docx import Document
Recommendation

Install dependencies only from trusted package repositories and avoid running the skill in directories containing untrusted Python modules.