测试用例生成器
Analysis
The skill appears purpose-aligned for generating test cases from user-provided project documents, with only ordinary local script and dependency considerations.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
依赖:
pip install PyMuPDFThe helper script documents installing PyMuPDF without a pinned exact version. This is expected for PDF image extraction, but users should obtain dependencies from trusted package sources.
doc = fitz.open(str(pdf_path)) ... output_dir.mkdir(parents=True, exist_ok=True) ... pix.save(str(img_path))
The included Python helper opens the user-provided PDF and writes extracted image files to disk. This local code execution and file output are expected for the skill's image-extraction purpose.
