Back to skill
v1.1.0

测试用例生成器

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 8:11 AM.

Analysis

The skill appears purpose-aligned for generating test cases from user-provided project documents, with only ordinary local script and dependency considerations.

GuidanceThis skill looks coherent for generating test cases from requirements documents. Before installing or using it, be aware that it may process private project documents and create local output files; use a trusted Python environment and review generated Excel/images before distributing them.

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.

Abnormal behavior control

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.

Agentic Supply Chain Vulnerabilities
SeverityLowConfidenceHighStatusNote
scripts/extract_pdf_images.py
依赖:
    pip install PyMuPDF

The 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.

User impactA user may need to install local Python dependencies before using the PDF image extraction helper.
RecommendationInstall dependencies from trusted sources and consider using a project virtual environment with reviewed or pinned package versions.
Unexpected Code Execution
SeverityLowConfidenceHighStatusNote
scripts/extract_pdf_images.py
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.

User impactRunning the helper will read the chosen PDF and create image files in the selected output folder.
RecommendationRun it only on documents and output directories you intend to process, and review generated files before sharing them.