ManualExpert
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears to do what it claims—translate manuals and export a Word file—with only expected local file conversion and a minor setup/dependency note.
Before installing, confirm you are comfortable giving the agent the manuals you want translated and allowing it to generate a local .docx export. Use trusted dependencies if the Python docx package must be installed, and avoid output paths that could overwrite important files.
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.
The skill can create a Word document from the generated Markdown file, and the output path could overwrite a file if the user or agent chooses an existing path.
The skill directs the agent to run a local Python script for export. This is disclosed and purpose-aligned, but it is still local code execution that reads and writes user-selected files.
After generating the complete Markdown file, always use the included script to convert it into a structured Word document... python scripts/export_docx.py <input_markdown_file> <output_docx_file>
Run the export only on intended Markdown files and choose a safe output path for the .docx file.
The export may fail until the required package is installed, and users may need to choose a trusted package source themselves.
The export script depends on the python-docx package, while the supplied install information declares no install spec or required dependencies. This is a setup/provenance gap rather than evidence of malicious behavior.
import docx
If installation is needed, install python-docx from a trusted package index and consider pinning the version in a requirements file.
