文游剧本生成系统
PassAudited by ClawScan on May 1, 2026.
Overview
This skill coherently generates text-game scripts and can export them as a Word file, with only routine local Python/dependency and Desktop file-write considerations.
This appears safe for its stated purpose. Before installing or using export, be comfortable running a local Python script, installing python-docx if needed, and letting the skill create a Word document on your Desktop.
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.
Using the export feature will run a local Python script and create a document on the Desktop.
The skill asks the agent to run a local Python helper to create a Word document. This is disclosed and directly supports the export feature, but it is still local command execution.
python "SKILL_DIR/scripts/export_word.py" "$HOME/Desktop/文字游戏剧本_<标题>.docx" "<标题>" - <<EOF
Use the export step only when you want a local Word file, and confirm the output filename/path is appropriate.
Installing the dependency may fetch the latest available package version from the Python package index.
The skill depends on the external python-docx package for Word export, but the package version is not pinned and no install spec declares it.
需要安装 python-docx: ```bash pip install python-docx ```
If installing manually, prefer a trusted Python environment and consider pinning a known-good python-docx version.
A malformed or unintended filename/path could create or overwrite a document in an unexpected location.
The export helper writes to the path passed on the command line. SKILL.md scopes this to the Desktop, but the script itself accepts any output path.
output_path = sys.argv[1] ... doc.save(output_path)
Keep exports to a clear Desktop path and avoid titles containing path separators or unusual filename characters.
