文档内容总结 Summary & Analysis txt/docx/pdf/xlsx/xls
ReviewAudited by ClawScan on May 1, 2026.
Overview
This appears to be a straightforward local document summarizer, but users should avoid sensitive files and be aware it may install document-reading Python packages on first use.
Before installing, confirm you trust the skill source, use a controlled Python environment, and only point it at documents you are comfortable sharing with the OpenClaw LLM. Do not use it for confidential, regulated, or highly private files unless your policy allows that data flow.
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.
If you summarize a confidential file, its text may be exposed to the LLM context rather than remaining only in the original local document.
The skill explicitly sends extracted local document text into the OpenClaw LLM flow. This is disclosed and central to the purpose, but it is still a sensitive data boundary users should notice.
Extracted content will be sent to OpenClaw LLM for summary/analysis — DO NOT use with sensitive/confidential files.
Use this only with files you are comfortable sending to the OpenClaw LLM, or redact sensitive content first and review the platform's data handling policy.
On first use, the skill may install Python packages into the active Python environment, which can affect that environment beyond this single document summary.
If a required parser library is missing, the script automatically installs it with pip. The packages are purpose-aligned and disclosed in SKILL.md, but runtime installation changes the local Python environment and relies on package-index provenance.
subprocess.check_call([sys.executable, "-m", "pip", "install", package_name], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
Run the skill in a virtual environment if possible, or manually install and verify the listed dependencies before use.
