Personal Genomics

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a coherent local DNA-analysis skill, but it handles highly sensitive genetic and health information and saves persistent reports that users should protect.

Before installing, be comfortable with the skill reading your raw DNA file and saving detailed genetic and health reports under `~/dna-analysis/reports/`. Protect those files, verify any optional external installation source, and do not use medication or disease-risk outputs as a substitute for professional medical advice.

Findings (4)

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

Genetic reports can reveal sensitive health, ancestry, medication, and family-related information if they are shared, synced, indexed, or left unprotected.

Why it was flagged

The skill intentionally creates persistent local summaries and reports containing genetic and health information, including an AI-optimized summary that could be reused by an agent.

Skill content
Output Location

`~/dna-analysis/reports/`

- `agent_summary.json` - AI-optimized, priority-sorted
- `full_analysis.json` - Complete data
- `report.txt` - Human-readable
- `genetic_report.pdf` - Professional PDF report
Recommendation

Keep the output directory private, avoid adding these files to shared agent memory or cloud sync unless intended, and delete or encrypt reports when no longer needed.

What this means

If a user installs from the external repository rather than the packaged skill, they are trusting that repository and its dependencies.

Why it was flagged

The README documents an optional external GitHub clone and package-install path, while the registry metadata lists the source as unknown and provides no install spec.

Skill content
git clone https://github.com/wkyleg/personal-genomics.git
cd personal-genomics
pip install -r requirements.txt
Recommendation

Prefer the packaged ClawHub install when available, and verify the external repository and requirements before running pip installs.

What this means

A user might make health or medication decisions based on generated genetic interpretations without professional review.

Why it was flagged

The skill generates medical-like recommendations related to medications and dosing. This is aligned with its stated pharmacogenomics purpose, but users could over-trust the output.

Skill content
Medication Interaction Checker - cross-reference any medication list
...
Dosing adjustments and alternative medication suggestions
Recommendation

Use the reports as educational input only and confirm medication, cancer-risk, carrier-status, or disease-risk findings with a qualified clinician or genetic counselor.

What this means

If this module is imported or run unintentionally, it may attempt to read a local `raw_data.txt` file from the current directory.

Why it was flagged

This file performs file loading at module top level using a hardcoded local filename, rather than only inside a guarded CLI entry point.

Skill content
print("Loading raw data...")
df = pd.read_csv('raw_data.txt', sep='\t', comment='#',
Recommendation

Use the documented main entry point with an explicit DNA file path, and avoid importing or running auxiliary scripts unless you intend their file access.