genomics-precision-medicine

genomics-precision-medicine is a skill for Claude Code from aks-builds/healthcareskills. It costs 237 tokens per session (4,164 once invoked), scanned A, original, MIT.

Guidance for building software that works with genetic test data and uses it to support more tailored medical care. It covers data formats, genetic variants, laboratory interpretation, reports, and links to clinical systems.

In plain words
What is it for?
Use it for genetic-data pipelines, variant detection and annotation, clinical reports, pharmacogenomics, cancer testing, risk scores, and electronic health-record integration.
Why use it?
Genetic data uses specialized names, coordinates, standards, and interpretation rules that are easy to mix up. This helps keep those details accurate when designing or reviewing genomic systems.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the healthcare-skills plugin — 41 skills shipped together , and of healthcare-skills

Good fit Use it for genetic-data pipelines, variant detection and annotation, clinical reports, pharmacogenomics, cancer testing, risk scores, and electronic health-record integration.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aks-builds/healthcareskills/genomics-precision-medicine
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aks-builds/healthcareskills --skill genomics-precision-medicine
Clone the repo
git clone --depth 1 https://github.com/aks-builds/healthcareskills

Made for: Claude Code.

Or install healthcare-skills, the plugin that ships this one along with the rest of its 41 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for genomics-precision-medicine

README.md
[![agentmods](https://agentmods.dev/badge/skills/aks-builds/healthcareskills/genomics-precision-medicine/github.svg)](https://agentmods.dev/skills/aks-builds/healthcareskills/genomics-precision-medicine)
Your own site
<a href="https://agentmods.dev/skills/aks-builds/healthcareskills/genomics-precision-medicine"><img src="https://agentmods.dev/badge/skills/aks-builds/healthcareskills/genomics-precision-medicine/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for genomics-precision-medicine

Your own site · 80×15
<a href="https://agentmods.dev/skills/aks-builds/healthcareskills/genomics-precision-medicine"><img src="https://agentmods.dev/badge/skills/aks-builds/healthcareskills/genomics-precision-medicine.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 237 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,164 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00237 $0.04164
Opus 5 $0.00118 $0.02082
Sonnet 5 $0.00047 $0.00833
Haiku 4.5 $0.00024 $0.00416

Measured 12d ago against content hash b6e37c7788c5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

genomics-precision-medicine scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/genomics-precision-medicine/SKILL.md · 275 lines

How it starts

The opening of the file, as written. The whole thing — 275 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Genomics & Precision Medicine

You are an expert in clinical genomics and precision-medicine informatics — moving sequence data and variants through alignment, calling, annotation, classification, reporting, and EHR integration without garbling nomenclature, reference coordinates, or interpretation guidelines. You also handle pharmacogenomics, tumor boards, liquid biopsy reporting, polygenic risk scores, and the consent / return-of-results path. Do not invent gene-drug pairs, ACMG/AMP rule applications, variant classifications, or current ACMG Secondary-Findings list contents — direct the reader to ClinVar, PharmGKB, CPIC, and the current ACMG SF version for source-of-truth claims.

Initial Assessment

Check .agents/healthcare-context.md (fallback: .claude/healthcare-context.md) first. Useful sections:

  • Organization type — clinical lab, hospital genomic medicine program, pharma, research, payer
  • Regulatory roles — CLIA, CAP, NYSDOH, FDA (IVD vs. LDT), HIPAA, GDPR
  • EHR vendor and whether genomic results flow as discrete data or PDF
  • FHIR version + IGs — especially Genomics Reporting IG, mCODE, US Core
  • Reference genome standard used clinically (GRCh37 vs. GRCh38; T2T-CHM13 in research)
  • Population served — ancestry distribution affects PRS validity and variant frequencies
  • Consent and return-of-results posture — research vs. clinical, IRB role, GINA scope

If missing, ask only the questions needed for the current task.


Variant Data Formats

Format Stage Notes
FASTQ Raw reads Per-read sequence + quality (Phred). Usually gzipped, paired-end (_R1, _R2).
BAM / CRAM Aligned reads CRAM is reference-compressed — preserve the reference (and its MD5/URI) or it is unreadable.
VCF v4.x Variants Header (##fileformat=VCFv4.x) + columns CHROM/POS/ID/REF/ALT/QUAL/FILTER/INFO/FORMAT/sample(s).
gVCF Variants + reference confidence Every position has a record (variant or non-variant block); use for joint calling and clinical "no-call" awareness.
BCF Binary VCF Faster I/O for large cohorts.
MAF Mutation annotation TCGA-style somatic summary; convert from VCF via vcf2maf when needed.
Phenopackets (GA4GH) Phenotype + genotype JSON/protobuf; pairs variants to HPO terms, disease, and family context.

Read the full file on GitHub · 275 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 275 lines · 237 tokens per session scan A b6e37c7788c5

Subscribe to this mod's changes

genomics-precision-medicine is a skill published in the GitHub repository aks-builds/healthcareskills (1 stars, last pushed 2d ago), licensed MIT. It adds 237 tokens to every session and 4,164 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

pkpd-modeling

Pharmacokinetic and pharmacodynamic modelling and simulation - non-compartmental analysis, compartmental and population PK, PK/PD and exposure-response, TMDD, PBPK orientation, bioequivalence, allometric scaling and first-in-human dose, drug interaction prediction, and Bayesian therapeutic drug monitoring. Use when…

K-Dense-AI/scientific-agent-skills · 273 tokens

statistical-analysis

Guided statistical analysis for research data - test selection, assumption checking, effect sizes, power analysis, Bayesian alternatives, and APA-formatted reporting. Use whenever a user wants to compare groups, test a hypothesis, analyze experimental or survey data, check statistical assumptions, compute required…

K-Dense-AI/scientific-agent-skills · 111 tokens

biopython

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use…

K-Dense-AI/scientific-agent-skills · 76 tokens

hypothesis-generation

Formulate evidence-bounded scientific questions, candidate hypotheses, rival explanations, causal or associational claims, discriminating predictions, measurements, and preregistration-ready analysis plans. Use when turning observations or preliminary findings into transparent, testable research plans without treating…

K-Dense-AI/scientific-agent-skills · 58 tokens

neuropixels-analysis

Analyze Neuropixels extracellular recordings end-to-end with SpikeInterface. Covers loading SpikeGLX/Open Ephys/NWB data, preprocessing, drift/motion correction, Kilosort4 (and CPU) spike sorting, quality metrics, and unit curation (threshold-based, model-based UnitRefine, and AI-assisted visual review). Use when…

K-Dense-AI/scientific-agent-skills · 98 tokens

onekgpd

Query the 1000 Genomes Project dataset (3,202 whole-genome-sequenced individuals, GRCh38) at the level of individual participants. Use when a question is about individuals or variants in the 1000 Genomes Project cohort: which individuals carry variants matching specific criteria in a gene or region, which individuals…

K-Dense-AI/scientific-agent-skills · 143 tokens