Analyze raw DNA data from consumer genetics services (23andMe, AncestryDNA, etc.). Extract health markers, pharmacogenomics, traits, ancestry composition, ancient DNA comparisons, and generate comprehensive reports. Uses open-source bioinformatics tools locally — no data leaves your machine.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install personal-genomics或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install personal-genomics⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/personal-genomics/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
Comprehensive local DNA analysis with 1600+ markers across 30 categories. Privacy-first genetic analysis for AI agents.
python comprehensive_analysis.py /path/to/dna_file.txt
Activate this skill when user mentions:
~/dna-analysis/reports/
agent_summary.json - AI-optimized, priority-sortedfull_analysis.json - Complete datareport.txt - Human-readablegenetic_report.pdf - Professional PDF reportfrom markers.medication_interactions import check_medication_interactions
result = check_medication_interactions(
medications=["warfarin", "clopidogrel", "omeprazole"],
genotypes=user_genotypes
)
# Returns critical/serious/moderate interactions with alternatives
from markers.sleep_optimization import generate_sleep_profile
profile = generate_sleep_profile(genotypes)
# Returns ideal wake/sleep times, coffee cutoff, etc.
from markers.dietary_interactions import analyze_dietary_interactions
diet = analyze_dietary_interactions(genotypes)
# Returns food-specific guidance
from markers.athletic_profile import calculate_athletic_profile
profile = calculate_athletic_profile(genotypes)
# Returns power/endurance type, recovery profile, injury risk
from markers.uv_sensitivity import generate_uv_sensitivity_report
uv = generate_uv_sensitivity_report(genotypes)
# Returns skin type, SPF recommendation, melanoma risk
from markers.explanations import generate_plain_english_explanation
explanation = generate_plain_english_explanation(
rsid="rs3892097", gene="CYP2D6", genotype="GA",
trait="Drug metabolism", finding="Poor metabolizer carrier"
)
from markers.advanced_genetics import estimate_telomere_length
telomere = estimate_telomere_length(genotypes)
# Returns relative estimate with appropriate caveats
The agent_summary.json provides:
{
"critical_alerts": [],
"high_priority": [],
"medium_priority": [],
"pharmacogenomics_alerts": [],
"apoe_status": {},
"polygenic_risk_scores": {},
"haplogroups": {
"mtDNA": {"haplogroup": "H", "lineage": "maternal"},
"Y_DNA": {"haplogroup": "R1b", "lineage": "paternal"}
},
"ancestry": {
"composition": {},
"admixture": {}
},
"hereditary_cancer": {},
"autoimmune_risk": {},
"pain_sensitivity": {},
"lifestyle_recommendations": {
"diet": [],
"exercise": [],
"supplements": [],
"avoid": []
},
"drug_interaction_matrix": {},
"data_quality": {}
}
from comprehensive_analysis import main
main() # Uses command line args
from markers.haplogroups import analyze_haplogroups
result = analyze_haplogroups(genotypes)
print(result["mtDNA"]["haplogroup"]) # e.g., "H"
from markers.ancestry_composition import get_ancestry_summary
ancestry = get_ancestry_summary(genotypes)
...
安装 Personal Genomics 后,可以对 AI 说这些话来触发它
Help me get started with Personal Genomics
Explains what Personal Genomics does, walks through the setup, and runs a quick demo based on your current project
Use Personal Genomics to analyze raw DNA data from consumer genetics services (23andMe, Ance...
Invokes Personal Genomics with the right parameters and returns the result directly in the conversation
What can I do with Personal Genomics in my data & analytics workflow?
Lists the top use cases for Personal Genomics, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/personal-genomics/ 目录(个人级,所有项目可用),或 .claude/skills/personal-genomics/(项目级)。重启 AI 客户端后,用 /personal-genomics 主动调用,或让 AI 根据上下文自动发现并使用。
Personal Genomics 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Personal Genomics 可免费安装使用。请查阅仓库了解许可证信息。
Analyze raw DNA data from consumer genetics services (23andMe, AncestryDNA, etc.). Extract health markers, pharmacogenomics, traits, ancestry composition, ancient DNA comparisons, and generate comprehensive reports. Uses open-source bioinformatics tools locally — no data leaves your machine.
Personal Genomics 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using Personal Genomics
Identifies repetitive steps in your workflow and sets up Personal Genomics to handle them automatically