Knowledge Retrieval Publish

PendingVirusTotal audit pending.

Overview

No VirusTotal analysis has been recorded yet. File reputation checks will appear here once the artifact hash has been scanned.

Findings (0)

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

Private or deleted document contents may remain searchable or recoverable from the local skill workspace until the user manually deletes the cache/index directories.

Why it was flagged

The skill persistently stores search indexes and analysis caches containing extracted document information, and the documentation states they are not automatically removed when source files are deleted.

Skill content
BM25 索引和图片分析缓存保存在 skill 工作目录中,不会随原文件删除而自动清除
Recommendation

Use this only on a dedicated folder you intend to index, avoid mixing highly sensitive files into that folder, and manually clear the cache/index when removing documents or uninstalling.

What this means

All supported files under the configured folder can be indexed for later reuse, including newly added files, without per-file review shown in the artifacts.

Why it was flagged

The indexing script recursively scans the configured source directory and saves the full searchable corpus into the persistent BM25 index.

Skill content
for entry in sorted(project_root.rglob("*")):
...
retriever.save(str(index_dir), corpus=corpora)
Recommendation

Add explicit include/exclude controls, confirm the exact folder before indexing, and document that all supported files under that folder may be stored in the local index.

What this means

If the active model is cloud-hosted or not approved for the documents being searched, file excerpts may leave the local machine through normal model-context processing.

Why it was flagged

The skill discloses that local file contents may be provided to the active model as context for reasoning.

Skill content
文件内容可能以上下文形式传入大模型进行处理,请确保选用你信任或获批的模型运行此 SKILL。
Recommendation

Use an approved model/provider for sensitive documents, and do not run searches over files that your model policy does not allow.

What this means

Users may need to install dependencies manually or verify the environment, and should not assume the registry metadata fully captures setup requirements.

Why it was flagged

The documentation requires external Python packages and references a setup script, while the registry states there is no install spec and the provided manifest does not include setup.bat.

Skill content
Run `scripts/setup.bat` from the skill directory ... pip install bm25s pdfminer.six python-pptx
Recommendation

Install only reviewed dependencies from trusted sources, prefer pinned versions where possible, and verify any setup script before running it.