Protocol Deviation Classifier

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: protocol-deviation-classifier Version: 0.1.0 The protocol-deviation-classifier skill bundle is a legitimate tool designed for clinical trial quality management. The core logic in `scripts/main.py` uses rule-based scoring and regular expressions to classify protocol deviations according to GCP/ICH E6 standards. The code relies solely on the Python standard library, contains no network requests, and performs no suspicious file system operations or command executions. The documentation in `SKILL.md` is well-structured and lacks any instructions that could be interpreted as prompt injection or malicious intent.

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

A user might treat the generated classification or report as authoritative for trial safety or regulatory purposes.

Why it was flagged

The skill presents automated classifications and regulatory-style reports for a high-stakes clinical trial compliance context. This is purpose-aligned, but the wording could cause users to over-rely on the output without expert review.

Skill content
- **Automatic Classification**: Automatically determines severity based on deviation description
- **Regulatory Basis**: Classification basis complies with GCP, ICH E6, and FDA/EMA guidelines
- **Report Generation**: Generates deviation classification reports that meet regulatory requirements
Recommendation

Use the tool as decision support only, and require review by qualified clinical QA/regulatory personnel before taking action or including results in submissions.

What this means

Manual dependency installation could introduce unnecessary third-party package exposure if the environment does not actually need these packages.

Why it was flagged

The requirements file lists unpinned Python packages that overlap with standard-library modules in modern Python versions. There is no automatic install spec, so this is not evidence of automatic unsafe installation, but users should verify dependencies before manually installing them.

Skill content
dataclasses
enum
Recommendation

Review whether these dependencies are needed for the target Python version and prefer pinned, trusted packages or standard-library imports where possible.