中文哈佛论文生成

PassAudited by ClawScan on May 10, 2026.

Overview

This looks like a local Word-document formatting helper, but users should review the generated file because the script uses Pandoc and may include the original source text in the output.

This skill is reasonable to use for local document formatting. Before installing or using it, make sure you trust your Pandoc installation, provide only the source file you intend to convert, choose a safe output location, and review the final Word document for placeholders or included raw source text.

Findings (3)

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 can read the local file path you provide and write a Word document to the output path you provide.

Why it was flagged

The helper script reads the user-selected source file and invokes Pandoc to create the requested Word document. This local command execution is expected for the skill's purpose, but users should choose input and output paths deliberately.

Skill content
cat "$SOURCE" >> "$TMP_MD" ... pandoc "$TMP_MD" -o "$OUT_DOCX"
Recommendation

Use it only with intended source files, verify the output path, and review the generated .docx before sharing or submitting it.

What this means

The skill may fail until Pandoc is installed, and users must decide where to obtain that dependency.

Why it was flagged

The script depends on Pandoc, while the registry requirements declare no required binaries and there is no install spec. This is an under-declared setup dependency rather than evidence of malicious behavior.

Skill content
if ! command -v pandoc >/dev/null 2>&1; then echo "未安装 pandoc,请先安装后重试。"
Recommendation

Install Pandoc only from a trusted source if you intend to use the helper script.

What this means

Your rough notes or source material may appear in the generated Word file if you do not remove them.

Why it was flagged

The generated Markdown says the source is for rewriting and not directly retained, but the script appends the original source into the document that Pandoc converts. This could leave raw source material in the final .docx.

Skill content
# 素材原文(用于改写,不直接保留) ... cat "$SOURCE" >> "$TMP_MD"
Recommendation

Open and inspect the .docx before submitting or sharing it, and remove any raw source section if it is not intended to be included.