Variant Pathogenicity Predictor

ReviewAudited by ClawScan on May 10, 2026.

Overview

No evidence of data theft or persistence was found, but the skill should be reviewed because its clinical-genetics claims and documented commands do not match the simple included script.

Review this skill before installing or using it. It does not appear to steal data or persist, but it should not be relied on for clinical decisions: the documentation overstates ACMG/VCF/report capabilities, while the code only calculates a simple score from manual inputs and defaults missing values.

Findings (3)

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 could believe the skill performs validated variant interpretation when it does not implement the documented clinical or file-processing functionality.

Why it was flagged

The user-facing documentation promises VCF/report workflows and clinical-style ACMG/confidence output, but the included script only computes a simple composite score from three optional numeric inputs. This mismatch can cause users or agents to over-trust unsupported medical genetics results.

Skill content
python scripts/main.py --vcf variants.vcf --output report.json ... Output ... - ACMG guideline interpretation ... - Confidence assessment
Recommendation

Revise the documentation to match the implemented CLI, remove unsupported ACMG/confidence claims, require explicit input scores, and add clear non-clinical-use warnings unless validated clinical logic is implemented.

What this means

The tool may output a classification even when the user has not supplied real prediction scores, increasing the chance of misleading interpretation.

Why it was flagged

The code substitutes default scores when inputs are missing and still emits a pathogenicity classification. In this clinical-genetics context, that can produce authoritative-looking results without variant-specific evidence.

Skill content
variant = {
            "REVEL": args.revel or 0.5,
            "CADD": args.cadd or 15,
            "PolyPhen": args.polyphen or 0.5
        }
Recommendation

Fail closed when required scores are missing, clearly label demo/default behavior, and avoid producing clinical-sounding classifications without validated inputs.

What this means

It is harder to verify the tool's methodology, authorship, or maintenance status.

Why it was flagged

The skill has limited provenance information. The included code is small and has no dependencies, so this is a provenance notice rather than evidence of malicious behavior.

Skill content
Source: unknown
Homepage: none
Recommendation

Review the included code and methodology before use, especially because the domain involves medically relevant genetic interpretation.